ETH Price: $3,178.23 (-7.85%)
Gas: 5 Gwei

Token

Born To Be Me (BTBM)
 

Overview

Max Total Supply

700 BTBM

Holders

311

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dylonelson.eth
Balance
1 BTBM
0x051ebce70be83b42404ac264121d6eeec02e8bb1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Welcome to MEE, prepare to own who you were Born To Be! MEE is a collection of 700 MEE's with the aim to change clothing brands and web3 merch forever! MEE are the official merchandise partners of Llamaverse, Illogics, Champs Only, Squishy Squad, Dobies & AneroVerse! Members ...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BTBM

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : BTBM.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

error SaleNotStarted();
error RoundSoldOut();
error PublicSaleStillLive();
error MaxMints();
error SoldOut();
error ValueTooLow();
error NotWL();
error NotVIP();
error AlreadyMinted();


/*
Contract created by
Twitter: @0xSimon_
*/
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";



contract BTBM is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    using ECDSA for bytes32;


    //@dev adjust these values for your collection
    uint public price = .055 ether; 
    
    uint16 public maxSupply = 4000;

    //testnet value
    uint16 reservedForTeam = 50;
    uint16 teamMints;
    uint8 maxPublicMints = 10;

    //@dev byte-pack bools and address to save gas
    bool public presaleStarted;
    bool public publicStarted;
    bool revealed;


    /*@dev Reference Address to Compare ECDSA Signature
    Fill this in with your own WL Address
    To learn more about signatures check out 
    https://docs.ethers.io/v5/api/signer/#:~:text=A%20Signer%20in%20ethers%20is,on%20the%20sub%2Dclass%20used.*/ 
    address private whitelistAddress = 0xB4383955C070a2C49FefC940d4aCADE471cBcE2b;

    
    /* @dev Used in TokenURI Function for exchanges.
        For more information about this standard check out 
        https://docs.opensea.io/docs/metadata-standards
    */
    string public baseURI;
    string public notRevealedUri;
    string public uriSuffix = ".json";


    // @dev these mappings track how many one has minted on public and WL respectively
    mapping(address=>uint8) public tokensMinted;
    mapping(address => uint8) public publicTokensMinted;

    

    constructor()
        ERC721A("Born To Be Me", "BTBM")

    {
        // @dev make sure to keep baseUri as empty string to avoid your metadata being sniped
        setBaseURI("");
        setNotRevealedURI("ipfs://QmbfcBFpFroR3ftceMEoyXwko128M6Nzk4NLfkfhjM6nFL/hidden.json");
        teamMint(0xeDc49086A2CE64A3054141F7569c48B802d94cEa ,50);
        transferOwnership(0x72F12eCC28bbe7C12745A1a0FE52fE48877CbD33);
    }



       //SIGNATURE VERIFICATION

    /*@dev helper function for WL sale
        returns true if reference address and signature match
        false otherwise
        Read more about ECDSA @openzeppelin https://docs.openzeppelin.com/contracts/2.x/utilities    
            */
    function verifyAddressSigner(
        address referenceAddress,
        bytes32 messageHash,
        bytes memory signature
    ) internal pure returns (bool) {
        return
            referenceAddress ==
            messageHash.toEthSignedMessageHash().recover(signature);
       
        
    }


    // @dev, helper hash function for WL Mint
    function hashMessage(uint8 max, address sender)
        private
        pure
        returns (bytes32)
    {
        return keccak256(abi.encodePacked(max, sender));
    }

    //END SIGNATURE VERIFICATION


    /* MINTING */
    function teamMint(address to ,uint8 amount) public onlyOwner{
        uint256 supply = totalSupply();
        require(teamMints + amount <= reservedForTeam);
        if(supply + amount > maxSupply) revert SoldOut();
        teamMints+=amount;
        _safeMint(to,amount);
    }

 
  


    //@dev The Max Someone Can Mint is Encoded In The Signature. Be careful

    function whitelistMint(uint8 amount, uint8 max, bytes memory signature)  external payable nonReentrant {
       uint256 supply = totalSupply();

       if(!verifyAddressSigner(whitelistAddress, hashMessage(max,msg.sender), signature)) revert NotWL();
       if(supply + amount > maxSupply) revert SoldOut();
       if(!presaleStarted) revert SaleNotStarted();
       if(msg.value < amount * price) revert ValueTooLow();
       if(tokensMinted[_msgSender()]>0) revert AlreadyMinted();
       if(tokensMinted[_msgSender()] + amount > max) revert MaxMints();
       
        tokensMinted[msg.sender]+=amount;
        _mint(msg.sender,amount);
        
    }

    function publicMint(uint8 amount) external payable nonReentrant {
        uint supply = totalSupply();
        if(!publicStarted) revert SaleNotStarted();
        if(supply + amount > maxSupply) revert SoldOut();
        if(msg.value < amount * price) revert ValueTooLow();
        if(publicTokensMinted[_msgSender()] + amount > maxPublicMints) revert MaxMints();
        
         publicTokensMinted[msg.sender]+=amount;
         _mint(msg.sender,amount);

    }
     /* END MINT */



    //END GETTERS

    
    //SETTERS

        //@dev Turns Reveal On
    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setWlAddress(address _newAddress) external onlyOwner {
        require(_newAddress != address(0), "CAN'T PUT 0 ADDRESS");
        whitelistAddress = _newAddress;
    }
   
    function setUriSuffix(string memory _newSuffix) external onlyOwner{
        uriSuffix = _newSuffix;
    }

   
   function setPresaleStatus(bool status) external onlyOwner {
    
       presaleStarted = status;
   }
   function setPublicStatus(bool status) external onlyOwner {
    
    publicStarted = status;
}

function setReservedForTeam(uint16 amount) external onlyOwner {
    reservedForTeam = amount;
}

   



    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }
    

  


    //END SETTERS

 


    // FACTORY

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721A)
        returns (string memory)
    {
        if (revealed == false) {
            return notRevealedUri;
        }

        string memory currentBaseURI = baseURI;
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(),uriSuffix))
                : "";
    }


    function withdraw() public payable onlyOwner {
        uint256 balance = address(this).balance;
        (bool r1, ) = payable(owner()).call{value: balance }("");
        require(r1);
  }

}

File 2 of 8 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.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 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`
    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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            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;
    }

    /**
     * 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 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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

        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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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 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 3 of 8 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 4 of 8 : 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 5 of 8 : 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 6 of 8 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.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();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

    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;
    }

    /**
     * @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);
}

File 7 of 8 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 8 of 8 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyMinted","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MaxMints","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotWL","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"SaleNotStarted","type":"error"},{"inputs":[],"name":"SoldOut","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":"ValueTooLow","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"presaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicTokensMinted","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPublicStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"setReservedForTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setWlAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokensMinted","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"},{"internalType":"uint8","name":"max","type":"uint8"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266c3663566a58000600a55610fa0600b60006101000a81548161ffff021916908361ffff1602179055506032600b60026101000a81548161ffff021916908361ffff160217905550600a600b60066101000a81548160ff021916908360ff16021790555073b4383955c070a2c49fefc940d4acade471cbce2b600b600a6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e90805190602001906200010a92919062000c60565b503480156200011857600080fd5b506040518060400160405280600d81526020017f426f726e20546f204265204d65000000000000000000000000000000000000008152506040518060400160405280600481526020017f4254424d0000000000000000000000000000000000000000000000000000000081525081600290805190602001906200019d92919062000c60565b508060039080519060200190620001b692919062000c60565b50620001c76200029360201b60201c565b6000819055505050620001ef620001e36200029860201b60201c565b620002a060201b60201c565b600160098190555062000217604051806020016040528060008152506200036660201b60201c565b6200024160405180608001604052806041815260200162005b59604191396200041160201b60201c565b6200026873edc49086a2ce64a3054141f7569c48b802d94cea6032620004bc60201b60201c565b6200028d7372f12ecc28bbe7c12745a1a0fe52fe48877cbd336200065c60201b60201c565b62001155565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003766200029860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200039c6200077260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ec9062000e80565b60405180910390fd5b80600c90805190602001906200040d92919062000c60565b5050565b620004216200029860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004476200077260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004979062000e80565b60405180910390fd5b80600d9080519060200190620004b892919062000c60565b5050565b620004cc6200029860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004f26200077260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200054b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005429062000e80565b60405180910390fd5b60006200055d6200079c60201b60201c565b9050600b60029054906101000a900461ffff1661ffff168260ff16600b60049054906101000a900461ffff1662000595919062000ecf565b61ffff161115620005a557600080fd5b600b60009054906101000a900461ffff1661ffff168260ff1682620005cb919062000f0e565b111562000604576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160ff16600b60048282829054906101000a900461ffff1662000628919062000ecf565b92506101000a81548161ffff021916908361ffff16021790555062000657838360ff16620007bb60201b60201c565b505050565b6200066c6200029860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006926200077260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006e29062000e80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156200075e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007559062000e5e565b60405180910390fd5b6200076f81620002a060201b60201c565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000620007ae6200029360201b60201c565b6001546000540303905090565b620007dd828260405180602001604052806000815250620007e160201b60201c565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156200084f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156200088b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620008a0600085838662000ac660201b60201c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16200090d6001851462000acc60201b60201c565b901b60a042901b620009258662000ad660201b60201c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1462000a36575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620009e2600087848060010195508762000ae060201b60201c565b62000a19576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106200096b57826000541462000a3057600080fd5b62000aa2565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821062000a37575b81600081905550505062000ac0600085838662000c5260201b60201c565b50505050565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000b0e62000c5860201b60201c565b8786866040518563ffffffff1660e01b815260040162000b32949392919062000e0a565b602060405180830381600087803b15801562000b4d57600080fd5b505af192505050801562000b8157506040513d601f19601f8201168201806040525081019062000b7e919062000d27565b60015b62000bff573d806000811462000bb4576040519150601f19603f3d011682016040523d82523d6000602084013e62000bb9565b606091505b5060008151141562000bf7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b82805462000c6e9062001019565b90600052602060002090601f01602090048101928262000c92576000855562000cde565b82601f1062000cad57805160ff191683800117855562000cde565b8280016001018555821562000cde579182015b8281111562000cdd57825182559160200191906001019062000cc0565b5b50905062000ced919062000cf1565b5090565b5b8082111562000d0c57600081600090555060010162000cf2565b5090565b60008151905062000d21816200113b565b92915050565b60006020828403121562000d405762000d3f620010ad565b5b600062000d508482850162000d10565b91505092915050565b62000d648162000f6b565b82525050565b600062000d778262000ea2565b62000d83818562000ead565b935062000d9581856020860162000fe3565b62000da081620010b2565b840191505092915050565b600062000dba60268362000ebe565b915062000dc782620010c3565b604082019050919050565b600062000de160208362000ebe565b915062000dee8262001112565b602082019050919050565b62000e048162000fd9565b82525050565b600060808201905062000e21600083018762000d59565b62000e30602083018662000d59565b62000e3f604083018562000df9565b818103606083015262000e53818462000d6a565b905095945050505050565b6000602082019050818103600083015262000e798162000dab565b9050919050565b6000602082019050818103600083015262000e9b8162000dd2565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000edc8262000fab565b915062000ee98362000fab565b92508261ffff0382111562000f035762000f026200104f565b5b828201905092915050565b600062000f1b8262000fd9565b915062000f288362000fd9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f605762000f5f6200104f565b5b828201905092915050565b600062000f788262000fb9565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200100357808201518184015260208101905062000fe6565b8381111562001013576000848401525b50505050565b600060028204905060018216806200103257607f821691505b602082108114156200104957620010486200107e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620011468162000f7f565b81146200115257600080fd5b50565b6149f480620011656000396000f3fe6080604052600436106102305760003560e01c80636c0360eb1161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107ea578063e985e9c514610815578063ee89e3d114610852578063f2c4ce1e1461087b578063f2fde38b146108a457610230565b8063a22cb4651461071b578063a475b5dd14610744578063b88d4fde1461075b578063c87b56dd14610784578063caf2bde4146107c157610230565b80638c6d8ef6116100f25780638c6d8ef6146106465780638da5cb5b1461067157806391b7f5ed1461069c57806395d89b41146106c5578063a035b1fe146106f057610230565b80636c0360eb1461058257806370a08231146105ad578063715018a6146105ea578063858e83b5146106015780638895283f1461061d57610230565b80631c5b64e2116101bc57806342842e0e1161018057806342842e0e1461048b57806354610481146104b45780635503a0e8146104f157806355f804b31461051c5780636352211e1461054557610230565b80631c5b64e2146103ea5780631cc011a7146104135780631faac6061461042f57806323b872dd146104585780633ccfd60b1461048157610230565b8063081812fc11610203578063081812fc14610305578063081c8c4414610342578063095ea7b31461036d57806316ba10e01461039657806318160ddd146103bf57610230565b80630176037b1461023557806301ffc9a71461027257806304549d6f146102af57806306fdde03146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906137d5565b6108cd565b6040516102699190614174565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613a05565b6108ed565b6040516102a69190613fbc565b60405180910390f35b3480156102bb57600080fd5b506102c461097f565b6040516102d19190613fbc565b60405180910390f35b3480156102e657600080fd5b506102ef610992565b6040516102fc919061401c565b60405180910390f35b34801561031157600080fd5b5061032c60048036038101906103279190613ad5565b610a24565b6040516103399190613f55565b60405180910390f35b34801561034e57600080fd5b50610357610aa0565b604051610364919061401c565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f9190613958565b610b2e565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613a5f565b610cd5565b005b3480156103cb57600080fd5b506103d4610d6b565b6040516103e19190614159565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c91906139d8565b610d82565b005b61042d60048036038101906104289190613b2f565b610e1b565b005b34801561043b57600080fd5b50610456600480360381019061045191906137d5565b61118a565b005b34801561046457600080fd5b5061047f600480360381019061047a9190613842565b6112ba565b005b6104896112ca565b005b34801561049757600080fd5b506104b260048036038101906104ad9190613842565b6113cc565b005b3480156104c057600080fd5b506104db60048036038101906104d691906137d5565b6113ec565b6040516104e89190614174565b60405180910390f35b3480156104fd57600080fd5b5061050661140c565b604051610513919061401c565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190613a5f565b61149a565b005b34801561055157600080fd5b5061056c60048036038101906105679190613ad5565b611530565b6040516105799190613f55565b60405180910390f35b34801561058e57600080fd5b50610597611542565b6040516105a4919061401c565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf91906137d5565b6115d0565b6040516105e19190614159565b60405180910390f35b3480156105f657600080fd5b506105ff611689565b005b61061b60048036038101906106169190613b02565b611711565b005b34801561062957600080fd5b50610644600480360381019061063f91906139d8565b611990565b005b34801561065257600080fd5b5061065b611a29565b6040516106689190613fbc565b60405180910390f35b34801561067d57600080fd5b50610686611a3c565b6040516106939190613f55565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190613ad5565b611a66565b005b3480156106d157600080fd5b506106da611aec565b6040516106e7919061401c565b60405180910390f35b3480156106fc57600080fd5b50610705611b7e565b6040516107129190614159565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d9190613918565b611b84565b005b34801561075057600080fd5b50610759611cfc565b005b34801561076757600080fd5b50610782600480360381019061077d9190613895565b611d95565b005b34801561079057600080fd5b506107ab60048036038101906107a69190613ad5565b611e08565b6040516107b8919061401c565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e39190613aa8565b611f9c565b005b3480156107f657600080fd5b506107ff612038565b60405161080c919061413e565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190613802565b61204c565b6040516108499190613fbc565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190613998565b6120e0565b005b34801561088757600080fd5b506108a2600480360381019061089d9190613a5f565b612255565b005b3480156108b057600080fd5b506108cb60048036038101906108c691906137d5565b6122eb565b005b60106020528060005260406000206000915054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109785750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b60079054906101000a900460ff1681565b6060600280546109a1906144d8565b80601f01602080910402602001604051908101604052809291908181526020018280546109cd906144d8565b8015610a1a5780601f106109ef57610100808354040283529160200191610a1a565b820191906000526020600020905b8154815290600101906020018083116109fd57829003601f168201915b5050505050905090565b6000610a2f826123e3565b610a65576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610aad906144d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad9906144d8565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b505050505081565b6000610b3982612442565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc0612510565b73ffffffffffffffffffffffffffffffffffffffff1614610c2357610bec81610be7612510565b61204c565b610c22576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610cdd612518565b73ffffffffffffffffffffffffffffffffffffffff16610cfb611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d48906140fe565b60405180910390fd5b80600e9080519060200190610d679291906135bf565b5050565b6000610d75612520565b6001546000540303905090565b610d8a612518565b73ffffffffffffffffffffffffffffffffffffffff16610da8611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df5906140fe565b60405180910390fd5b80600b60086101000a81548160ff02191690831515021790555050565b60026009541415610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e589061411e565b60405180910390fd5b60026009819055506000610e73610d6b565b9050610eab600b600a9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610ea58533612525565b84612558565b610ee1576040517f6a235af200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b60009054906101000a900461ffff1661ffff168460ff1682610f0591906142b1565b1115610f3d576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b60079054906101000a900460ff16610f83576040517f2d0a346e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548460ff16610f94919061436f565b341015610fcd576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600f6000610fdb612518565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16111561105e576040517fddefae2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8260ff1684600f600061106f612518565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166110c19190614307565b60ff1611156110fc576040517fc3b708de00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166111579190614307565b92506101000a81548160ff021916908360ff16021790555061117c338560ff166125ac565b506001600981905550505050565b611192612518565b73ffffffffffffffffffffffffffffffffffffffff166111b0611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd906140fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d906140be565b60405180910390fd5b80600b600a6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112c5838383612780565b505050565b6112d2612518565b73ffffffffffffffffffffffffffffffffffffffff166112f0611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d906140fe565b60405180910390fd5b60004790506000611355611a3c565b73ffffffffffffffffffffffffffffffffffffffff168260405161137890613f14565b60006040518083038185875af1925050503d80600081146113b5576040519150601f19603f3d011682016040523d82523d6000602084013e6113ba565b606091505b50509050806113c857600080fd5b5050565b6113e783838360405180602001604052806000815250611d95565b505050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600e8054611419906144d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611445906144d8565b80156114925780601f1061146757610100808354040283529160200191611492565b820191906000526020600020905b81548152906001019060200180831161147557829003601f168201915b505050505081565b6114a2612518565b73ffffffffffffffffffffffffffffffffffffffff166114c0611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d906140fe565b60405180910390fd5b80600c908051906020019061152c9291906135bf565b5050565b600061153b82612442565b9050919050565b600c805461154f906144d8565b80601f016020809104026020016040519081016040528092919081815260200182805461157b906144d8565b80156115c85780601f1061159d576101008083540402835291602001916115c8565b820191906000526020600020905b8154815290600101906020018083116115ab57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611638576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611691612518565b73ffffffffffffffffffffffffffffffffffffffff166116af611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc906140fe565b60405180910390fd5b61170f6000612b2a565b565b60026009541415611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e9061411e565b60405180910390fd5b60026009819055506000611769610d6b565b9050600b60089054906101000a900460ff166117b1576040517f2d0a346e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b60009054906101000a900461ffff1661ffff168260ff16826117d591906142b1565b111561180d576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548260ff1661181e919061436f565b341015611857576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b60069054906101000a900460ff1660ff168260106000611877612518565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118c99190614307565b60ff161115611904576040517fc3b708de00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661195f9190614307565b92506101000a81548160ff021916908360ff160217905550611984338360ff166125ac565b50600160098190555050565b611998612518565b73ffffffffffffffffffffffffffffffffffffffff166119b6611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a03906140fe565b60405180910390fd5b80600b60076101000a81548160ff02191690831515021790555050565b600b60089054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a6e612518565b73ffffffffffffffffffffffffffffffffffffffff16611a8c611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad9906140fe565b60405180910390fd5b80600a8190555050565b606060038054611afb906144d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611b27906144d8565b8015611b745780601f10611b4957610100808354040283529160200191611b74565b820191906000526020600020905b815481529060010190602001808311611b5757829003601f168201915b5050505050905090565b600a5481565b611b8c612510565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611bfe612510565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cab612510565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cf09190613fbc565b60405180910390a35050565b611d04612518565b73ffffffffffffffffffffffffffffffffffffffff16611d22611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f906140fe565b60405180910390fd5b6001600b60096101000a81548160ff021916908315150217905550565b611da0848484612780565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0257611dcb84848484612bf0565b611e01576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060001515600b60099054906101000a900460ff1615151415611eb857600d8054611e33906144d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5f906144d8565b8015611eac5780601f10611e8157610100808354040283529160200191611eac565b820191906000526020600020905b815481529060010190602001808311611e8f57829003601f168201915b50505050509050611f97565b6000600c8054611ec7906144d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611ef3906144d8565b8015611f405780601f10611f1557610100808354040283529160200191611f40565b820191906000526020600020905b815481529060010190602001808311611f2357829003601f168201915b505050505090506000815111611f655760405180602001604052806000815250611f93565b80611f6f84612d50565b600e604051602001611f8393929190613ebd565b6040516020818303038152906040525b9150505b919050565b611fa4612518565b73ffffffffffffffffffffffffffffffffffffffff16611fc2611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f906140fe565b60405180910390fd5b80600b60026101000a81548161ffff021916908361ffff16021790555050565b600b60009054906101000a900461ffff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120e8612518565b73ffffffffffffffffffffffffffffffffffffffff16612106611a3c565b73ffffffffffffffffffffffffffffffffffffffff161461215c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612153906140fe565b60405180910390fd5b6000612166610d6b565b9050600b60029054906101000a900461ffff1661ffff168260ff16600b60049054906101000a900461ffff1661219c9190614279565b61ffff1611156121ab57600080fd5b600b60009054906101000a900461ffff1661ffff168260ff16826121cf91906142b1565b1115612207576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160ff16600b60048282829054906101000a900461ffff166122299190614279565b92506101000a81548161ffff021916908361ffff160217905550612250838360ff16612eb1565b505050565b61225d612518565b73ffffffffffffffffffffffffffffffffffffffff1661227b611a3c565b73ffffffffffffffffffffffffffffffffffffffff16146122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c8906140fe565b60405180910390fd5b80600d90805190602001906122e79291906135bf565b5050565b6122f3612518565b73ffffffffffffffffffffffffffffffffffffffff16612311611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e906140fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ce9061407e565b60405180910390fd5b6123e081612b2a565b50565b6000816123ee612520565b111580156123fd575060005482105b801561243b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080612451612520565b116124d9576000548110156124d85760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156124d6575b60008114156124cc5760046000836001900393508381526020019081526020016000205490506124a1565b809250505061250b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b6000828260405160200161253a929190613f29565b60405160208183030381529060405280519060200120905092915050565b60006125758261256785612ecf565b612eff90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612619576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612654576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126616000848385612f26565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16126c660018414612f2c565b901b60a042901b6126d685612f36565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126fc5781600081905550505061277b6000848385612f40565b505050565b600061278b82612442565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146127f2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612813612510565b73ffffffffffffffffffffffffffffffffffffffff16148061284257506128418561283c612510565b61204c565b5b806128875750612850612510565b73ffffffffffffffffffffffffffffffffffffffff1661286f84610a24565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806128c0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612927576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129348585856001612f26565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612a3186612f36565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612abb576000600184019050600060046000838152602001908152602001600020541415612ab9576000548114612ab8578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b238585856001612f40565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c16612510565b8786866040518563ffffffff1660e01b8152600401612c389493929190613f70565b602060405180830381600087803b158015612c5257600080fd5b505af1925050508015612c8357506040513d601f19601f82011682018060405250810190612c809190613a32565b60015b612cfd573d8060008114612cb3576040519150601f19603f3d011682016040523d82523d6000602084013e612cb8565b606091505b50600081511415612cf5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612d98576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612eac565b600082905060005b60008214612dca578080612db39061453b565b915050600a82612dc3919061433e565b9150612da0565b60008167ffffffffffffffff811115612de657612de56146e0565b5b6040519080825280601f01601f191660200182016040528015612e185781602001600182028036833780820191505090505b5090505b60008514612ea557600182612e3191906143c9565b9150600a85612e4091906145c4565b6030612e4c91906142b1565b60f81b818381518110612e6257612e616146b1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e9e919061433e565b9450612e1c565b8093505050505b919050565b612ecb828260405180602001604052806000815250612f46565b5050565b600081604051602001612ee29190613eee565b604051602081830303815290604052805190602001209050919050565b6000806000612f0e85856131fb565b91509150612f1b8161327e565b819250505092915050565b50505050565b6000819050919050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fb3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612fee576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ffb6000858386612f26565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161306060018514612f2c565b901b60a042901b61307086612f36565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14613174575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131246000878480600101955087612bf0565b61315a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106130b557826000541461316f57600080fd5b6131df565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613175575b8160008190555050506131f56000858386612f40565b50505050565b60008060418351141561323d5760008060006020860151925060408601519150606086015160001a905061323187828585613453565b94509450505050613277565b60408351141561326e576000806020850151915060408501519050613263868383613560565b935093505050613277565b60006002915091505b9250929050565b6000600481111561329257613291614653565b5b8160048111156132a5576132a4614653565b5b14156132b057613450565b600160048111156132c4576132c3614653565b5b8160048111156132d7576132d6614653565b5b1415613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330f9061403e565b60405180910390fd5b6002600481111561332c5761332b614653565b5b81600481111561333f5761333e614653565b5b1415613380576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133779061405e565b60405180910390fd5b6003600481111561339457613393614653565b5b8160048111156133a7576133a6614653565b5b14156133e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133df9061409e565b60405180910390fd5b6004808111156133fb576133fa614653565b5b81600481111561340e5761340d614653565b5b141561344f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613446906140de565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561348e576000600391509150613557565b601b8560ff16141580156134a65750601c8560ff1614155b156134b8576000600491509150613557565b6000600187878787604051600081526020016040526040516134dd9493929190613fd7565b6020604051602081039080840390855afa1580156134ff573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561354e57600060019250925050613557565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6135a391906142b1565b90506135b187828885613453565b935093505050935093915050565b8280546135cb906144d8565b90600052602060002090601f0160209004810192826135ed5760008555613634565b82601f1061360657805160ff1916838001178555613634565b82800160010185558215613634579182015b82811115613633578251825591602001919060010190613618565b5b5090506136419190613645565b5090565b5b8082111561365e576000816000905550600101613646565b5090565b6000613675613670846141b4565b61418f565b90508281526020810184848401111561369157613690614714565b5b61369c848285614496565b509392505050565b60006136b76136b2846141e5565b61418f565b9050828152602081018484840111156136d3576136d2614714565b5b6136de848285614496565b509392505050565b6000813590506136f581614934565b92915050565b60008135905061370a8161494b565b92915050565b60008135905061371f81614962565b92915050565b60008151905061373481614962565b92915050565b600082601f83011261374f5761374e61470f565b5b813561375f848260208601613662565b91505092915050565b600082601f83011261377d5761377c61470f565b5b813561378d8482602086016136a4565b91505092915050565b6000813590506137a581614979565b92915050565b6000813590506137ba81614990565b92915050565b6000813590506137cf816149a7565b92915050565b6000602082840312156137eb576137ea61471e565b5b60006137f9848285016136e6565b91505092915050565b600080604083850312156138195761381861471e565b5b6000613827858286016136e6565b9250506020613838858286016136e6565b9150509250929050565b60008060006060848603121561385b5761385a61471e565b5b6000613869868287016136e6565b935050602061387a868287016136e6565b925050604061388b868287016137ab565b9150509250925092565b600080600080608085870312156138af576138ae61471e565b5b60006138bd878288016136e6565b94505060206138ce878288016136e6565b93505060406138df878288016137ab565b925050606085013567ffffffffffffffff811115613900576138ff614719565b5b61390c8782880161373a565b91505092959194509250565b6000806040838503121561392f5761392e61471e565b5b600061393d858286016136e6565b925050602061394e858286016136fb565b9150509250929050565b6000806040838503121561396f5761396e61471e565b5b600061397d858286016136e6565b925050602061398e858286016137ab565b9150509250929050565b600080604083850312156139af576139ae61471e565b5b60006139bd858286016136e6565b92505060206139ce858286016137c0565b9150509250929050565b6000602082840312156139ee576139ed61471e565b5b60006139fc848285016136fb565b91505092915050565b600060208284031215613a1b57613a1a61471e565b5b6000613a2984828501613710565b91505092915050565b600060208284031215613a4857613a4761471e565b5b6000613a5684828501613725565b91505092915050565b600060208284031215613a7557613a7461471e565b5b600082013567ffffffffffffffff811115613a9357613a92614719565b5b613a9f84828501613768565b91505092915050565b600060208284031215613abe57613abd61471e565b5b6000613acc84828501613796565b91505092915050565b600060208284031215613aeb57613aea61471e565b5b6000613af9848285016137ab565b91505092915050565b600060208284031215613b1857613b1761471e565b5b6000613b26848285016137c0565b91505092915050565b600080600060608486031215613b4857613b4761471e565b5b6000613b56868287016137c0565b9350506020613b67868287016137c0565b925050604084013567ffffffffffffffff811115613b8857613b87614719565b5b613b948682870161373a565b9150509250925092565b613ba7816143fd565b82525050565b613bbe613bb9826143fd565b614584565b82525050565b613bcd8161440f565b82525050565b613bdc8161441b565b82525050565b613bf3613bee8261441b565b614596565b82525050565b6000613c048261422b565b613c0e8185614241565b9350613c1e8185602086016144a5565b613c2781614723565b840191505092915050565b6000613c3d82614236565b613c47818561425d565b9350613c578185602086016144a5565b613c6081614723565b840191505092915050565b6000613c7682614236565b613c80818561426e565b9350613c908185602086016144a5565b80840191505092915050565b60008154613ca9816144d8565b613cb3818661426e565b94506001821660008114613cce5760018114613cdf57613d12565b60ff19831686528186019350613d12565b613ce885614216565b60005b83811015613d0a57815481890152600182019150602081019050613ceb565b838801955050505b50505092915050565b6000613d2860188361425d565b9150613d338261474e565b602082019050919050565b6000613d4b601f8361425d565b9150613d5682614777565b602082019050919050565b6000613d6e601c8361426e565b9150613d79826147a0565b601c82019050919050565b6000613d9160268361425d565b9150613d9c826147c9565b604082019050919050565b6000613db460228361425d565b9150613dbf82614818565b604082019050919050565b6000613dd760138361425d565b9150613de282614867565b602082019050919050565b6000613dfa60228361425d565b9150613e0582614890565b604082019050919050565b6000613e1d60208361425d565b9150613e28826148df565b602082019050919050565b6000613e40600083614252565b9150613e4b82614908565b600082019050919050565b6000613e63601f8361425d565b9150613e6e8261490b565b602082019050919050565b613e8281614451565b82525050565b613e918161447f565b82525050565b613ea081614489565b82525050565b613eb7613eb282614489565b6145b2565b82525050565b6000613ec98286613c6b565b9150613ed58285613c6b565b9150613ee18284613c9c565b9150819050949350505050565b6000613ef982613d61565b9150613f058284613be2565b60208201915081905092915050565b6000613f1f82613e33565b9150819050919050565b6000613f358285613ea6565b600182019150613f458284613bad565b6014820191508190509392505050565b6000602082019050613f6a6000830184613b9e565b92915050565b6000608082019050613f856000830187613b9e565b613f926020830186613b9e565b613f9f6040830185613e88565b8181036060830152613fb18184613bf9565b905095945050505050565b6000602082019050613fd16000830184613bc4565b92915050565b6000608082019050613fec6000830187613bd3565b613ff96020830186613e97565b6140066040830185613bd3565b6140136060830184613bd3565b95945050505050565b600060208201905081810360008301526140368184613c32565b905092915050565b6000602082019050818103600083015261405781613d1b565b9050919050565b6000602082019050818103600083015261407781613d3e565b9050919050565b6000602082019050818103600083015261409781613d84565b9050919050565b600060208201905081810360008301526140b781613da7565b9050919050565b600060208201905081810360008301526140d781613dca565b9050919050565b600060208201905081810360008301526140f781613ded565b9050919050565b6000602082019050818103600083015261411781613e10565b9050919050565b6000602082019050818103600083015261413781613e56565b9050919050565b60006020820190506141536000830184613e79565b92915050565b600060208201905061416e6000830184613e88565b92915050565b60006020820190506141896000830184613e97565b92915050565b60006141996141aa565b90506141a5828261450a565b919050565b6000604051905090565b600067ffffffffffffffff8211156141cf576141ce6146e0565b5b6141d882614723565b9050602081019050919050565b600067ffffffffffffffff821115614200576141ff6146e0565b5b61420982614723565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061428482614451565b915061428f83614451565b92508261ffff038211156142a6576142a56145f5565b5b828201905092915050565b60006142bc8261447f565b91506142c78361447f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142fc576142fb6145f5565b5b828201905092915050565b600061431282614489565b915061431d83614489565b92508260ff03821115614333576143326145f5565b5b828201905092915050565b60006143498261447f565b91506143548361447f565b92508261436457614363614624565b5b828204905092915050565b600061437a8261447f565b91506143858361447f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143be576143bd6145f5565b5b828202905092915050565b60006143d48261447f565b91506143df8361447f565b9250828210156143f2576143f16145f5565b5b828203905092915050565b60006144088261445f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156144c35780820151818401526020810190506144a8565b838111156144d2576000848401525b50505050565b600060028204905060018216806144f057607f821691505b6020821081141561450457614503614682565b5b50919050565b61451382614723565b810181811067ffffffffffffffff82111715614532576145316146e0565b5b80604052505050565b60006145468261447f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614579576145786145f5565b5b600182019050919050565b600061458f826145a0565b9050919050565b6000819050919050565b60006145ab82614741565b9050919050565b60006145bd82614734565b9050919050565b60006145cf8261447f565b91506145da8361447f565b9250826145ea576145e9614624565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f81b9050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f43414e2754205055542030204144445245535300000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61493d816143fd565b811461494857600080fd5b50565b6149548161440f565b811461495f57600080fd5b50565b61496b81614425565b811461497657600080fd5b50565b61498281614451565b811461498d57600080fd5b50565b6149998161447f565b81146149a457600080fd5b50565b6149b081614489565b81146149bb57600080fd5b5056fea2646970667358221220a231567a41eb43632d9308037af0ef537e5d52f1db4a63439c83b8fc319ff5d964736f6c63430008070033697066733a2f2f516d62666342467046726f5233667463654d456f7958776b6f3132384d364e7a6b344e4c666b66686a4d366e464c2f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636c0360eb1161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107ea578063e985e9c514610815578063ee89e3d114610852578063f2c4ce1e1461087b578063f2fde38b146108a457610230565b8063a22cb4651461071b578063a475b5dd14610744578063b88d4fde1461075b578063c87b56dd14610784578063caf2bde4146107c157610230565b80638c6d8ef6116100f25780638c6d8ef6146106465780638da5cb5b1461067157806391b7f5ed1461069c57806395d89b41146106c5578063a035b1fe146106f057610230565b80636c0360eb1461058257806370a08231146105ad578063715018a6146105ea578063858e83b5146106015780638895283f1461061d57610230565b80631c5b64e2116101bc57806342842e0e1161018057806342842e0e1461048b57806354610481146104b45780635503a0e8146104f157806355f804b31461051c5780636352211e1461054557610230565b80631c5b64e2146103ea5780631cc011a7146104135780631faac6061461042f57806323b872dd146104585780633ccfd60b1461048157610230565b8063081812fc11610203578063081812fc14610305578063081c8c4414610342578063095ea7b31461036d57806316ba10e01461039657806318160ddd146103bf57610230565b80630176037b1461023557806301ffc9a71461027257806304549d6f146102af57806306fdde03146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906137d5565b6108cd565b6040516102699190614174565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613a05565b6108ed565b6040516102a69190613fbc565b60405180910390f35b3480156102bb57600080fd5b506102c461097f565b6040516102d19190613fbc565b60405180910390f35b3480156102e657600080fd5b506102ef610992565b6040516102fc919061401c565b60405180910390f35b34801561031157600080fd5b5061032c60048036038101906103279190613ad5565b610a24565b6040516103399190613f55565b60405180910390f35b34801561034e57600080fd5b50610357610aa0565b604051610364919061401c565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f9190613958565b610b2e565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613a5f565b610cd5565b005b3480156103cb57600080fd5b506103d4610d6b565b6040516103e19190614159565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c91906139d8565b610d82565b005b61042d60048036038101906104289190613b2f565b610e1b565b005b34801561043b57600080fd5b50610456600480360381019061045191906137d5565b61118a565b005b34801561046457600080fd5b5061047f600480360381019061047a9190613842565b6112ba565b005b6104896112ca565b005b34801561049757600080fd5b506104b260048036038101906104ad9190613842565b6113cc565b005b3480156104c057600080fd5b506104db60048036038101906104d691906137d5565b6113ec565b6040516104e89190614174565b60405180910390f35b3480156104fd57600080fd5b5061050661140c565b604051610513919061401c565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190613a5f565b61149a565b005b34801561055157600080fd5b5061056c60048036038101906105679190613ad5565b611530565b6040516105799190613f55565b60405180910390f35b34801561058e57600080fd5b50610597611542565b6040516105a4919061401c565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf91906137d5565b6115d0565b6040516105e19190614159565b60405180910390f35b3480156105f657600080fd5b506105ff611689565b005b61061b60048036038101906106169190613b02565b611711565b005b34801561062957600080fd5b50610644600480360381019061063f91906139d8565b611990565b005b34801561065257600080fd5b5061065b611a29565b6040516106689190613fbc565b60405180910390f35b34801561067d57600080fd5b50610686611a3c565b6040516106939190613f55565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190613ad5565b611a66565b005b3480156106d157600080fd5b506106da611aec565b6040516106e7919061401c565b60405180910390f35b3480156106fc57600080fd5b50610705611b7e565b6040516107129190614159565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d9190613918565b611b84565b005b34801561075057600080fd5b50610759611cfc565b005b34801561076757600080fd5b50610782600480360381019061077d9190613895565b611d95565b005b34801561079057600080fd5b506107ab60048036038101906107a69190613ad5565b611e08565b6040516107b8919061401c565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e39190613aa8565b611f9c565b005b3480156107f657600080fd5b506107ff612038565b60405161080c919061413e565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190613802565b61204c565b6040516108499190613fbc565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190613998565b6120e0565b005b34801561088757600080fd5b506108a2600480360381019061089d9190613a5f565b612255565b005b3480156108b057600080fd5b506108cb60048036038101906108c691906137d5565b6122eb565b005b60106020528060005260406000206000915054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109785750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b60079054906101000a900460ff1681565b6060600280546109a1906144d8565b80601f01602080910402602001604051908101604052809291908181526020018280546109cd906144d8565b8015610a1a5780601f106109ef57610100808354040283529160200191610a1a565b820191906000526020600020905b8154815290600101906020018083116109fd57829003601f168201915b5050505050905090565b6000610a2f826123e3565b610a65576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610aad906144d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad9906144d8565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b505050505081565b6000610b3982612442565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc0612510565b73ffffffffffffffffffffffffffffffffffffffff1614610c2357610bec81610be7612510565b61204c565b610c22576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610cdd612518565b73ffffffffffffffffffffffffffffffffffffffff16610cfb611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d48906140fe565b60405180910390fd5b80600e9080519060200190610d679291906135bf565b5050565b6000610d75612520565b6001546000540303905090565b610d8a612518565b73ffffffffffffffffffffffffffffffffffffffff16610da8611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df5906140fe565b60405180910390fd5b80600b60086101000a81548160ff02191690831515021790555050565b60026009541415610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e589061411e565b60405180910390fd5b60026009819055506000610e73610d6b565b9050610eab600b600a9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610ea58533612525565b84612558565b610ee1576040517f6a235af200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b60009054906101000a900461ffff1661ffff168460ff1682610f0591906142b1565b1115610f3d576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b60079054906101000a900460ff16610f83576040517f2d0a346e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548460ff16610f94919061436f565b341015610fcd576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600f6000610fdb612518565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16111561105e576040517fddefae2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8260ff1684600f600061106f612518565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166110c19190614307565b60ff1611156110fc576040517fc3b708de00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166111579190614307565b92506101000a81548160ff021916908360ff16021790555061117c338560ff166125ac565b506001600981905550505050565b611192612518565b73ffffffffffffffffffffffffffffffffffffffff166111b0611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd906140fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d906140be565b60405180910390fd5b80600b600a6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112c5838383612780565b505050565b6112d2612518565b73ffffffffffffffffffffffffffffffffffffffff166112f0611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d906140fe565b60405180910390fd5b60004790506000611355611a3c565b73ffffffffffffffffffffffffffffffffffffffff168260405161137890613f14565b60006040518083038185875af1925050503d80600081146113b5576040519150601f19603f3d011682016040523d82523d6000602084013e6113ba565b606091505b50509050806113c857600080fd5b5050565b6113e783838360405180602001604052806000815250611d95565b505050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600e8054611419906144d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611445906144d8565b80156114925780601f1061146757610100808354040283529160200191611492565b820191906000526020600020905b81548152906001019060200180831161147557829003601f168201915b505050505081565b6114a2612518565b73ffffffffffffffffffffffffffffffffffffffff166114c0611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d906140fe565b60405180910390fd5b80600c908051906020019061152c9291906135bf565b5050565b600061153b82612442565b9050919050565b600c805461154f906144d8565b80601f016020809104026020016040519081016040528092919081815260200182805461157b906144d8565b80156115c85780601f1061159d576101008083540402835291602001916115c8565b820191906000526020600020905b8154815290600101906020018083116115ab57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611638576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611691612518565b73ffffffffffffffffffffffffffffffffffffffff166116af611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc906140fe565b60405180910390fd5b61170f6000612b2a565b565b60026009541415611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e9061411e565b60405180910390fd5b60026009819055506000611769610d6b565b9050600b60089054906101000a900460ff166117b1576040517f2d0a346e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b60009054906101000a900461ffff1661ffff168260ff16826117d591906142b1565b111561180d576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548260ff1661181e919061436f565b341015611857576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b60069054906101000a900460ff1660ff168260106000611877612518565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118c99190614307565b60ff161115611904576040517fc3b708de00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661195f9190614307565b92506101000a81548160ff021916908360ff160217905550611984338360ff166125ac565b50600160098190555050565b611998612518565b73ffffffffffffffffffffffffffffffffffffffff166119b6611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a03906140fe565b60405180910390fd5b80600b60076101000a81548160ff02191690831515021790555050565b600b60089054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a6e612518565b73ffffffffffffffffffffffffffffffffffffffff16611a8c611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad9906140fe565b60405180910390fd5b80600a8190555050565b606060038054611afb906144d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611b27906144d8565b8015611b745780601f10611b4957610100808354040283529160200191611b74565b820191906000526020600020905b815481529060010190602001808311611b5757829003601f168201915b5050505050905090565b600a5481565b611b8c612510565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611bfe612510565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cab612510565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cf09190613fbc565b60405180910390a35050565b611d04612518565b73ffffffffffffffffffffffffffffffffffffffff16611d22611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f906140fe565b60405180910390fd5b6001600b60096101000a81548160ff021916908315150217905550565b611da0848484612780565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0257611dcb84848484612bf0565b611e01576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060001515600b60099054906101000a900460ff1615151415611eb857600d8054611e33906144d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5f906144d8565b8015611eac5780601f10611e8157610100808354040283529160200191611eac565b820191906000526020600020905b815481529060010190602001808311611e8f57829003601f168201915b50505050509050611f97565b6000600c8054611ec7906144d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611ef3906144d8565b8015611f405780601f10611f1557610100808354040283529160200191611f40565b820191906000526020600020905b815481529060010190602001808311611f2357829003601f168201915b505050505090506000815111611f655760405180602001604052806000815250611f93565b80611f6f84612d50565b600e604051602001611f8393929190613ebd565b6040516020818303038152906040525b9150505b919050565b611fa4612518565b73ffffffffffffffffffffffffffffffffffffffff16611fc2611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f906140fe565b60405180910390fd5b80600b60026101000a81548161ffff021916908361ffff16021790555050565b600b60009054906101000a900461ffff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120e8612518565b73ffffffffffffffffffffffffffffffffffffffff16612106611a3c565b73ffffffffffffffffffffffffffffffffffffffff161461215c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612153906140fe565b60405180910390fd5b6000612166610d6b565b9050600b60029054906101000a900461ffff1661ffff168260ff16600b60049054906101000a900461ffff1661219c9190614279565b61ffff1611156121ab57600080fd5b600b60009054906101000a900461ffff1661ffff168260ff16826121cf91906142b1565b1115612207576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160ff16600b60048282829054906101000a900461ffff166122299190614279565b92506101000a81548161ffff021916908361ffff160217905550612250838360ff16612eb1565b505050565b61225d612518565b73ffffffffffffffffffffffffffffffffffffffff1661227b611a3c565b73ffffffffffffffffffffffffffffffffffffffff16146122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c8906140fe565b60405180910390fd5b80600d90805190602001906122e79291906135bf565b5050565b6122f3612518565b73ffffffffffffffffffffffffffffffffffffffff16612311611a3c565b73ffffffffffffffffffffffffffffffffffffffff1614612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e906140fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ce9061407e565b60405180910390fd5b6123e081612b2a565b50565b6000816123ee612520565b111580156123fd575060005482105b801561243b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080612451612520565b116124d9576000548110156124d85760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156124d6575b60008114156124cc5760046000836001900393508381526020019081526020016000205490506124a1565b809250505061250b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b6000828260405160200161253a929190613f29565b60405160208183030381529060405280519060200120905092915050565b60006125758261256785612ecf565b612eff90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612619576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612654576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126616000848385612f26565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16126c660018414612f2c565b901b60a042901b6126d685612f36565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126fc5781600081905550505061277b6000848385612f40565b505050565b600061278b82612442565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146127f2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612813612510565b73ffffffffffffffffffffffffffffffffffffffff16148061284257506128418561283c612510565b61204c565b5b806128875750612850612510565b73ffffffffffffffffffffffffffffffffffffffff1661286f84610a24565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806128c0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612927576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129348585856001612f26565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612a3186612f36565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612abb576000600184019050600060046000838152602001908152602001600020541415612ab9576000548114612ab8578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b238585856001612f40565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c16612510565b8786866040518563ffffffff1660e01b8152600401612c389493929190613f70565b602060405180830381600087803b158015612c5257600080fd5b505af1925050508015612c8357506040513d601f19601f82011682018060405250810190612c809190613a32565b60015b612cfd573d8060008114612cb3576040519150601f19603f3d011682016040523d82523d6000602084013e612cb8565b606091505b50600081511415612cf5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612d98576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612eac565b600082905060005b60008214612dca578080612db39061453b565b915050600a82612dc3919061433e565b9150612da0565b60008167ffffffffffffffff811115612de657612de56146e0565b5b6040519080825280601f01601f191660200182016040528015612e185781602001600182028036833780820191505090505b5090505b60008514612ea557600182612e3191906143c9565b9150600a85612e4091906145c4565b6030612e4c91906142b1565b60f81b818381518110612e6257612e616146b1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e9e919061433e565b9450612e1c565b8093505050505b919050565b612ecb828260405180602001604052806000815250612f46565b5050565b600081604051602001612ee29190613eee565b604051602081830303815290604052805190602001209050919050565b6000806000612f0e85856131fb565b91509150612f1b8161327e565b819250505092915050565b50505050565b6000819050919050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fb3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612fee576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ffb6000858386612f26565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161306060018514612f2c565b901b60a042901b61307086612f36565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14613174575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131246000878480600101955087612bf0565b61315a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106130b557826000541461316f57600080fd5b6131df565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613175575b8160008190555050506131f56000858386612f40565b50505050565b60008060418351141561323d5760008060006020860151925060408601519150606086015160001a905061323187828585613453565b94509450505050613277565b60408351141561326e576000806020850151915060408501519050613263868383613560565b935093505050613277565b60006002915091505b9250929050565b6000600481111561329257613291614653565b5b8160048111156132a5576132a4614653565b5b14156132b057613450565b600160048111156132c4576132c3614653565b5b8160048111156132d7576132d6614653565b5b1415613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330f9061403e565b60405180910390fd5b6002600481111561332c5761332b614653565b5b81600481111561333f5761333e614653565b5b1415613380576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133779061405e565b60405180910390fd5b6003600481111561339457613393614653565b5b8160048111156133a7576133a6614653565b5b14156133e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133df9061409e565b60405180910390fd5b6004808111156133fb576133fa614653565b5b81600481111561340e5761340d614653565b5b141561344f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613446906140de565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561348e576000600391509150613557565b601b8560ff16141580156134a65750601c8560ff1614155b156134b8576000600491509150613557565b6000600187878787604051600081526020016040526040516134dd9493929190613fd7565b6020604051602081039080840390855afa1580156134ff573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561354e57600060019250925050613557565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6135a391906142b1565b90506135b187828885613453565b935093505050935093915050565b8280546135cb906144d8565b90600052602060002090601f0160209004810192826135ed5760008555613634565b82601f1061360657805160ff1916838001178555613634565b82800160010185558215613634579182015b82811115613633578251825591602001919060010190613618565b5b5090506136419190613645565b5090565b5b8082111561365e576000816000905550600101613646565b5090565b6000613675613670846141b4565b61418f565b90508281526020810184848401111561369157613690614714565b5b61369c848285614496565b509392505050565b60006136b76136b2846141e5565b61418f565b9050828152602081018484840111156136d3576136d2614714565b5b6136de848285614496565b509392505050565b6000813590506136f581614934565b92915050565b60008135905061370a8161494b565b92915050565b60008135905061371f81614962565b92915050565b60008151905061373481614962565b92915050565b600082601f83011261374f5761374e61470f565b5b813561375f848260208601613662565b91505092915050565b600082601f83011261377d5761377c61470f565b5b813561378d8482602086016136a4565b91505092915050565b6000813590506137a581614979565b92915050565b6000813590506137ba81614990565b92915050565b6000813590506137cf816149a7565b92915050565b6000602082840312156137eb576137ea61471e565b5b60006137f9848285016136e6565b91505092915050565b600080604083850312156138195761381861471e565b5b6000613827858286016136e6565b9250506020613838858286016136e6565b9150509250929050565b60008060006060848603121561385b5761385a61471e565b5b6000613869868287016136e6565b935050602061387a868287016136e6565b925050604061388b868287016137ab565b9150509250925092565b600080600080608085870312156138af576138ae61471e565b5b60006138bd878288016136e6565b94505060206138ce878288016136e6565b93505060406138df878288016137ab565b925050606085013567ffffffffffffffff811115613900576138ff614719565b5b61390c8782880161373a565b91505092959194509250565b6000806040838503121561392f5761392e61471e565b5b600061393d858286016136e6565b925050602061394e858286016136fb565b9150509250929050565b6000806040838503121561396f5761396e61471e565b5b600061397d858286016136e6565b925050602061398e858286016137ab565b9150509250929050565b600080604083850312156139af576139ae61471e565b5b60006139bd858286016136e6565b92505060206139ce858286016137c0565b9150509250929050565b6000602082840312156139ee576139ed61471e565b5b60006139fc848285016136fb565b91505092915050565b600060208284031215613a1b57613a1a61471e565b5b6000613a2984828501613710565b91505092915050565b600060208284031215613a4857613a4761471e565b5b6000613a5684828501613725565b91505092915050565b600060208284031215613a7557613a7461471e565b5b600082013567ffffffffffffffff811115613a9357613a92614719565b5b613a9f84828501613768565b91505092915050565b600060208284031215613abe57613abd61471e565b5b6000613acc84828501613796565b91505092915050565b600060208284031215613aeb57613aea61471e565b5b6000613af9848285016137ab565b91505092915050565b600060208284031215613b1857613b1761471e565b5b6000613b26848285016137c0565b91505092915050565b600080600060608486031215613b4857613b4761471e565b5b6000613b56868287016137c0565b9350506020613b67868287016137c0565b925050604084013567ffffffffffffffff811115613b8857613b87614719565b5b613b948682870161373a565b9150509250925092565b613ba7816143fd565b82525050565b613bbe613bb9826143fd565b614584565b82525050565b613bcd8161440f565b82525050565b613bdc8161441b565b82525050565b613bf3613bee8261441b565b614596565b82525050565b6000613c048261422b565b613c0e8185614241565b9350613c1e8185602086016144a5565b613c2781614723565b840191505092915050565b6000613c3d82614236565b613c47818561425d565b9350613c578185602086016144a5565b613c6081614723565b840191505092915050565b6000613c7682614236565b613c80818561426e565b9350613c908185602086016144a5565b80840191505092915050565b60008154613ca9816144d8565b613cb3818661426e565b94506001821660008114613cce5760018114613cdf57613d12565b60ff19831686528186019350613d12565b613ce885614216565b60005b83811015613d0a57815481890152600182019150602081019050613ceb565b838801955050505b50505092915050565b6000613d2860188361425d565b9150613d338261474e565b602082019050919050565b6000613d4b601f8361425d565b9150613d5682614777565b602082019050919050565b6000613d6e601c8361426e565b9150613d79826147a0565b601c82019050919050565b6000613d9160268361425d565b9150613d9c826147c9565b604082019050919050565b6000613db460228361425d565b9150613dbf82614818565b604082019050919050565b6000613dd760138361425d565b9150613de282614867565b602082019050919050565b6000613dfa60228361425d565b9150613e0582614890565b604082019050919050565b6000613e1d60208361425d565b9150613e28826148df565b602082019050919050565b6000613e40600083614252565b9150613e4b82614908565b600082019050919050565b6000613e63601f8361425d565b9150613e6e8261490b565b602082019050919050565b613e8281614451565b82525050565b613e918161447f565b82525050565b613ea081614489565b82525050565b613eb7613eb282614489565b6145b2565b82525050565b6000613ec98286613c6b565b9150613ed58285613c6b565b9150613ee18284613c9c565b9150819050949350505050565b6000613ef982613d61565b9150613f058284613be2565b60208201915081905092915050565b6000613f1f82613e33565b9150819050919050565b6000613f358285613ea6565b600182019150613f458284613bad565b6014820191508190509392505050565b6000602082019050613f6a6000830184613b9e565b92915050565b6000608082019050613f856000830187613b9e565b613f926020830186613b9e565b613f9f6040830185613e88565b8181036060830152613fb18184613bf9565b905095945050505050565b6000602082019050613fd16000830184613bc4565b92915050565b6000608082019050613fec6000830187613bd3565b613ff96020830186613e97565b6140066040830185613bd3565b6140136060830184613bd3565b95945050505050565b600060208201905081810360008301526140368184613c32565b905092915050565b6000602082019050818103600083015261405781613d1b565b9050919050565b6000602082019050818103600083015261407781613d3e565b9050919050565b6000602082019050818103600083015261409781613d84565b9050919050565b600060208201905081810360008301526140b781613da7565b9050919050565b600060208201905081810360008301526140d781613dca565b9050919050565b600060208201905081810360008301526140f781613ded565b9050919050565b6000602082019050818103600083015261411781613e10565b9050919050565b6000602082019050818103600083015261413781613e56565b9050919050565b60006020820190506141536000830184613e79565b92915050565b600060208201905061416e6000830184613e88565b92915050565b60006020820190506141896000830184613e97565b92915050565b60006141996141aa565b90506141a5828261450a565b919050565b6000604051905090565b600067ffffffffffffffff8211156141cf576141ce6146e0565b5b6141d882614723565b9050602081019050919050565b600067ffffffffffffffff821115614200576141ff6146e0565b5b61420982614723565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061428482614451565b915061428f83614451565b92508261ffff038211156142a6576142a56145f5565b5b828201905092915050565b60006142bc8261447f565b91506142c78361447f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142fc576142fb6145f5565b5b828201905092915050565b600061431282614489565b915061431d83614489565b92508260ff03821115614333576143326145f5565b5b828201905092915050565b60006143498261447f565b91506143548361447f565b92508261436457614363614624565b5b828204905092915050565b600061437a8261447f565b91506143858361447f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143be576143bd6145f5565b5b828202905092915050565b60006143d48261447f565b91506143df8361447f565b9250828210156143f2576143f16145f5565b5b828203905092915050565b60006144088261445f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156144c35780820151818401526020810190506144a8565b838111156144d2576000848401525b50505050565b600060028204905060018216806144f057607f821691505b6020821081141561450457614503614682565b5b50919050565b61451382614723565b810181811067ffffffffffffffff82111715614532576145316146e0565b5b80604052505050565b60006145468261447f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614579576145786145f5565b5b600182019050919050565b600061458f826145a0565b9050919050565b6000819050919050565b60006145ab82614741565b9050919050565b60006145bd82614734565b9050919050565b60006145cf8261447f565b91506145da8361447f565b9250826145ea576145e9614624565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f81b9050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f43414e2754205055542030204144445245535300000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61493d816143fd565b811461494857600080fd5b50565b6149548161440f565b811461495f57600080fd5b50565b61496b81614425565b811461497657600080fd5b50565b61498281614451565b811461498d57600080fd5b50565b6149998161447f565b81146149a457600080fd5b50565b6149b081614489565b81146149bb57600080fd5b5056fea2646970667358221220a231567a41eb43632d9308037af0ef537e5d52f1db4a63439c83b8fc319ff5d964736f6c63430008070033

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.