ETH Price: $3,259.75 (+2.67%)
Gas: 4 Gwei

Token

SLIMES (SLIMES)
 

Overview

Max Total Supply

3,226 SLIMES

Holders

815

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 SLIMES
0xded95b2a7231881652850ea3e4cee4e43cef6567
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Slimes

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : Slimes.sol
// SPDX-License-Identifier: MIT
//                                                        .=+-                     
//                                             .:       .+#**%+*####*              
//                                           =###+    :+##*#%#***##*=              
//                                      .:=*##*#%==+*##**###**#*=:                 
//                                 :=*####***####*******##*##+.                    
//                               =##*****++*##***++====***#+.                      
//                             :##****#%*=+***++====++**##.                        
//                            :%*****+#***+========+***#+                          
//                            *#***++#*+=+*+=======***#-                           
//       -*##**-              %*****#**+=++*+=====***#:               =****=       
//      #%+++++*%=            ##**%#***+=++=**==+***#:              :%*++++#*      
//     *%++++++++*%*:         :#*%%%#**+==+==*#****#:             .*%++++++##      
//     @*+++++++++++@-         :%%%%%%#*++****#%##*.             -%++++++++##      
//     @#+++++++++++#*         *##%%%%%#**###*###+              .@+++++++++#%      
//     =%+++++++++++%=        #@%#***###*****+=-=%#             -@++++++++++@-     
//      %#++++++++++%-.+=   .%@%%%####*+--=++++++#@:            %*++++++++++%+     
//      :@*++%#*%*++%=+%*%. .#@**######*===+++**%%.            :@+++++***+++@-     
//       =%+*@+ -@*+#*-@+##   =@*++++*##*==++*#@+        .**-  .@*+++%%-+@*+%+     
//        ##+#@- -%#%--%++##.  =@%+++#%+*@++#%+%=       .%*+@   +%++*@*  *%+##     
//        .@*+*@=  .  +%+++*%-  %#@##%+++###%++@.       %#++@=   @*++*@.  +##:     
//         -@*++%#.   =%++++#%  **+++++++*%%++*#    =+.:@*+*%+   =%*++*%+.         
//    *%%+  *%*++*%-  :@++++##  ##+*+++++++++##*   ##%+ %*%*.     -%#*++*%#+-      
//    @**%*  @#**+*%+ :@++++#*  %*+*#+++++++%#%:   @*%+ @*%=        -%#*****#%.    
//    #%**@: -@%****@==%++++##  +%*#%++++++%#-    .@*%=:@+@+*=  .==   *%##***%+    
//    =@**#%. @%****#%.@*+++##   :=%*+++++*@.=#@# .@+@:-@+###@  %#%#   :*@#++%*    
//    -@****%%%*****## *%***##     ##+++++*%:@**@-+%*@..@***#%  @#*%#+:  #%**%#    
//    =@**++********%= +@***%#     %#******@-@**@@%**@:-@#**#@  ##****%*+%#**#%    
//    *%#***********@  @#***## .:  -%@#**#*%=#%**#***@-=%*#%-   =%***********#@.   
//    #%*+****=****#% .@*****%%%%%  =%*#*@*@-:@#*****%=.@##@.   :@*+*******#%@@:   
//    =@####*******#%  @#********@. :@***@#%+ @#**+#*## -@*%#%@=:@*****+**#@#+@.   
//     -#%@%#*****#%#*=%#********@. :@%***#@- @#%**@#*@..@****%*#@**+####*@%*+*%   
//       .+@#**#%#%#-=+#%*****=**%@%+@#**=*%# @#@@%@%+%*-@#++*%@#@####%##@+%***.   
//        .@####@%@@+=+*@#******%@#%@%#**+*%%#@##@:.@##@*#@###@%#@####@#=. .*-     
//         +@##%%: .+%#%@%#%%#%%=%%%@%%#*#%*#*%##@= -%%@#%@%#=.=-=@###%            
//          .=+=.     :+:   %%%+ .*-=@@#*@=  -+*##.     ..:.      #%##@            
//                          .++      =@##%*                       +%%%*            
//                                   .%%#%#                        =*+             
//                                     =*+.                                        
//
//  SLIMES are Silly Little Infected Magical Energy Superstars
//  https://slimes.fun/

pragma solidity ^0.8.4;

import "erc721a/contracts/ERC721A.sol";
import "erc721a/contracts/extensions/ERC721ABurnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import '@openzeppelin/contracts/utils/math/SafeMath.sol';
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';

contract Slimes is ERC721A, ERC721ABurnable, Ownable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _reserveMinted;

    // Sales
    bool public saleStart = false;
    uint256 public price = .04 ether;
    uint256 public constant maxSupply = 9888;
    uint256 public maxTotalFreeMint = 3000;
    uint256 private constant maxReserved = 300;
    uint256 public constant maxPaidMint = 10;
    uint256 public constant maxFreeMint = 3;
    uint256 public freeMinted;
    mapping(address => uint256) public freeClaimsBy;

    // Settings
    string public provenance = "50b68b8c43bc02d8ca6c72411edcd02b1bbcdb1bea2033c73dc4c767635f779f";
    string public baseUri = "https://api.slimes.fun/slime/";
    bool public sealContract;

    // Team
    address cyrus     = 0xdB95df498cCA3be226e20b28a146a638845552CB;
    address ardie     = 0x2Da0831D81c0626B028516CAAD41b6FDc26F272B;
    address eugene    = 0x714E6A851aBA9F597dB2096C19C6b25cbf235d3C;
    address slimesDAO = 0xa9ede628eAF89589c8bf98c11456484591D4D57e;
    address slimes    = 0x1026fF2706385D7f56205489e8aB37C8Ba43299d;


    constructor() ERC721A("SLIMES", "SLIMES") { }

    /**
    *   Public function for minting.
    */
    function mint(uint256 amount) public payable {
        require(saleStart, "SALE PAUSED");
        require((_currentIndex.add(amount) - _reserveMinted.current()) <= (maxSupply - maxReserved), "Sold Out");
        require(msg.sender.code.length == 0, "_");
        if (freeMinted.add(amount) <= maxTotalFreeMint) {
            require(amount <= maxFreeMint, "Max 3 per transaction");
            require(msg.value == 0, "No ETH required");
            require(freeClaimsBy[msg.sender] + amount <= 6, "Max 6 per address");
            freeMinted = freeMinted.add(amount);
            freeClaimsBy[msg.sender] += amount;
        } else {
            require(amount <= maxPaidMint, "Max 10 per transaction");
            require(msg.value >= amount*price, "Value too low");
        }
        _safeMint(msg.sender, amount);
    }

    function mintReserved(uint256 amount, address receiver) public onlyOwner {
        require(_currentIndex.add(amount) <= maxSupply);
        require(_reserveMinted.current().add(amount) <= maxReserved);
        for (uint256 i=0; i<amount; i++) {
            _reserveMinted.increment();
        }
        _safeMint(receiver, amount);
    }

    /*
    *   Getters.
    */
    function exists(uint256 tokenId) public view returns(bool) {
        return _exists(tokenId);
    }

    function getByOwner(address _owner) view public returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 totalTokens = _currentIndex;
            uint256 resultIndex;
            for (uint256 t = 1; t <= totalTokens; t++) {
                if (_exists(t) && ownerOf(t) == _owner) {
                    result[resultIndex] = t;
                    resultIndex++;
                }
            }
            return result;
        }
    }

    /*
    *   Owner setters.
    */
    function setBaseUri(string memory _baseUri) public onlyOwner {
        require(!sealContract, "Contract must not be sealed.");
        baseUri = _baseUri;
    }

    function setPrice(uint256 _price) public onlyOwner {
        price = _price;
    }

    function setSaleStart(bool _saleStart) public onlyOwner {
        saleStart = _saleStart;
    }

    function setTotalFreeMint(uint256 _maxTotalFreeMint) public onlyOwner {
        maxTotalFreeMint = _maxTotalFreeMint;
    }

    function setSealContract() public onlyOwner {
        sealContract = true;
    }

    /*
    *   Money management.
    */
    function withdraw() public payable onlyOwner {
        uint256 each = address(this).balance;
        require(payable(cyrus).send(each.mul(1557).div(10000)));
        require(payable(ardie).send(each.mul(1557).div(10000)));
        require(payable(eugene).send(each.mul(1557).div(10000)));
        require(payable(slimesDAO).send(each.mul(780).div(10000)));
        require(payable(slimes).send(address(this).balance));
    }

    function forwardERC20s(IERC20 _token, uint256 _amount) public onlyOwner {
        _token.transfer(msg.sender, _amount);
    }

    /*
    *   Overrides.
    */
    function _baseURI() internal view override returns (string memory) {
        return baseUri;
    }

    receive () external payable virtual {}
}

File 2 of 15 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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 Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    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;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * 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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].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 {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // 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.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @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, tokenId.toString())) : '';
    }

    /**
     * @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 See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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.isContract() && !_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 && !_ownerships[tokenId].burned;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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 {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

            if (safe && to.isContract()) {
                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 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == 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 {}
}

File 3 of 15 : ERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../ERC721A.sol';

/**
 * @title ERC721A Burnable Token
 * @dev ERC721A Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        _burn(tokenId, true);
    }
}

File 4 of 15 : 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 15 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 6 of 15 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 7 of 15 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 8 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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);
}

File 9 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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 11 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 15 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 13 of 15 : 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 14 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 15 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"forwardERC20s","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeClaimsBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPaidMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sealContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleStart","type":"bool"}],"name":"setSaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSealContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTotalFreeMint","type":"uint256"}],"name":"setTotalFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600a60006101000a81548160ff021916908315150217905550668e1bc9bf040000600b55610bb8600c5560405180606001604052806040815260200162004ead60409139600f90805190602001906200006192919062000416565b506040518060400160405280601d81526020017f68747470733a2f2f6170692e736c696d65732e66756e2f736c696d652f00000081525060109080519060200190620000af92919062000416565b5073db95df498cca3be226e20b28a146a638845552cb601160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732da0831d81c0626b028516caad41b6fdc26f272b601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073714e6a851aba9f597db2096c19c6b25cbf235d3c601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a9ede628eaf89589c8bf98c11456484591d4d57e601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731026ff2706385d7f56205489e8ab37c8ba43299d601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200026657600080fd5b506040518060400160405280600681526020017f534c494d455300000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f534c494d455300000000000000000000000000000000000000000000000000008152508160029080519060200190620002eb92919062000416565b5080600390805190602001906200030492919062000416565b50620003156200034360201b60201c565b60008190555050506200033d620003316200034860201b60201c565b6200035060201b60201c565b6200052b565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200042490620004c6565b90600052602060002090601f01602090048101928262000448576000855562000494565b82601f106200046357805160ff191683800117855562000494565b8280016001018555821562000494579182015b828111156200049357825182559160200191906001019062000476565b5b509050620004a39190620004a7565b5090565b5b80821115620004c2576000816000905550600101620004a8565b5090565b60006002820490506001821680620004df57607f821691505b60208210811415620004f657620004f5620004fc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614972806200053b6000396000f3fe60806040526004361061023f5760003560e01c8063715018a61161012e578063a591252d116100ab578063d10a1a2b1161006f578063d10a1a2b1461084c578063d5abeb0114610877578063e985e9c5146108a2578063f2fde38b146108df578063ffbe61931461090857610246565b8063a591252d14610767578063ab0bcc4114610792578063b88d4fde146107bd578063c87b56dd146107e6578063c93f2bb81461082357610246565b80639abc8320116100f25780639abc8320146106a3578063a035b1fe146106ce578063a0712d68146106f9578063a0bcfc7f14610715578063a22cb4651461073e57610246565b8063715018a6146105e45780638da5cb5b146105fb57806391b7f5ed1461062657806395d89b411461064f5780639727151a1461067a57610246565b80633ccfd60b116101bc5780636352211e116101805780636352211e146104d957806368bd580e1461051657806369240778146105415780636c9119181461057e57806370a08231146105a757610246565b80633ccfd60b1461041757806342842e0e1461042157806342966c681461044a5780634f558e7914610473578063631bbbba146104b057610246565b806318160ddd1161020357806318160ddd146103445780631f0439fd1461036f57806323b872dd14610386578063379c5131146103af5780633bfaa33d146103ec57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780630f7309e81461031957610246565b3661024657005b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613bbe565b610933565b60405161027f919061409e565b60405180910390f35b34801561029457600080fd5b5061029d610a15565b6040516102aa91906140b9565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613c8d565b610aa7565b6040516102e79190613fec565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613b30565b610b23565b005b34801561032557600080fd5b5061032e610c2e565b60405161033b91906140b9565b60405180910390f35b34801561035057600080fd5b50610359610cbc565b604051610366919061423b565b60405180910390f35b34801561037b57600080fd5b50610384610cd3565b005b34801561039257600080fd5b506103ad60048036038101906103a89190613a2a565b610d6c565b005b3480156103bb57600080fd5b506103d660048036038101906103d191906139c5565b610d7c565b6040516103e3919061407c565b60405180910390f35b3480156103f857600080fd5b50610401610f57565b60405161040e919061423b565b60405180910390f35b61041f610f5c565b005b34801561042d57600080fd5b5061044860048036038101906104439190613a2a565b611260565b005b34801561045657600080fd5b50610471600480360381019061046c9190613c8d565b611280565b005b34801561047f57600080fd5b5061049a60048036038101906104959190613c8d565b61128e565b6040516104a7919061409e565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190613cb6565b6112a0565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190613c8d565b6113a0565b60405161050d9190613fec565b60405180910390f35b34801561052257600080fd5b5061052b6113b6565b604051610538919061409e565b60405180910390f35b34801561054d57600080fd5b50610568600480360381019061056391906139c5565b6113c9565b604051610575919061423b565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190613b6c565b6113e1565b005b3480156105b357600080fd5b506105ce60048036038101906105c991906139c5565b61147a565b6040516105db919061423b565b60405180910390f35b3480156105f057600080fd5b506105f961154a565b005b34801561060757600080fd5b506106106115d2565b60405161061d9190613fec565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190613c8d565b6115fc565b005b34801561065b57600080fd5b50610664611682565b60405161067191906140b9565b60405180910390f35b34801561068657600080fd5b506106a1600480360381019061069c9190613c10565b611714565b005b3480156106af57600080fd5b506106b8611822565b6040516106c591906140b9565b60405180910390f35b3480156106da57600080fd5b506106e36118b0565b6040516106f0919061423b565b60405180910390f35b610713600480360381019061070e9190613c8d565b6118b6565b005b34801561072157600080fd5b5061073c60048036038101906107379190613c4c565b611c23565b005b34801561074a57600080fd5b5061076560048036038101906107609190613af4565b611d09565b005b34801561077357600080fd5b5061077c611e81565b604051610789919061423b565b60405180910390f35b34801561079e57600080fd5b506107a7611e86565b6040516107b4919061409e565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df9190613a79565b611e99565b005b3480156107f257600080fd5b5061080d60048036038101906108089190613c8d565b611f15565b60405161081a91906140b9565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613c8d565b611fb4565b005b34801561085857600080fd5b5061086161203a565b60405161086e919061423b565b60405180910390f35b34801561088357600080fd5b5061088c612040565b604051610899919061423b565b60405180910390f35b3480156108ae57600080fd5b506108c960048036038101906108c491906139ee565b612046565b6040516108d6919061409e565b60405180910390f35b3480156108eb57600080fd5b50610906600480360381019061090191906139c5565b6120da565b005b34801561091457600080fd5b5061091d6121d2565b60405161092a919061423b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e5750610a0d826121d8565b5b9050919050565b606060028054610a2490614536565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5090614536565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b6000610ab282612242565b610ae8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2e826113a0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b96576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb5612290565b73ffffffffffffffffffffffffffffffffffffffff1614158015610be75750610be581610be0612290565b612046565b155b15610c1e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c29838383612298565b505050565b600f8054610c3b90614536565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6790614536565b8015610cb45780601f10610c8957610100808354040283529160200191610cb4565b820191906000526020600020905b815481529060010190602001808311610c9757829003601f168201915b505050505081565b6000610cc661234a565b6001546000540303905090565b610cdb612290565b73ffffffffffffffffffffffffffffffffffffffff16610cf96115d2565b73ffffffffffffffffffffffffffffffffffffffff1614610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d46906141bb565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b610d7783838361234f565b505050565b60606000610d898361147a565b90506000811415610e0c57600067ffffffffffffffff811115610dd5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e035781602001602082028036833780820191505090505b50915050610f52565b60008167ffffffffffffffff811115610e4e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e7c5781602001602082028036833780820191505090505b509050600080549050600080600190505b828111610f4957610e9d81612242565b8015610edc57508673ffffffffffffffffffffffffffffffffffffffff16610ec4826113a0565b73ffffffffffffffffffffffffffffffffffffffff16145b15610f365780848381518110610f1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610f3290614599565b9250505b8080610f4190614599565b915050610e8d565b50829450505050505b919050565b600a81565b610f64612290565b73ffffffffffffffffffffffffffffffffffffffff16610f826115d2565b73ffffffffffffffffffffffffffffffffffffffff1614610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf906141bb565b60405180910390fd5b6000479050601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6110426127106110346106158661280590919063ffffffff16565b61281b90919063ffffffff16565b9081150290604051600060405180830381858888f1935050505061106557600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6110ca6127106110bc6106158661280590919063ffffffff16565b61281b90919063ffffffff16565b9081150290604051600060405180830381858888f193505050506110ed57600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6111526127106111446106158661280590919063ffffffff16565b61281b90919063ffffffff16565b9081150290604051600060405180830381858888f1935050505061117557600080fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6111da6127106111cc61030c8661280590919063ffffffff16565b61281b90919063ffffffff16565b9081150290604051600060405180830381858888f193505050506111fd57600080fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061125d57600080fd5b50565b61127b83838360405180602001604052806000815250611e99565b505050565b61128b816001612831565b50565b600061129982612242565b9050919050565b6112a8612290565b73ffffffffffffffffffffffffffffffffffffffff166112c66115d2565b73ffffffffffffffffffffffffffffffffffffffff161461131c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611313906141bb565b60405180910390fd5b6126a061133483600054612c2190919063ffffffff16565b111561133f57600080fd5b61012c61135e836113506009612c37565b612c2190919063ffffffff16565b111561136957600080fd5b60005b828110156113915761137e6009612c45565b808061138990614599565b91505061136c565b5061139c8183612c5b565b5050565b60006113ab82612c79565b600001519050919050565b601160009054906101000a900460ff1681565b600e6020528060005260406000206000915090505481565b6113e9612290565b73ffffffffffffffffffffffffffffffffffffffff166114076115d2565b73ffffffffffffffffffffffffffffffffffffffff161461145d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611454906141bb565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611552612290565b73ffffffffffffffffffffffffffffffffffffffff166115706115d2565b73ffffffffffffffffffffffffffffffffffffffff16146115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd906141bb565b60405180910390fd5b6115d06000612f08565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611604612290565b73ffffffffffffffffffffffffffffffffffffffff166116226115d2565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f906141bb565b60405180910390fd5b80600b8190555050565b60606003805461169190614536565b80601f01602080910402602001604051908101604052809291908181526020018280546116bd90614536565b801561170a5780601f106116df5761010080835404028352916020019161170a565b820191906000526020600020905b8154815290600101906020018083116116ed57829003601f168201915b5050505050905090565b61171c612290565b73ffffffffffffffffffffffffffffffffffffffff1661173a6115d2565b73ffffffffffffffffffffffffffffffffffffffff1614611790576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611787906141bb565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016117cb929190614053565b602060405180830381600087803b1580156117e557600080fd5b505af11580156117f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181d9190613b95565b505050565b6010805461182f90614536565b80601f016020809104026020016040519081016040528092919081815260200182805461185b90614536565b80156118a85780601f1061187d576101008083540402835291602001916118a8565b820191906000526020600020905b81548152906001019060200180831161188b57829003601f168201915b505050505081565b600b5481565b600a60009054906101000a900460ff16611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc9061415b565b60405180910390fd5b61012c6126a0611915919061443a565b61191f6009612c37565b61193483600054612c2190919063ffffffff16565b61193e919061443a565b111561197f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119769061411b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff163b146119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d0906141fb565b60405180910390fd5b600c546119f182600d54612c2190919063ffffffff16565b11611b81576003811115611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a31906140fb565b60405180910390fd5b60003414611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a74906140db565b60405180910390fd5b600681600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aca9190614359565b1115611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b029061417b565b60405180910390fd5b611b2081600d54612c2190919063ffffffff16565b600d8190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b759190614359565b92505081905550611c16565b600a811115611bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbc906141db565b60405180910390fd5b600b5481611bd391906143e0565b341015611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c9061419b565b60405180910390fd5b5b611c203382612c5b565b50565b611c2b612290565b73ffffffffffffffffffffffffffffffffffffffff16611c496115d2565b73ffffffffffffffffffffffffffffffffffffffff1614611c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c96906141bb565b60405180910390fd5b601160009054906101000a900460ff1615611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce69061421b565b60405180910390fd5b8060109080519060200190611d0592919061377c565b5050565b611d11612290565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d76576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d83612290565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e30612290565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e75919061409e565b60405180910390a35050565b600381565b600a60009054906101000a900460ff1681565b611ea484848461234f565b611ec38373ffffffffffffffffffffffffffffffffffffffff16612fce565b8015611ed85750611ed684848484612ff1565b155b15611f0f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611f2082612242565b611f56576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611f60613151565b9050600081511415611f815760405180602001604052806000815250611fac565b80611f8b846131e3565b604051602001611f9c929190613fc8565b6040516020818303038152906040525b915050919050565b611fbc612290565b73ffffffffffffffffffffffffffffffffffffffff16611fda6115d2565b73ffffffffffffffffffffffffffffffffffffffff1614612030576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612027906141bb565b60405180910390fd5b80600c8190555050565b600d5481565b6126a081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120e2612290565b73ffffffffffffffffffffffffffffffffffffffff166121006115d2565b73ffffffffffffffffffffffffffffffffffffffff1614612156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214d906141bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd9061413b565b60405180910390fd5b6121cf81612f08565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161224d61234a565b1115801561225c575060005482105b8015612289575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061235a82612c79565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123c5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166123e6612290565b73ffffffffffffffffffffffffffffffffffffffff16148061241557506124148561240f612290565b612046565b5b8061245a5750612423612290565b73ffffffffffffffffffffffffffffffffffffffff1661244284610aa7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612493576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124fa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125078585856001613390565b61251360008487612298565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561279357600054821461279257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127fe8585856001613396565b5050505050565b6000818361281391906143e0565b905092915050565b6000818361282991906143af565b905092915050565b600061283c83612c79565b9050600081600001519050821561291d5760008173ffffffffffffffffffffffffffffffffffffffff1661286e612290565b73ffffffffffffffffffffffffffffffffffffffff16148061289d575061289c82612897612290565b612046565b5b806128e257506128ab612290565b73ffffffffffffffffffffffffffffffffffffffff166128ca86610aa7565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061291b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b61292b816000866001613390565b61293760008583612298565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b9b576000548214612b9a57848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c09816000866001613396565b60016000815480929190600101919050555050505050565b60008183612c2f9190614359565b905092915050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612c7582826040518060200160405280600081525061339c565b5050565b612c81613802565b600082905080612c8f61234a565b11158015612c9e575060005481105b15612ed1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ecf57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612db3578092505050612f03565b5b600115612ece57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ec9578092505050612f03565b612db4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613017612290565b8786866040518563ffffffff1660e01b81526004016130399493929190614007565b602060405180830381600087803b15801561305357600080fd5b505af192505050801561308457506040513d601f19601f820116820180604052508101906130819190613be7565b60015b6130fe573d80600081146130b4576040519150601f19603f3d011682016040523d82523d6000602084013e6130b9565b606091505b506000815114156130f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461316090614536565b80601f016020809104026020016040519081016040528092919081815260200182805461318c90614536565b80156131d95780601f106131ae576101008083540402835291602001916131d9565b820191906000526020600020905b8154815290600101906020018083116131bc57829003601f168201915b5050505050905090565b6060600082141561322b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061338b565b600082905060005b6000821461325d57808061324690614599565b915050600a8261325691906143af565b9150613233565b60008167ffffffffffffffff81111561329f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132d15781602001600182028036833780820191505090505b5090505b60008514613384576001826132ea919061443a565b9150600a856132f991906145e2565b60306133059190614359565b60f81b818381518110613341577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561337d91906143af565b94506132d5565b8093505050505b919050565b50505050565b50505050565b6133a983838360016133ae565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561341b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613456576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134636000868387613390565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561362d575061362c8773ffffffffffffffffffffffffffffffffffffffff16612fce565b5b156136f3575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136a26000888480600101955088612ff1565b6136d8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156136335782600054146136ee57600080fd5b61375f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156136f4575b8160008190555050506137756000868387613396565b5050505050565b82805461378890614536565b90600052602060002090601f0160209004810192826137aa57600085556137f1565b82601f106137c357805160ff19168380011785556137f1565b828001600101855582156137f1579182015b828111156137f05782518255916020019190600101906137d5565b5b5090506137fe9190613845565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561385e576000816000905550600101613846565b5090565b60006138756138708461427b565b614256565b90508281526020810184848401111561388d57600080fd5b6138988482856144f4565b509392505050565b60006138b36138ae846142ac565b614256565b9050828152602081018484840111156138cb57600080fd5b6138d68482856144f4565b509392505050565b6000813590506138ed816148c9565b92915050565b600081359050613902816148e0565b92915050565b600081519050613917816148e0565b92915050565b60008135905061392c816148f7565b92915050565b600081519050613941816148f7565b92915050565b600082601f83011261395857600080fd5b8135613968848260208601613862565b91505092915050565b6000813590506139808161490e565b92915050565b600082601f83011261399757600080fd5b81356139a78482602086016138a0565b91505092915050565b6000813590506139bf81614925565b92915050565b6000602082840312156139d757600080fd5b60006139e5848285016138de565b91505092915050565b60008060408385031215613a0157600080fd5b6000613a0f858286016138de565b9250506020613a20858286016138de565b9150509250929050565b600080600060608486031215613a3f57600080fd5b6000613a4d868287016138de565b9350506020613a5e868287016138de565b9250506040613a6f868287016139b0565b9150509250925092565b60008060008060808587031215613a8f57600080fd5b6000613a9d878288016138de565b9450506020613aae878288016138de565b9350506040613abf878288016139b0565b925050606085013567ffffffffffffffff811115613adc57600080fd5b613ae887828801613947565b91505092959194509250565b60008060408385031215613b0757600080fd5b6000613b15858286016138de565b9250506020613b26858286016138f3565b9150509250929050565b60008060408385031215613b4357600080fd5b6000613b51858286016138de565b9250506020613b62858286016139b0565b9150509250929050565b600060208284031215613b7e57600080fd5b6000613b8c848285016138f3565b91505092915050565b600060208284031215613ba757600080fd5b6000613bb584828501613908565b91505092915050565b600060208284031215613bd057600080fd5b6000613bde8482850161391d565b91505092915050565b600060208284031215613bf957600080fd5b6000613c0784828501613932565b91505092915050565b60008060408385031215613c2357600080fd5b6000613c3185828601613971565b9250506020613c42858286016139b0565b9150509250929050565b600060208284031215613c5e57600080fd5b600082013567ffffffffffffffff811115613c7857600080fd5b613c8484828501613986565b91505092915050565b600060208284031215613c9f57600080fd5b6000613cad848285016139b0565b91505092915050565b60008060408385031215613cc957600080fd5b6000613cd7858286016139b0565b9250506020613ce8858286016138de565b9150509250929050565b6000613cfe8383613faa565b60208301905092915050565b613d138161446e565b82525050565b6000613d24826142ed565b613d2e818561431b565b9350613d39836142dd565b8060005b83811015613d6a578151613d518882613cf2565b9750613d5c8361430e565b925050600181019050613d3d565b5085935050505092915050565b613d8081614480565b82525050565b6000613d91826142f8565b613d9b818561432c565b9350613dab818560208601614503565b613db4816146cf565b840191505092915050565b6000613dca82614303565b613dd4818561433d565b9350613de4818560208601614503565b613ded816146cf565b840191505092915050565b6000613e0382614303565b613e0d818561434e565b9350613e1d818560208601614503565b80840191505092915050565b6000613e36600f8361433d565b9150613e41826146e0565b602082019050919050565b6000613e5960158361433d565b9150613e6482614709565b602082019050919050565b6000613e7c60088361433d565b9150613e8782614732565b602082019050919050565b6000613e9f60268361433d565b9150613eaa8261475b565b604082019050919050565b6000613ec2600b8361433d565b9150613ecd826147aa565b602082019050919050565b6000613ee560118361433d565b9150613ef0826147d3565b602082019050919050565b6000613f08600d8361433d565b9150613f13826147fc565b602082019050919050565b6000613f2b60208361433d565b9150613f3682614825565b602082019050919050565b6000613f4e60168361433d565b9150613f598261484e565b602082019050919050565b6000613f7160018361433d565b9150613f7c82614877565b602082019050919050565b6000613f94601c8361433d565b9150613f9f826148a0565b602082019050919050565b613fb3816144ea565b82525050565b613fc2816144ea565b82525050565b6000613fd48285613df8565b9150613fe08284613df8565b91508190509392505050565b60006020820190506140016000830184613d0a565b92915050565b600060808201905061401c6000830187613d0a565b6140296020830186613d0a565b6140366040830185613fb9565b81810360608301526140488184613d86565b905095945050505050565b60006040820190506140686000830185613d0a565b6140756020830184613fb9565b9392505050565b600060208201905081810360008301526140968184613d19565b905092915050565b60006020820190506140b36000830184613d77565b92915050565b600060208201905081810360008301526140d38184613dbf565b905092915050565b600060208201905081810360008301526140f481613e29565b9050919050565b6000602082019050818103600083015261411481613e4c565b9050919050565b6000602082019050818103600083015261413481613e6f565b9050919050565b6000602082019050818103600083015261415481613e92565b9050919050565b6000602082019050818103600083015261417481613eb5565b9050919050565b6000602082019050818103600083015261419481613ed8565b9050919050565b600060208201905081810360008301526141b481613efb565b9050919050565b600060208201905081810360008301526141d481613f1e565b9050919050565b600060208201905081810360008301526141f481613f41565b9050919050565b6000602082019050818103600083015261421481613f64565b9050919050565b6000602082019050818103600083015261423481613f87565b9050919050565b60006020820190506142506000830184613fb9565b92915050565b6000614260614271565b905061426c8282614568565b919050565b6000604051905090565b600067ffffffffffffffff821115614296576142956146a0565b5b61429f826146cf565b9050602081019050919050565b600067ffffffffffffffff8211156142c7576142c66146a0565b5b6142d0826146cf565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614364826144ea565b915061436f836144ea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143a4576143a3614613565b5b828201905092915050565b60006143ba826144ea565b91506143c5836144ea565b9250826143d5576143d4614642565b5b828204905092915050565b60006143eb826144ea565b91506143f6836144ea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561442f5761442e614613565b5b828202905092915050565b6000614445826144ea565b9150614450836144ea565b92508282101561446357614462614613565b5b828203905092915050565b6000614479826144ca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006144c38261446e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614521578082015181840152602081019050614506565b83811115614530576000848401525b50505050565b6000600282049050600182168061454e57607f821691505b6020821081141561456257614561614671565b5b50919050565b614571826146cf565b810181811067ffffffffffffffff821117156145905761458f6146a0565b5b80604052505050565b60006145a4826144ea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145d7576145d6614613565b5b600182019050919050565b60006145ed826144ea565b91506145f8836144ea565b92508261460857614607614642565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f204554482072657175697265640000000000000000000000000000000000600082015250565b7f4d6178203320706572207472616e73616374696f6e0000000000000000000000600082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53414c4520504155534544000000000000000000000000000000000000000000600082015250565b7f4d61782036207065722061646472657373000000000000000000000000000000600082015250565b7f56616c756520746f6f206c6f7700000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d617820313020706572207472616e73616374696f6e00000000000000000000600082015250565b7f5f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f436f6e7472616374206d757374206e6f74206265207365616c65642e00000000600082015250565b6148d28161446e565b81146148dd57600080fd5b50565b6148e981614480565b81146148f457600080fd5b50565b6149008161448c565b811461490b57600080fd5b50565b614917816144b8565b811461492257600080fd5b50565b61492e816144ea565b811461493957600080fd5b5056fea2646970667358221220be622398311b84b1fe43968532aadcd65171633236f61c799f1fbed2fb364fad64736f6c6343000804003335306236386238633433626330326438636136633732343131656463643032623162626364623162656132303333633733646334633736373633356637373966

Deployed Bytecode

0x60806040526004361061023f5760003560e01c8063715018a61161012e578063a591252d116100ab578063d10a1a2b1161006f578063d10a1a2b1461084c578063d5abeb0114610877578063e985e9c5146108a2578063f2fde38b146108df578063ffbe61931461090857610246565b8063a591252d14610767578063ab0bcc4114610792578063b88d4fde146107bd578063c87b56dd146107e6578063c93f2bb81461082357610246565b80639abc8320116100f25780639abc8320146106a3578063a035b1fe146106ce578063a0712d68146106f9578063a0bcfc7f14610715578063a22cb4651461073e57610246565b8063715018a6146105e45780638da5cb5b146105fb57806391b7f5ed1461062657806395d89b411461064f5780639727151a1461067a57610246565b80633ccfd60b116101bc5780636352211e116101805780636352211e146104d957806368bd580e1461051657806369240778146105415780636c9119181461057e57806370a08231146105a757610246565b80633ccfd60b1461041757806342842e0e1461042157806342966c681461044a5780634f558e7914610473578063631bbbba146104b057610246565b806318160ddd1161020357806318160ddd146103445780631f0439fd1461036f57806323b872dd14610386578063379c5131146103af5780633bfaa33d146103ec57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780630f7309e81461031957610246565b3661024657005b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613bbe565b610933565b60405161027f919061409e565b60405180910390f35b34801561029457600080fd5b5061029d610a15565b6040516102aa91906140b9565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613c8d565b610aa7565b6040516102e79190613fec565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613b30565b610b23565b005b34801561032557600080fd5b5061032e610c2e565b60405161033b91906140b9565b60405180910390f35b34801561035057600080fd5b50610359610cbc565b604051610366919061423b565b60405180910390f35b34801561037b57600080fd5b50610384610cd3565b005b34801561039257600080fd5b506103ad60048036038101906103a89190613a2a565b610d6c565b005b3480156103bb57600080fd5b506103d660048036038101906103d191906139c5565b610d7c565b6040516103e3919061407c565b60405180910390f35b3480156103f857600080fd5b50610401610f57565b60405161040e919061423b565b60405180910390f35b61041f610f5c565b005b34801561042d57600080fd5b5061044860048036038101906104439190613a2a565b611260565b005b34801561045657600080fd5b50610471600480360381019061046c9190613c8d565b611280565b005b34801561047f57600080fd5b5061049a60048036038101906104959190613c8d565b61128e565b6040516104a7919061409e565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190613cb6565b6112a0565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190613c8d565b6113a0565b60405161050d9190613fec565b60405180910390f35b34801561052257600080fd5b5061052b6113b6565b604051610538919061409e565b60405180910390f35b34801561054d57600080fd5b50610568600480360381019061056391906139c5565b6113c9565b604051610575919061423b565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190613b6c565b6113e1565b005b3480156105b357600080fd5b506105ce60048036038101906105c991906139c5565b61147a565b6040516105db919061423b565b60405180910390f35b3480156105f057600080fd5b506105f961154a565b005b34801561060757600080fd5b506106106115d2565b60405161061d9190613fec565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190613c8d565b6115fc565b005b34801561065b57600080fd5b50610664611682565b60405161067191906140b9565b60405180910390f35b34801561068657600080fd5b506106a1600480360381019061069c9190613c10565b611714565b005b3480156106af57600080fd5b506106b8611822565b6040516106c591906140b9565b60405180910390f35b3480156106da57600080fd5b506106e36118b0565b6040516106f0919061423b565b60405180910390f35b610713600480360381019061070e9190613c8d565b6118b6565b005b34801561072157600080fd5b5061073c60048036038101906107379190613c4c565b611c23565b005b34801561074a57600080fd5b5061076560048036038101906107609190613af4565b611d09565b005b34801561077357600080fd5b5061077c611e81565b604051610789919061423b565b60405180910390f35b34801561079e57600080fd5b506107a7611e86565b6040516107b4919061409e565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df9190613a79565b611e99565b005b3480156107f257600080fd5b5061080d60048036038101906108089190613c8d565b611f15565b60405161081a91906140b9565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613c8d565b611fb4565b005b34801561085857600080fd5b5061086161203a565b60405161086e919061423b565b60405180910390f35b34801561088357600080fd5b5061088c612040565b604051610899919061423b565b60405180910390f35b3480156108ae57600080fd5b506108c960048036038101906108c491906139ee565b612046565b6040516108d6919061409e565b60405180910390f35b3480156108eb57600080fd5b50610906600480360381019061090191906139c5565b6120da565b005b34801561091457600080fd5b5061091d6121d2565b60405161092a919061423b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e5750610a0d826121d8565b5b9050919050565b606060028054610a2490614536565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5090614536565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b6000610ab282612242565b610ae8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2e826113a0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b96576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb5612290565b73ffffffffffffffffffffffffffffffffffffffff1614158015610be75750610be581610be0612290565b612046565b155b15610c1e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c29838383612298565b505050565b600f8054610c3b90614536565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6790614536565b8015610cb45780601f10610c8957610100808354040283529160200191610cb4565b820191906000526020600020905b815481529060010190602001808311610c9757829003601f168201915b505050505081565b6000610cc661234a565b6001546000540303905090565b610cdb612290565b73ffffffffffffffffffffffffffffffffffffffff16610cf96115d2565b73ffffffffffffffffffffffffffffffffffffffff1614610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d46906141bb565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b610d7783838361234f565b505050565b60606000610d898361147a565b90506000811415610e0c57600067ffffffffffffffff811115610dd5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e035781602001602082028036833780820191505090505b50915050610f52565b60008167ffffffffffffffff811115610e4e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e7c5781602001602082028036833780820191505090505b509050600080549050600080600190505b828111610f4957610e9d81612242565b8015610edc57508673ffffffffffffffffffffffffffffffffffffffff16610ec4826113a0565b73ffffffffffffffffffffffffffffffffffffffff16145b15610f365780848381518110610f1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610f3290614599565b9250505b8080610f4190614599565b915050610e8d565b50829450505050505b919050565b600a81565b610f64612290565b73ffffffffffffffffffffffffffffffffffffffff16610f826115d2565b73ffffffffffffffffffffffffffffffffffffffff1614610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf906141bb565b60405180910390fd5b6000479050601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6110426127106110346106158661280590919063ffffffff16565b61281b90919063ffffffff16565b9081150290604051600060405180830381858888f1935050505061106557600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6110ca6127106110bc6106158661280590919063ffffffff16565b61281b90919063ffffffff16565b9081150290604051600060405180830381858888f193505050506110ed57600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6111526127106111446106158661280590919063ffffffff16565b61281b90919063ffffffff16565b9081150290604051600060405180830381858888f1935050505061117557600080fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6111da6127106111cc61030c8661280590919063ffffffff16565b61281b90919063ffffffff16565b9081150290604051600060405180830381858888f193505050506111fd57600080fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061125d57600080fd5b50565b61127b83838360405180602001604052806000815250611e99565b505050565b61128b816001612831565b50565b600061129982612242565b9050919050565b6112a8612290565b73ffffffffffffffffffffffffffffffffffffffff166112c66115d2565b73ffffffffffffffffffffffffffffffffffffffff161461131c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611313906141bb565b60405180910390fd5b6126a061133483600054612c2190919063ffffffff16565b111561133f57600080fd5b61012c61135e836113506009612c37565b612c2190919063ffffffff16565b111561136957600080fd5b60005b828110156113915761137e6009612c45565b808061138990614599565b91505061136c565b5061139c8183612c5b565b5050565b60006113ab82612c79565b600001519050919050565b601160009054906101000a900460ff1681565b600e6020528060005260406000206000915090505481565b6113e9612290565b73ffffffffffffffffffffffffffffffffffffffff166114076115d2565b73ffffffffffffffffffffffffffffffffffffffff161461145d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611454906141bb565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611552612290565b73ffffffffffffffffffffffffffffffffffffffff166115706115d2565b73ffffffffffffffffffffffffffffffffffffffff16146115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd906141bb565b60405180910390fd5b6115d06000612f08565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611604612290565b73ffffffffffffffffffffffffffffffffffffffff166116226115d2565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f906141bb565b60405180910390fd5b80600b8190555050565b60606003805461169190614536565b80601f01602080910402602001604051908101604052809291908181526020018280546116bd90614536565b801561170a5780601f106116df5761010080835404028352916020019161170a565b820191906000526020600020905b8154815290600101906020018083116116ed57829003601f168201915b5050505050905090565b61171c612290565b73ffffffffffffffffffffffffffffffffffffffff1661173a6115d2565b73ffffffffffffffffffffffffffffffffffffffff1614611790576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611787906141bb565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016117cb929190614053565b602060405180830381600087803b1580156117e557600080fd5b505af11580156117f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181d9190613b95565b505050565b6010805461182f90614536565b80601f016020809104026020016040519081016040528092919081815260200182805461185b90614536565b80156118a85780601f1061187d576101008083540402835291602001916118a8565b820191906000526020600020905b81548152906001019060200180831161188b57829003601f168201915b505050505081565b600b5481565b600a60009054906101000a900460ff16611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc9061415b565b60405180910390fd5b61012c6126a0611915919061443a565b61191f6009612c37565b61193483600054612c2190919063ffffffff16565b61193e919061443a565b111561197f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119769061411b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff163b146119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d0906141fb565b60405180910390fd5b600c546119f182600d54612c2190919063ffffffff16565b11611b81576003811115611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a31906140fb565b60405180910390fd5b60003414611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a74906140db565b60405180910390fd5b600681600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aca9190614359565b1115611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b029061417b565b60405180910390fd5b611b2081600d54612c2190919063ffffffff16565b600d8190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b759190614359565b92505081905550611c16565b600a811115611bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbc906141db565b60405180910390fd5b600b5481611bd391906143e0565b341015611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c9061419b565b60405180910390fd5b5b611c203382612c5b565b50565b611c2b612290565b73ffffffffffffffffffffffffffffffffffffffff16611c496115d2565b73ffffffffffffffffffffffffffffffffffffffff1614611c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c96906141bb565b60405180910390fd5b601160009054906101000a900460ff1615611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce69061421b565b60405180910390fd5b8060109080519060200190611d0592919061377c565b5050565b611d11612290565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d76576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d83612290565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e30612290565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e75919061409e565b60405180910390a35050565b600381565b600a60009054906101000a900460ff1681565b611ea484848461234f565b611ec38373ffffffffffffffffffffffffffffffffffffffff16612fce565b8015611ed85750611ed684848484612ff1565b155b15611f0f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611f2082612242565b611f56576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611f60613151565b9050600081511415611f815760405180602001604052806000815250611fac565b80611f8b846131e3565b604051602001611f9c929190613fc8565b6040516020818303038152906040525b915050919050565b611fbc612290565b73ffffffffffffffffffffffffffffffffffffffff16611fda6115d2565b73ffffffffffffffffffffffffffffffffffffffff1614612030576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612027906141bb565b60405180910390fd5b80600c8190555050565b600d5481565b6126a081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120e2612290565b73ffffffffffffffffffffffffffffffffffffffff166121006115d2565b73ffffffffffffffffffffffffffffffffffffffff1614612156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214d906141bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd9061413b565b60405180910390fd5b6121cf81612f08565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161224d61234a565b1115801561225c575060005482105b8015612289575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061235a82612c79565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123c5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166123e6612290565b73ffffffffffffffffffffffffffffffffffffffff16148061241557506124148561240f612290565b612046565b5b8061245a5750612423612290565b73ffffffffffffffffffffffffffffffffffffffff1661244284610aa7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612493576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124fa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125078585856001613390565b61251360008487612298565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561279357600054821461279257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127fe8585856001613396565b5050505050565b6000818361281391906143e0565b905092915050565b6000818361282991906143af565b905092915050565b600061283c83612c79565b9050600081600001519050821561291d5760008173ffffffffffffffffffffffffffffffffffffffff1661286e612290565b73ffffffffffffffffffffffffffffffffffffffff16148061289d575061289c82612897612290565b612046565b5b806128e257506128ab612290565b73ffffffffffffffffffffffffffffffffffffffff166128ca86610aa7565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061291b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b61292b816000866001613390565b61293760008583612298565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b9b576000548214612b9a57848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c09816000866001613396565b60016000815480929190600101919050555050505050565b60008183612c2f9190614359565b905092915050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612c7582826040518060200160405280600081525061339c565b5050565b612c81613802565b600082905080612c8f61234a565b11158015612c9e575060005481105b15612ed1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ecf57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612db3578092505050612f03565b5b600115612ece57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ec9578092505050612f03565b612db4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613017612290565b8786866040518563ffffffff1660e01b81526004016130399493929190614007565b602060405180830381600087803b15801561305357600080fd5b505af192505050801561308457506040513d601f19601f820116820180604052508101906130819190613be7565b60015b6130fe573d80600081146130b4576040519150601f19603f3d011682016040523d82523d6000602084013e6130b9565b606091505b506000815114156130f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461316090614536565b80601f016020809104026020016040519081016040528092919081815260200182805461318c90614536565b80156131d95780601f106131ae576101008083540402835291602001916131d9565b820191906000526020600020905b8154815290600101906020018083116131bc57829003601f168201915b5050505050905090565b6060600082141561322b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061338b565b600082905060005b6000821461325d57808061324690614599565b915050600a8261325691906143af565b9150613233565b60008167ffffffffffffffff81111561329f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132d15781602001600182028036833780820191505090505b5090505b60008514613384576001826132ea919061443a565b9150600a856132f991906145e2565b60306133059190614359565b60f81b818381518110613341577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561337d91906143af565b94506132d5565b8093505050505b919050565b50505050565b50505050565b6133a983838360016133ae565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561341b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613456576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134636000868387613390565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561362d575061362c8773ffffffffffffffffffffffffffffffffffffffff16612fce565b5b156136f3575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136a26000888480600101955088612ff1565b6136d8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156136335782600054146136ee57600080fd5b61375f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156136f4575b8160008190555050506137756000868387613396565b5050505050565b82805461378890614536565b90600052602060002090601f0160209004810192826137aa57600085556137f1565b82601f106137c357805160ff19168380011785556137f1565b828001600101855582156137f1579182015b828111156137f05782518255916020019190600101906137d5565b5b5090506137fe9190613845565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561385e576000816000905550600101613846565b5090565b60006138756138708461427b565b614256565b90508281526020810184848401111561388d57600080fd5b6138988482856144f4565b509392505050565b60006138b36138ae846142ac565b614256565b9050828152602081018484840111156138cb57600080fd5b6138d68482856144f4565b509392505050565b6000813590506138ed816148c9565b92915050565b600081359050613902816148e0565b92915050565b600081519050613917816148e0565b92915050565b60008135905061392c816148f7565b92915050565b600081519050613941816148f7565b92915050565b600082601f83011261395857600080fd5b8135613968848260208601613862565b91505092915050565b6000813590506139808161490e565b92915050565b600082601f83011261399757600080fd5b81356139a78482602086016138a0565b91505092915050565b6000813590506139bf81614925565b92915050565b6000602082840312156139d757600080fd5b60006139e5848285016138de565b91505092915050565b60008060408385031215613a0157600080fd5b6000613a0f858286016138de565b9250506020613a20858286016138de565b9150509250929050565b600080600060608486031215613a3f57600080fd5b6000613a4d868287016138de565b9350506020613a5e868287016138de565b9250506040613a6f868287016139b0565b9150509250925092565b60008060008060808587031215613a8f57600080fd5b6000613a9d878288016138de565b9450506020613aae878288016138de565b9350506040613abf878288016139b0565b925050606085013567ffffffffffffffff811115613adc57600080fd5b613ae887828801613947565b91505092959194509250565b60008060408385031215613b0757600080fd5b6000613b15858286016138de565b9250506020613b26858286016138f3565b9150509250929050565b60008060408385031215613b4357600080fd5b6000613b51858286016138de565b9250506020613b62858286016139b0565b9150509250929050565b600060208284031215613b7e57600080fd5b6000613b8c848285016138f3565b91505092915050565b600060208284031215613ba757600080fd5b6000613bb584828501613908565b91505092915050565b600060208284031215613bd057600080fd5b6000613bde8482850161391d565b91505092915050565b600060208284031215613bf957600080fd5b6000613c0784828501613932565b91505092915050565b60008060408385031215613c2357600080fd5b6000613c3185828601613971565b9250506020613c42858286016139b0565b9150509250929050565b600060208284031215613c5e57600080fd5b600082013567ffffffffffffffff811115613c7857600080fd5b613c8484828501613986565b91505092915050565b600060208284031215613c9f57600080fd5b6000613cad848285016139b0565b91505092915050565b60008060408385031215613cc957600080fd5b6000613cd7858286016139b0565b9250506020613ce8858286016138de565b9150509250929050565b6000613cfe8383613faa565b60208301905092915050565b613d138161446e565b82525050565b6000613d24826142ed565b613d2e818561431b565b9350613d39836142dd565b8060005b83811015613d6a578151613d518882613cf2565b9750613d5c8361430e565b925050600181019050613d3d565b5085935050505092915050565b613d8081614480565b82525050565b6000613d91826142f8565b613d9b818561432c565b9350613dab818560208601614503565b613db4816146cf565b840191505092915050565b6000613dca82614303565b613dd4818561433d565b9350613de4818560208601614503565b613ded816146cf565b840191505092915050565b6000613e0382614303565b613e0d818561434e565b9350613e1d818560208601614503565b80840191505092915050565b6000613e36600f8361433d565b9150613e41826146e0565b602082019050919050565b6000613e5960158361433d565b9150613e6482614709565b602082019050919050565b6000613e7c60088361433d565b9150613e8782614732565b602082019050919050565b6000613e9f60268361433d565b9150613eaa8261475b565b604082019050919050565b6000613ec2600b8361433d565b9150613ecd826147aa565b602082019050919050565b6000613ee560118361433d565b9150613ef0826147d3565b602082019050919050565b6000613f08600d8361433d565b9150613f13826147fc565b602082019050919050565b6000613f2b60208361433d565b9150613f3682614825565b602082019050919050565b6000613f4e60168361433d565b9150613f598261484e565b602082019050919050565b6000613f7160018361433d565b9150613f7c82614877565b602082019050919050565b6000613f94601c8361433d565b9150613f9f826148a0565b602082019050919050565b613fb3816144ea565b82525050565b613fc2816144ea565b82525050565b6000613fd48285613df8565b9150613fe08284613df8565b91508190509392505050565b60006020820190506140016000830184613d0a565b92915050565b600060808201905061401c6000830187613d0a565b6140296020830186613d0a565b6140366040830185613fb9565b81810360608301526140488184613d86565b905095945050505050565b60006040820190506140686000830185613d0a565b6140756020830184613fb9565b9392505050565b600060208201905081810360008301526140968184613d19565b905092915050565b60006020820190506140b36000830184613d77565b92915050565b600060208201905081810360008301526140d38184613dbf565b905092915050565b600060208201905081810360008301526140f481613e29565b9050919050565b6000602082019050818103600083015261411481613e4c565b9050919050565b6000602082019050818103600083015261413481613e6f565b9050919050565b6000602082019050818103600083015261415481613e92565b9050919050565b6000602082019050818103600083015261417481613eb5565b9050919050565b6000602082019050818103600083015261419481613ed8565b9050919050565b600060208201905081810360008301526141b481613efb565b9050919050565b600060208201905081810360008301526141d481613f1e565b9050919050565b600060208201905081810360008301526141f481613f41565b9050919050565b6000602082019050818103600083015261421481613f64565b9050919050565b6000602082019050818103600083015261423481613f87565b9050919050565b60006020820190506142506000830184613fb9565b92915050565b6000614260614271565b905061426c8282614568565b919050565b6000604051905090565b600067ffffffffffffffff821115614296576142956146a0565b5b61429f826146cf565b9050602081019050919050565b600067ffffffffffffffff8211156142c7576142c66146a0565b5b6142d0826146cf565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614364826144ea565b915061436f836144ea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143a4576143a3614613565b5b828201905092915050565b60006143ba826144ea565b91506143c5836144ea565b9250826143d5576143d4614642565b5b828204905092915050565b60006143eb826144ea565b91506143f6836144ea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561442f5761442e614613565b5b828202905092915050565b6000614445826144ea565b9150614450836144ea565b92508282101561446357614462614613565b5b828203905092915050565b6000614479826144ca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006144c38261446e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614521578082015181840152602081019050614506565b83811115614530576000848401525b50505050565b6000600282049050600182168061454e57607f821691505b6020821081141561456257614561614671565b5b50919050565b614571826146cf565b810181811067ffffffffffffffff821117156145905761458f6146a0565b5b80604052505050565b60006145a4826144ea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145d7576145d6614613565b5b600182019050919050565b60006145ed826144ea565b91506145f8836144ea565b92508261460857614607614642565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f204554482072657175697265640000000000000000000000000000000000600082015250565b7f4d6178203320706572207472616e73616374696f6e0000000000000000000000600082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53414c4520504155534544000000000000000000000000000000000000000000600082015250565b7f4d61782036207065722061646472657373000000000000000000000000000000600082015250565b7f56616c756520746f6f206c6f7700000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d617820313020706572207472616e73616374696f6e00000000000000000000600082015250565b7f5f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f436f6e7472616374206d757374206e6f74206265207365616c65642e00000000600082015250565b6148d28161446e565b81146148dd57600080fd5b50565b6148e981614480565b81146148f457600080fd5b50565b6149008161448c565b811461490b57600080fd5b50565b614917816144b8565b811461492257600080fd5b50565b61492e816144ea565b811461493957600080fd5b5056fea2646970667358221220be622398311b84b1fe43968532aadcd65171633236f61c799f1fbed2fb364fad64736f6c63430008040033

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.