ETH Price: $3,483.29 (+3.61%)
Gas: 2 Gwei

Token

PPADealers (DLR)
 

Overview

Max Total Supply

10,000 DLR

Holders

2,701

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 DLR
0xf1598b6dccacd5b35c92c5fa16ca8f3fd8ddab51
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Dealers are a PFP avatar collection of NFT within the DealerVerse with a max supply of 10,000.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PPADealers

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

contract PPADealers is ERC721A, Ownable {
    using ECDSA for bytes32;
    string private _name = "PPADealers";
    string private _symbol = "DLR";

    string private _customBaseUri =
        "https://assets.jointheppa.com/dealers/metadata/";
    string private _contractUri =
        "https://assets.jointheppa.com/dealers/metadata/contract.json";

    uint256 public MAX_SUPPLY = 10000;
    address public signerAddress;

    mapping(address => bool) public mintedInSale1;
    mapping(address => uint256) public numMintedInSale2;
    mapping(address => uint256) public numMintedInSale3;

    uint256 public publicPriceWei;

    uint256 public constant MAX_PRESALE_MINTS = 500;

    // Sale states:
    // 0: Closed
    // 1: WL minting in presale (max 1 per address)
    // 2: Public minting in (max 5 per address)
    // 3: Shuttlepass holder minting
    // 4: Open to Public, purchase with ETH, no max.
    uint256 public saleState = 0;

    address public stakingAddress;

    constructor() ERC721A(_name, _symbol) {}

    // WL mint, max 1 per address.
    function whitelistMint(
        bytes memory signature // Signed by signerAddress.
    ) public payable {
        require(saleState == 1, "Whitelist mint not open");
        _requireWithinSupply(1, MAX_PRESALE_MINTS);
        require(!mintedInSale1[msg.sender], "Already minted in whitelist sale");
        require(isValidSignature(msg.sender, 1, 1, signature), "Invalid signature");
        mintedInSale1[msg.sender] = true;
        _checkPayment(1);
        _safeMint(msg.sender, 1);
    }

    // Public minting before main sale, max 5 per address.
    function publicEarlyMint(uint256 amount) public payable {
        require(saleState == 2, "Public early mint not open");
        _requireWithinSupply(amount, MAX_PRESALE_MINTS);
        numMintedInSale2[msg.sender] += amount;
        require(
            numMintedInSale2[msg.sender] <= 5,
            "Cannot mint more than 5 total in public pre-sale"
        );
        _checkPayment(amount);
        _safeMint(msg.sender, amount);
    }

    // Minting for shuttlepass holders. Number of mints allowed is determined by how many shuttlepassees they own.
    function shuttlepassMint(
        uint256 amount,
        uint256 totalMintsAllowed,
        bytes memory signature
    ) public {
        require(saleState == 3, "Shuttlepass minting not open");
        _requireWithinSupply(amount, MAX_SUPPLY);
        numMintedInSale3[msg.sender] += amount;
        require(
            numMintedInSale3[msg.sender] <= totalMintsAllowed,
            "Not authorized for this many mints"
        );
        require(
            isValidSignature(msg.sender, totalMintsAllowed, 3, signature),
            "Invalid Signature"
        );

        _safeMint(msg.sender, amount);
    }

    // Public mint (if needed), open to all with no limits.
    function publicMint(uint256 amount) public payable {
        require(saleState == 4, "Public mint not open");
        _requireWithinSupply(amount, MAX_SUPPLY);
        _checkPayment(amount);
        _safeMint(msg.sender, amount);
    }

    function _checkPayment(uint256 numMinted) internal {
        uint256 amountRequired = publicPriceWei * numMinted;
        require(msg.value >= amountRequired, "Not enough funds sent");
    }

    function isValidSignature(
        address addr,
        uint256 totalMintsAllowed,
        uint256 targetSaleState,
        bytes memory signature
    ) public view returns (bool) {
        bytes32 inputHash = keccak256(
            abi.encodePacked(addr, totalMintsAllowed, targetSaleState)
        );
        bytes32 ethSignedMessageHash = inputHash.toEthSignedMessageHash();
        address recoveredAddress = ethSignedMessageHash.recover(signature);
        return recoveredAddress == signerAddress;
    }

    function _requireWithinSupply(uint256 numToMint, uint256 supply) internal view {
        require(
            totalSupply() + numToMint <= supply,
            "minting would exceed allowed supply for this sale phase"
        );
    }

    function ownerMint(uint256 numToMint) public onlyOwner {
        _requireWithinSupply(numToMint, MAX_SUPPLY);
        _safeMint(msg.sender, numToMint);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _customBaseUri;
    }

    function contractURI() public view returns (string memory) {
        return _contractUri;
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        return
            operator == stakingAddress || // NOTE: the staking address is approved to move dealers.
            OpenSeaGasFreeListing.isApprovedForAll(owner, operator) ||
            super.isApprovedForAll(owner, operator);
    }

    function setSalePrice(uint256 newPriceWei) public onlyOwner {
        publicPriceWei = newPriceWei;
    }

    function setSaleState(uint256 newState) public onlyOwner {
        require(newState >= 0 && newState <= 4, "Invalid state");
        saleState = newState;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function setBaseURI(string calldata newURI) public onlyOwner {
        _customBaseUri = newURI;
    }

    function setContractUri(string calldata newUri) public onlyOwner {
        _contractUri = newUri;
    }

    function setSignerAddress(address newAddress) public onlyOwner {
        signerAddress = newAddress;
    }

    function setStakingAddress(address _stakingAddress) public onlyOwner {
        stakingAddress = _stakingAddress;
    }
}

library OpenSeaGasFreeListing {
    /**
    @notice Returns whether the operator is an OpenSea proxy for the owner, thus
    allowing it to list without the token owner paying gas.
    @dev ERC{721,1155}.isApprovedForAll should be overriden to also check if
    this function returns true.
     */
    function isApprovedForAll(address owner, address operator)
        internal
        view
        returns (bool)
    {
        ProxyRegistry registry;
        assembly {
            switch chainid()
            case 1 {
                // mainnet
                registry := 0xa5409ec958c83c3f309868babaca7c86dcb077c1
            }
            case 4 {
                // rinkeby
                registry := 0xf57b2c51ded3a29e6891aba85459d600256cf317
            }
        }

        return
            address(registry) != address(0) &&
            address(registry.proxies(owner)) == operator;
    }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

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

pragma solidity ^0.8.0;

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/token/ERC721/extensions/IERC721Enumerable.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';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        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);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, 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;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

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

    /**
     * @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 address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            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('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

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

pragma solidity ^0.8.0;

import "../Strings.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 13 : 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 10 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 11 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":[],"name":"MAX_PRESALE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"totalMintsAllowed","type":"uint256"},{"internalType":"uint256","name":"targetSaleState","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"isValidSignature","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedInSale1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numMintedInSale2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numMintedInSale3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numToMint","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicEarlyMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPriceWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"saleState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"setContractUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPriceWei","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newState","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakingAddress","type":"address"}],"name":"setStakingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"totalMintsAllowed","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"shuttlepassMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600080556040518060400160405280600a81526020017f5050414465616c6572730000000000000000000000000000000000000000000081525060089080519060200190620000559291906200036f565b506040518060400160405280600381526020017f444c52000000000000000000000000000000000000000000000000000000000081525060099080519060200190620000a39291906200036f565b506040518060600160405280602f81526020016200600d602f9139600a9080519060200190620000d59291906200036f565b506040518060600160405280603c81526020016200603c603c9139600b9080519060200190620001079291906200036f565b50612710600c5560006012553480156200012057600080fd5b506008805462000130906200041f565b80601f01602080910402602001604051908101604052809291908181526020018280546200015e906200041f565b8015620001af5780601f106200018357610100808354040283529160200191620001af565b820191906000526020600020905b8154815290600101906020018083116200019157829003601f168201915b505050505060098054620001c3906200041f565b80601f0160208091040260200160405190810160405280929190818152602001828054620001f1906200041f565b8015620002425780601f10620002165761010080835404028352916020019162000242565b820191906000526020600020905b8154815290600101906020018083116200022457829003601f168201915b505050505081600190805190602001906200025f9291906200036f565b508060029080519060200190620002789291906200036f565b5050506200029b6200028f620002a160201b60201c565b620002a960201b60201c565b62000484565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200037d906200041f565b90600052602060002090601f016020900481019282620003a15760008555620003ed565b82601f10620003bc57805160ff1916838001178555620003ed565b82800160010185558215620003ed579182015b82811115620003ec578251825591602001919060010190620003cf565b5b509050620003fc919062000400565b5090565b5b808211156200041b57600081600090555060010162000401565b5090565b600060028204905060018216806200043857607f821691505b602082108114156200044f576200044e62000455565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615b7980620004946000396000f3fe6080604052600436106102515760003560e01c8063603f4d5211610139578063a22cb465116100b6578063d7b4be241161007a578063d7b4be24146108bd578063e8a3d485146108e8578063e985e9c514610913578063f19e75d414610950578063f2fde38b14610979578063f4e0d9ac146109a257610251565b8063a22cb465146107c8578063b13c98dc146107f1578063b88d4fde1461082e578063c87b56dd14610857578063ccb4807b1461089457610251565b80638cd35de8116100fd5780638cd35de8146107025780638da5cb5b1461071e5780639208383a146107495780639244caea1461077457806395d89b411461079d57610251565b8063603f4d52146106095780636352211e1461063457806368b962ae1461067157806370a08231146106ae578063715018a6146106eb57610251565b80632f745c59116101d25780634640fc40116101965780634640fc40146104d35780634f6ccce71461051057806352f1f7311461054d57806355f804b31461058a5780635b7633d0146105b35780635d463810146105de57610251565b80632f745c591461040f57806332cb6b0c1461044c57806337bc4c0b146104775780633ccfd60b1461049357806342842e0e146104aa57610251565b8063095ea7b311610219578063095ea7b31461034d57806318160ddd146103765780631919fed7146103a157806323b872dd146103ca5780632db11544146103f357610251565b806301ffc9a714610256578063046dc1661461029357806306fdde03146102bc578063081812fc146102e7578063084c408814610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613ea7565b6109cb565b60405161028a919061476d565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613c61565b610b15565b005b3480156102c857600080fd5b506102d1610bd5565b6040516102de91906147cd565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190613fc4565b610c67565b60405161031b9190614706565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613fc4565b610cec565b005b34801561035957600080fd5b50610374600480360381019061036f9190613de4565b610dc3565b005b34801561038257600080fd5b5061038b610edc565b6040516103989190614c4f565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190613fc4565b610ee5565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190613cce565b610f6b565b005b61040d60048036038101906104089190613fc4565b610f7b565b005b34801561041b57600080fd5b5061043660048036038101906104319190613de4565b610fe2565b6040516104439190614c4f565b60405180910390f35b34801561045857600080fd5b506104616111e0565b60405161046e9190614c4f565b60405180910390f35b610491600480360381019061048c9190613f01565b6111e6565b005b34801561049f57600080fd5b506104a8611381565b005b3480156104b657600080fd5b506104d160048036038101906104cc9190613cce565b61144c565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190613c61565b61146c565b604051610507919061476d565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190613fc4565b61148c565b6040516105449190614c4f565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190613c61565b6114df565b6040516105819190614c4f565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613f77565b6114f7565b005b3480156105bf57600080fd5b506105c8611589565b6040516105d59190614706565b60405180910390f35b3480156105ea57600080fd5b506105f36115af565b6040516106009190614c4f565b60405180910390f35b34801561061557600080fd5b5061061e6115b5565b60405161062b9190614c4f565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613fc4565b6115bb565b6040516106689190614706565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190613e24565b6115d1565b6040516106a5919061476d565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190613c61565b611683565b6040516106e29190614c4f565b60405180910390f35b3480156106f757600080fd5b5061070061176c565b005b61071c60048036038101906107179190613fc4565b6117f4565b005b34801561072a57600080fd5b50610733611934565b6040516107409190614706565b60405180910390f35b34801561075557600080fd5b5061075e61195e565b60405161076b9190614c4f565b60405180910390f35b34801561078057600080fd5b5061079b60048036038101906107969190613ff1565b611964565b005b3480156107a957600080fd5b506107b2611ae8565b6040516107bf91906147cd565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613da4565b611b7a565b005b3480156107fd57600080fd5b5061081860048036038101906108139190613c61565b611cfb565b6040516108259190614c4f565b60405180910390f35b34801561083a57600080fd5b5061085560048036038101906108509190613d21565b611d13565b005b34801561086357600080fd5b5061087e60048036038101906108799190613fc4565b611d6f565b60405161088b91906147cd565b60405180910390f35b3480156108a057600080fd5b506108bb60048036038101906108b69190613f77565b611e16565b005b3480156108c957600080fd5b506108d2611ea8565b6040516108df9190614706565b60405180910390f35b3480156108f457600080fd5b506108fd611ece565b60405161090a91906147cd565b60405180910390f35b34801561091f57600080fd5b5061093a60048036038101906109359190613c8e565b611f60565b604051610947919061476d565b60405180910390f35b34801561095c57600080fd5b5061097760048036038101906109729190613fc4565b611fdd565b005b34801561098557600080fd5b506109a0600480360381019061099b9190613c61565b612072565b005b3480156109ae57600080fd5b506109c960048036038101906109c49190613c61565b61216a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a9657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610afe57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b0e5750610b0d8261222a565b5b9050919050565b610b1d612294565b73ffffffffffffffffffffffffffffffffffffffff16610b3b611934565b73ffffffffffffffffffffffffffffffffffffffff1614610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890614aaf565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060018054610be490614f83565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1090614f83565b8015610c5d5780601f10610c3257610100808354040283529160200191610c5d565b820191906000526020600020905b815481529060010190602001808311610c4057829003601f168201915b5050505050905090565b6000610c728261229c565b610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890614c0f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610cf4612294565b73ffffffffffffffffffffffffffffffffffffffff16610d12611934565b73ffffffffffffffffffffffffffffffffffffffff1614610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f90614aaf565b60405180910390fd5b60008110158015610d7a575060048111155b610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090614a6f565b60405180910390fd5b8060128190555050565b6000610dce826115bb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690614b4f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e5e612294565b73ffffffffffffffffffffffffffffffffffffffff161480610e8d5750610e8c81610e87612294565b611f60565b5b610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec3906149cf565b60405180910390fd5b610ed78383836122a9565b505050565b60008054905090565b610eed612294565b73ffffffffffffffffffffffffffffffffffffffff16610f0b611934565b73ffffffffffffffffffffffffffffffffffffffff1614610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890614aaf565b60405180910390fd5b8060118190555050565b610f7683838361235b565b505050565b600460125414610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb79061496f565b60405180910390fd5b610fcc81600c54612902565b610fd58161295b565b610fdf33826129b4565b50565b6000610fed83611683565b821061102e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110259061480f565b60405180910390fd5b6000611038610edc565b905060008060005b8381101561119e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461113257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561118a578684141561117b5781955050505050506111da565b838061118690614fe6565b9450505b50808061119690614fe6565b915050611040565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190614bef565b60405180910390fd5b92915050565b600c5481565b60016012541461122b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112229061482f565b60405180910390fd5b61123860016101f4612902565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90614a2f565b60405180910390fd5b6112d233600180846115d1565b611311576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113089061498f565b60405180910390fd5b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611373600161295b565b61137e3360016129b4565b50565b611389612294565b73ffffffffffffffffffffffffffffffffffffffff166113a7611934565b73ffffffffffffffffffffffffffffffffffffffff16146113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f490614aaf565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611448573d6000803e3d6000fd5b5050565b61146783838360405180602001604052806000815250611d13565b505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000611496610edc565b82106114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce9061492f565b60405180910390fd5b819050919050565b60106020528060005260406000206000915090505481565b6114ff612294565b73ffffffffffffffffffffffffffffffffffffffff1661151d611934565b73ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a90614aaf565b60405180910390fd5b8181600a9190611584929190613a40565b505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b60125481565b60006115c6826129d2565b600001519050919050565b6000808585856040516020016115e99392919061467f565b604051602081830303815290604052805190602001209050600061160c82612b2d565b905060006116238583612b5d90919063ffffffff16565b9050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16149350505050949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb906149ef565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611774612294565b73ffffffffffffffffffffffffffffffffffffffff16611792611934565b73ffffffffffffffffffffffffffffffffffffffff16146117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90614aaf565b60405180910390fd5b6117f26000612b84565b565b600260125414611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183090614b0f565b60405180910390fd5b611845816101f4612902565b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118949190614d49565b925050819055506005600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561191e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119159061490f565b60405180910390fd5b6119278161295b565b61193133826129b4565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6101f481565b6003601254146119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a09061484f565b60405180910390fd5b6119b583600c54612902565b82601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a049190614d49565b9250508190555081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8490614c2f565b60405180910390fd5b611a9a33836003846115d1565b611ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad090614a8f565b60405180910390fd5b611ae333846129b4565b505050565b606060028054611af790614f83565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2390614f83565b8015611b705780601f10611b4557610100808354040283529160200191611b70565b820191906000526020600020905b815481529060010190602001808311611b5357829003601f168201915b5050505050905090565b611b82612294565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be790614aef565b60405180910390fd5b8060066000611bfd612294565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611caa612294565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cef919061476d565b60405180910390a35050565b600f6020528060005260406000206000915090505481565b611d1e84848461235b565b611d2a84848484612c4a565b611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6090614b8f565b60405180910390fd5b50505050565b6060611d7a8261229c565b611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db090614acf565b60405180910390fd5b6000611dc3612de1565b90506000815111611de35760405180602001604052806000815250611e0e565b80611ded84612e73565b604051602001611dfe9291906146bc565b6040516020818303038152906040525b915050919050565b611e1e612294565b73ffffffffffffffffffffffffffffffffffffffff16611e3c611934565b73ffffffffffffffffffffffffffffffffffffffff1614611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990614aaf565b60405180910390fd5b8181600b9190611ea3929190613a40565b505050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600b8054611edd90614f83565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0990614f83565b8015611f565780601f10611f2b57610100808354040283529160200191611f56565b820191906000526020600020905b815481529060010190602001808311611f3957829003601f168201915b5050505050905090565b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480611fc45750611fc38383612fd4565b5b80611fd55750611fd4838361311b565b5b905092915050565b611fe5612294565b73ffffffffffffffffffffffffffffffffffffffff16612003611934565b73ffffffffffffffffffffffffffffffffffffffff1614612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614aaf565b60405180910390fd5b61206581600c54612902565b61206f33826129b4565b50565b61207a612294565b73ffffffffffffffffffffffffffffffffffffffff16612098611934565b73ffffffffffffffffffffffffffffffffffffffff16146120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e590614aaf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561215e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612155906148cf565b60405180910390fd5b61216781612b84565b50565b612172612294565b73ffffffffffffffffffffffffffffffffffffffff16612190611934565b73ffffffffffffffffffffffffffffffffffffffff16146121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd90614aaf565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612366826129d2565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661238d612294565b73ffffffffffffffffffffffffffffffffffffffff1614806123e957506123b2612294565b73ffffffffffffffffffffffffffffffffffffffff166123d184610c67565b73ffffffffffffffffffffffffffffffffffffffff16145b80612405575061240482600001516123ff612294565b611f60565b5b905080612447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243e90614b2f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146124b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b090614a4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612529576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125209061494f565b60405180910390fd5b61253685858560016131af565b61254660008484600001516122a9565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461274c9190614d49565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612892576127c28161229c565b15612891576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128fa86868660016131b5565b505050505050565b808261290c610edc565b6129169190614d49565b1115612957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294e906148af565b60405180910390fd5b5050565b60008160115461296b9190614dd0565b9050803410156129b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a79061488f565b60405180910390fd5b5050565b6129ce8282604051806020016040528060008152506131bb565b5050565b6129da613ac6565b6129e38261229c565b612a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a19906148ef565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b14578092505050612b28565b508080612b2090614f59565b915050612a28565b919050565b600081604051602001612b4091906146e0565b604051602081830303815290604052805190602001209050919050565b6000806000612b6c858561367a565b91509150612b79816136fd565b819250505092915050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612c6b8473ffffffffffffffffffffffffffffffffffffffff166138d2565b15612dd4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c94612294565b8786866040518563ffffffff1660e01b8152600401612cb69493929190614721565b602060405180830381600087803b158015612cd057600080fd5b505af1925050508015612d0157506040513d601f19601f82011682018060405250810190612cfe9190613ed4565b60015b612d84573d8060008114612d31576040519150601f19603f3d011682016040523d82523d6000602084013e612d36565b606091505b50600081511415612d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7390614b8f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dd9565b600190505b949350505050565b6060600a8054612df090614f83565b80601f0160208091040260200160405190810160405280929190818152602001828054612e1c90614f83565b8015612e695780601f10612e3e57610100808354040283529160200191612e69565b820191906000526020600020905b815481529060010190602001808311612e4c57829003601f168201915b5050505050905090565b60606000821415612ebb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fcf565b600082905060005b60008214612eed578080612ed690614fe6565b915050600a82612ee69190614d9f565b9150612ec3565b60008167ffffffffffffffff811115612f0957612f08615183565b5b6040519080825280601f01601f191660200182016040528015612f3b5781602001600182028036833780820191505090505b5090505b60008514612fc857600182612f549190614e2a565b9150600a85612f639190615067565b6030612f6f9190614d49565b60f81b818381518110612f8557612f84615154565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fc19190614d9f565b9450612f3f565b8093505050505b919050565b6000804660018114612fed576004811461300957613021565b73a5409ec958c83c3f309868babaca7c86dcb077c19150613021565b73f57b2c51ded3a29e6891aba85459d600256cf31791505b50600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415801561311257508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016130aa9190614706565b60206040518083038186803b1580156130c257600080fd5b505afa1580156130d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130fa9190613f4a565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322890614bcf565b60405180910390fd5b61323a8161229c565b1561327a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327190614baf565b60405180910390fd5b600083116132bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b490614b6f565b60405180910390fd5b6132ca60008583866131af565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516133c79190614d03565b6fffffffffffffffffffffffffffffffff1681526020018583602001516133ee9190614d03565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561365d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135fd6000888488612c4a565b61363c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363390614b8f565b60405180910390fd5b818061364790614fe6565b925050808061365590614fe6565b91505061358c565b508060008190555061367260008785886131b5565b505050505050565b6000806041835114156136bc5760008060006020860151925060408601519150606086015160001a90506136b0878285856138e5565b945094505050506136f6565b6040835114156136ed5760008060208501519150604085015190506136e28683836139f2565b9350935050506136f6565b60006002915091505b9250929050565b60006004811115613711576137106150f6565b5b816004811115613724576137236150f6565b5b141561372f576138cf565b60016004811115613743576137426150f6565b5b816004811115613756576137556150f6565b5b1415613797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378e906147ef565b60405180910390fd5b600260048111156137ab576137aa6150f6565b5b8160048111156137be576137bd6150f6565b5b14156137ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f69061486f565b60405180910390fd5b60036004811115613813576138126150f6565b5b816004811115613826576138256150f6565b5b1415613867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385e906149af565b60405180910390fd5b60048081111561387a576138796150f6565b5b81600481111561388d5761388c6150f6565b5b14156138ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138c590614a0f565b60405180910390fd5b5b50565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156139205760006003915091506139e9565b601b8560ff16141580156139385750601c8560ff1614155b1561394a5760006004915091506139e9565b60006001878787876040516000815260200160405260405161396f9493929190614788565b6020604051602081039080840390855afa158015613991573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156139e0576000600192509250506139e9565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613a32878288856138e5565b935093505050935093915050565b828054613a4c90614f83565b90600052602060002090601f016020900481019282613a6e5760008555613ab5565b82601f10613a8757803560ff1916838001178555613ab5565b82800160010185558215613ab5579182015b82811115613ab4578235825591602001919060010190613a99565b5b509050613ac29190613b00565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b19576000816000905550600101613b01565b5090565b6000613b30613b2b84614c8f565b614c6a565b905082815260208101848484011115613b4c57613b4b6151c1565b5b613b57848285614f17565b509392505050565b600081359050613b6e81615ad0565b92915050565b600081359050613b8381615ae7565b92915050565b600081359050613b9881615afe565b92915050565b600081519050613bad81615afe565b92915050565b600082601f830112613bc857613bc76151b7565b5b8135613bd8848260208601613b1d565b91505092915050565b600081519050613bf081615b15565b92915050565b60008083601f840112613c0c57613c0b6151b7565b5b8235905067ffffffffffffffff811115613c2957613c286151b2565b5b602083019150836001820283011115613c4557613c446151bc565b5b9250929050565b600081359050613c5b81615b2c565b92915050565b600060208284031215613c7757613c766151cb565b5b6000613c8584828501613b5f565b91505092915050565b60008060408385031215613ca557613ca46151cb565b5b6000613cb385828601613b5f565b9250506020613cc485828601613b5f565b9150509250929050565b600080600060608486031215613ce757613ce66151cb565b5b6000613cf586828701613b5f565b9350506020613d0686828701613b5f565b9250506040613d1786828701613c4c565b9150509250925092565b60008060008060808587031215613d3b57613d3a6151cb565b5b6000613d4987828801613b5f565b9450506020613d5a87828801613b5f565b9350506040613d6b87828801613c4c565b925050606085013567ffffffffffffffff811115613d8c57613d8b6151c6565b5b613d9887828801613bb3565b91505092959194509250565b60008060408385031215613dbb57613dba6151cb565b5b6000613dc985828601613b5f565b9250506020613dda85828601613b74565b9150509250929050565b60008060408385031215613dfb57613dfa6151cb565b5b6000613e0985828601613b5f565b9250506020613e1a85828601613c4c565b9150509250929050565b60008060008060808587031215613e3e57613e3d6151cb565b5b6000613e4c87828801613b5f565b9450506020613e5d87828801613c4c565b9350506040613e6e87828801613c4c565b925050606085013567ffffffffffffffff811115613e8f57613e8e6151c6565b5b613e9b87828801613bb3565b91505092959194509250565b600060208284031215613ebd57613ebc6151cb565b5b6000613ecb84828501613b89565b91505092915050565b600060208284031215613eea57613ee96151cb565b5b6000613ef884828501613b9e565b91505092915050565b600060208284031215613f1757613f166151cb565b5b600082013567ffffffffffffffff811115613f3557613f346151c6565b5b613f4184828501613bb3565b91505092915050565b600060208284031215613f6057613f5f6151cb565b5b6000613f6e84828501613be1565b91505092915050565b60008060208385031215613f8e57613f8d6151cb565b5b600083013567ffffffffffffffff811115613fac57613fab6151c6565b5b613fb885828601613bf6565b92509250509250929050565b600060208284031215613fda57613fd96151cb565b5b6000613fe884828501613c4c565b91505092915050565b60008060006060848603121561400a576140096151cb565b5b600061401886828701613c4c565b935050602061402986828701613c4c565b925050604084013567ffffffffffffffff81111561404a576140496151c6565b5b61405686828701613bb3565b9150509250925092565b61406981614e5e565b82525050565b61408061407b82614e5e565b61502f565b82525050565b61408f81614e70565b82525050565b61409e81614e7c565b82525050565b6140b56140b082614e7c565b615041565b82525050565b60006140c682614cc0565b6140d08185614cd6565b93506140e0818560208601614f26565b6140e9816151d0565b840191505092915050565b60006140ff82614ccb565b6141098185614ce7565b9350614119818560208601614f26565b614122816151d0565b840191505092915050565b600061413882614ccb565b6141428185614cf8565b9350614152818560208601614f26565b80840191505092915050565b600061416b601883614ce7565b9150614176826151ee565b602082019050919050565b600061418e602283614ce7565b915061419982615217565b604082019050919050565b60006141b1601783614ce7565b91506141bc82615266565b602082019050919050565b60006141d4601c83614ce7565b91506141df8261528f565b602082019050919050565b60006141f7601f83614ce7565b9150614202826152b8565b602082019050919050565b600061421a601c83614cf8565b9150614225826152e1565b601c82019050919050565b600061423d601583614ce7565b91506142488261530a565b602082019050919050565b6000614260603783614ce7565b915061426b82615333565b604082019050919050565b6000614283602683614ce7565b915061428e82615382565b604082019050919050565b60006142a6602a83614ce7565b91506142b1826153d1565b604082019050919050565b60006142c9603083614ce7565b91506142d482615420565b604082019050919050565b60006142ec602383614ce7565b91506142f78261546f565b604082019050919050565b600061430f602583614ce7565b915061431a826154be565b604082019050919050565b6000614332601483614ce7565b915061433d8261550d565b602082019050919050565b6000614355601183614ce7565b915061436082615536565b602082019050919050565b6000614378602283614ce7565b91506143838261555f565b604082019050919050565b600061439b603983614ce7565b91506143a6826155ae565b604082019050919050565b60006143be602b83614ce7565b91506143c9826155fd565b604082019050919050565b60006143e1602283614ce7565b91506143ec8261564c565b604082019050919050565b6000614404602083614ce7565b915061440f8261569b565b602082019050919050565b6000614427602683614ce7565b9150614432826156c4565b604082019050919050565b600061444a600d83614ce7565b915061445582615713565b602082019050919050565b600061446d601183614ce7565b91506144788261573c565b602082019050919050565b6000614490602083614ce7565b915061449b82615765565b602082019050919050565b60006144b3602f83614ce7565b91506144be8261578e565b604082019050919050565b60006144d6601a83614ce7565b91506144e1826157dd565b602082019050919050565b60006144f9601a83614ce7565b915061450482615806565b602082019050919050565b600061451c603283614ce7565b91506145278261582f565b604082019050919050565b600061453f602283614ce7565b915061454a8261587e565b604082019050919050565b6000614562602383614ce7565b915061456d826158cd565b604082019050919050565b6000614585603383614ce7565b91506145908261591c565b604082019050919050565b60006145a8601d83614ce7565b91506145b38261596b565b602082019050919050565b60006145cb602183614ce7565b91506145d682615994565b604082019050919050565b60006145ee602e83614ce7565b91506145f9826159e3565b604082019050919050565b6000614611602d83614ce7565b915061461c82615a32565b604082019050919050565b6000614634602283614ce7565b915061463f82615a81565b604082019050919050565b61465381614f00565b82525050565b61466a61466582614f00565b61505d565b82525050565b61467981614f0a565b82525050565b600061468b828661406f565b60148201915061469b8285614659565b6020820191506146ab8284614659565b602082019150819050949350505050565b60006146c8828561412d565b91506146d4828461412d565b91508190509392505050565b60006146eb8261420d565b91506146f782846140a4565b60208201915081905092915050565b600060208201905061471b6000830184614060565b92915050565b60006080820190506147366000830187614060565b6147436020830186614060565b614750604083018561464a565b818103606083015261476281846140bb565b905095945050505050565b60006020820190506147826000830184614086565b92915050565b600060808201905061479d6000830187614095565b6147aa6020830186614670565b6147b76040830185614095565b6147c46060830184614095565b95945050505050565b600060208201905081810360008301526147e781846140f4565b905092915050565b600060208201905081810360008301526148088161415e565b9050919050565b6000602082019050818103600083015261482881614181565b9050919050565b60006020820190508181036000830152614848816141a4565b9050919050565b60006020820190508181036000830152614868816141c7565b9050919050565b60006020820190508181036000830152614888816141ea565b9050919050565b600060208201905081810360008301526148a881614230565b9050919050565b600060208201905081810360008301526148c881614253565b9050919050565b600060208201905081810360008301526148e881614276565b9050919050565b6000602082019050818103600083015261490881614299565b9050919050565b60006020820190508181036000830152614928816142bc565b9050919050565b60006020820190508181036000830152614948816142df565b9050919050565b6000602082019050818103600083015261496881614302565b9050919050565b6000602082019050818103600083015261498881614325565b9050919050565b600060208201905081810360008301526149a881614348565b9050919050565b600060208201905081810360008301526149c88161436b565b9050919050565b600060208201905081810360008301526149e88161438e565b9050919050565b60006020820190508181036000830152614a08816143b1565b9050919050565b60006020820190508181036000830152614a28816143d4565b9050919050565b60006020820190508181036000830152614a48816143f7565b9050919050565b60006020820190508181036000830152614a688161441a565b9050919050565b60006020820190508181036000830152614a888161443d565b9050919050565b60006020820190508181036000830152614aa881614460565b9050919050565b60006020820190508181036000830152614ac881614483565b9050919050565b60006020820190508181036000830152614ae8816144a6565b9050919050565b60006020820190508181036000830152614b08816144c9565b9050919050565b60006020820190508181036000830152614b28816144ec565b9050919050565b60006020820190508181036000830152614b488161450f565b9050919050565b60006020820190508181036000830152614b6881614532565b9050919050565b60006020820190508181036000830152614b8881614555565b9050919050565b60006020820190508181036000830152614ba881614578565b9050919050565b60006020820190508181036000830152614bc88161459b565b9050919050565b60006020820190508181036000830152614be8816145be565b9050919050565b60006020820190508181036000830152614c08816145e1565b9050919050565b60006020820190508181036000830152614c2881614604565b9050919050565b60006020820190508181036000830152614c4881614627565b9050919050565b6000602082019050614c64600083018461464a565b92915050565b6000614c74614c85565b9050614c808282614fb5565b919050565b6000604051905090565b600067ffffffffffffffff821115614caa57614ca9615183565b5b614cb3826151d0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d0e82614ec4565b9150614d1983614ec4565b9250826fffffffffffffffffffffffffffffffff03821115614d3e57614d3d615098565b5b828201905092915050565b6000614d5482614f00565b9150614d5f83614f00565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d9457614d93615098565b5b828201905092915050565b6000614daa82614f00565b9150614db583614f00565b925082614dc557614dc46150c7565b5b828204905092915050565b6000614ddb82614f00565b9150614de683614f00565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e1f57614e1e615098565b5b828202905092915050565b6000614e3582614f00565b9150614e4083614f00565b925082821015614e5357614e52615098565b5b828203905092915050565b6000614e6982614ee0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614ebd82614e5e565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614f44578082015181840152602081019050614f29565b83811115614f53576000848401525b50505050565b6000614f6482614f00565b91506000821415614f7857614f77615098565b5b600182039050919050565b60006002820490506001821680614f9b57607f821691505b60208210811415614faf57614fae615125565b5b50919050565b614fbe826151d0565b810181811067ffffffffffffffff82111715614fdd57614fdc615183565b5b80604052505050565b6000614ff182614f00565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561502457615023615098565b5b600182019050919050565b600061503a8261504b565b9050919050565b6000819050919050565b6000615056826151e1565b9050919050565b6000819050919050565b600061507282614f00565b915061507d83614f00565b92508261508d5761508c6150c7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74206e6f74206f70656e000000000000000000600082015250565b7f53687574746c6570617373206d696e74696e67206e6f74206f70656e00000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4e6f7420656e6f7567682066756e64732073656e740000000000000000000000600082015250565b7f6d696e74696e6720776f756c642065786365656420616c6c6f7765642073757060008201527f706c7920666f7220746869732073616c65207068617365000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e203520746f74616c20696e60008201527f207075626c6963207072652d73616c6500000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74206e6f74206f70656e000000000000000000000000600082015250565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c7265616479206d696e74656420696e2077686974656c6973742073616c65600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420737461746500000000000000000000000000000000000000600082015250565b7f496e76616c6964205369676e6174757265000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f5075626c6963206561726c79206d696e74206e6f74206f70656e000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f7420617574686f72697a656420666f722074686973206d616e79206d696e60008201527f7473000000000000000000000000000000000000000000000000000000000000602082015250565b615ad981614e5e565b8114615ae457600080fd5b50565b615af081614e70565b8114615afb57600080fd5b50565b615b0781614e86565b8114615b1257600080fd5b50565b615b1e81614eb2565b8114615b2957600080fd5b50565b615b3581614f00565b8114615b4057600080fd5b5056fea264697066735822122038d3d818514c4f15026a6d00fb4af46ea6730677913242d36148cfe4f6a2bb4764736f6c6343000807003368747470733a2f2f6173736574732e6a6f696e7468657070612e636f6d2f6465616c6572732f6d657461646174612f68747470733a2f2f6173736574732e6a6f696e7468657070612e636f6d2f6465616c6572732f6d657461646174612f636f6e74726163742e6a736f6e

Deployed Bytecode

0x6080604052600436106102515760003560e01c8063603f4d5211610139578063a22cb465116100b6578063d7b4be241161007a578063d7b4be24146108bd578063e8a3d485146108e8578063e985e9c514610913578063f19e75d414610950578063f2fde38b14610979578063f4e0d9ac146109a257610251565b8063a22cb465146107c8578063b13c98dc146107f1578063b88d4fde1461082e578063c87b56dd14610857578063ccb4807b1461089457610251565b80638cd35de8116100fd5780638cd35de8146107025780638da5cb5b1461071e5780639208383a146107495780639244caea1461077457806395d89b411461079d57610251565b8063603f4d52146106095780636352211e1461063457806368b962ae1461067157806370a08231146106ae578063715018a6146106eb57610251565b80632f745c59116101d25780634640fc40116101965780634640fc40146104d35780634f6ccce71461051057806352f1f7311461054d57806355f804b31461058a5780635b7633d0146105b35780635d463810146105de57610251565b80632f745c591461040f57806332cb6b0c1461044c57806337bc4c0b146104775780633ccfd60b1461049357806342842e0e146104aa57610251565b8063095ea7b311610219578063095ea7b31461034d57806318160ddd146103765780631919fed7146103a157806323b872dd146103ca5780632db11544146103f357610251565b806301ffc9a714610256578063046dc1661461029357806306fdde03146102bc578063081812fc146102e7578063084c408814610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613ea7565b6109cb565b60405161028a919061476d565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613c61565b610b15565b005b3480156102c857600080fd5b506102d1610bd5565b6040516102de91906147cd565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190613fc4565b610c67565b60405161031b9190614706565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613fc4565b610cec565b005b34801561035957600080fd5b50610374600480360381019061036f9190613de4565b610dc3565b005b34801561038257600080fd5b5061038b610edc565b6040516103989190614c4f565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190613fc4565b610ee5565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190613cce565b610f6b565b005b61040d60048036038101906104089190613fc4565b610f7b565b005b34801561041b57600080fd5b5061043660048036038101906104319190613de4565b610fe2565b6040516104439190614c4f565b60405180910390f35b34801561045857600080fd5b506104616111e0565b60405161046e9190614c4f565b60405180910390f35b610491600480360381019061048c9190613f01565b6111e6565b005b34801561049f57600080fd5b506104a8611381565b005b3480156104b657600080fd5b506104d160048036038101906104cc9190613cce565b61144c565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190613c61565b61146c565b604051610507919061476d565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190613fc4565b61148c565b6040516105449190614c4f565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190613c61565b6114df565b6040516105819190614c4f565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613f77565b6114f7565b005b3480156105bf57600080fd5b506105c8611589565b6040516105d59190614706565b60405180910390f35b3480156105ea57600080fd5b506105f36115af565b6040516106009190614c4f565b60405180910390f35b34801561061557600080fd5b5061061e6115b5565b60405161062b9190614c4f565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613fc4565b6115bb565b6040516106689190614706565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190613e24565b6115d1565b6040516106a5919061476d565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190613c61565b611683565b6040516106e29190614c4f565b60405180910390f35b3480156106f757600080fd5b5061070061176c565b005b61071c60048036038101906107179190613fc4565b6117f4565b005b34801561072a57600080fd5b50610733611934565b6040516107409190614706565b60405180910390f35b34801561075557600080fd5b5061075e61195e565b60405161076b9190614c4f565b60405180910390f35b34801561078057600080fd5b5061079b60048036038101906107969190613ff1565b611964565b005b3480156107a957600080fd5b506107b2611ae8565b6040516107bf91906147cd565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613da4565b611b7a565b005b3480156107fd57600080fd5b5061081860048036038101906108139190613c61565b611cfb565b6040516108259190614c4f565b60405180910390f35b34801561083a57600080fd5b5061085560048036038101906108509190613d21565b611d13565b005b34801561086357600080fd5b5061087e60048036038101906108799190613fc4565b611d6f565b60405161088b91906147cd565b60405180910390f35b3480156108a057600080fd5b506108bb60048036038101906108b69190613f77565b611e16565b005b3480156108c957600080fd5b506108d2611ea8565b6040516108df9190614706565b60405180910390f35b3480156108f457600080fd5b506108fd611ece565b60405161090a91906147cd565b60405180910390f35b34801561091f57600080fd5b5061093a60048036038101906109359190613c8e565b611f60565b604051610947919061476d565b60405180910390f35b34801561095c57600080fd5b5061097760048036038101906109729190613fc4565b611fdd565b005b34801561098557600080fd5b506109a0600480360381019061099b9190613c61565b612072565b005b3480156109ae57600080fd5b506109c960048036038101906109c49190613c61565b61216a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a9657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610afe57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b0e5750610b0d8261222a565b5b9050919050565b610b1d612294565b73ffffffffffffffffffffffffffffffffffffffff16610b3b611934565b73ffffffffffffffffffffffffffffffffffffffff1614610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890614aaf565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060018054610be490614f83565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1090614f83565b8015610c5d5780601f10610c3257610100808354040283529160200191610c5d565b820191906000526020600020905b815481529060010190602001808311610c4057829003601f168201915b5050505050905090565b6000610c728261229c565b610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890614c0f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610cf4612294565b73ffffffffffffffffffffffffffffffffffffffff16610d12611934565b73ffffffffffffffffffffffffffffffffffffffff1614610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f90614aaf565b60405180910390fd5b60008110158015610d7a575060048111155b610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090614a6f565b60405180910390fd5b8060128190555050565b6000610dce826115bb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690614b4f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e5e612294565b73ffffffffffffffffffffffffffffffffffffffff161480610e8d5750610e8c81610e87612294565b611f60565b5b610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec3906149cf565b60405180910390fd5b610ed78383836122a9565b505050565b60008054905090565b610eed612294565b73ffffffffffffffffffffffffffffffffffffffff16610f0b611934565b73ffffffffffffffffffffffffffffffffffffffff1614610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890614aaf565b60405180910390fd5b8060118190555050565b610f7683838361235b565b505050565b600460125414610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb79061496f565b60405180910390fd5b610fcc81600c54612902565b610fd58161295b565b610fdf33826129b4565b50565b6000610fed83611683565b821061102e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110259061480f565b60405180910390fd5b6000611038610edc565b905060008060005b8381101561119e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461113257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561118a578684141561117b5781955050505050506111da565b838061118690614fe6565b9450505b50808061119690614fe6565b915050611040565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190614bef565b60405180910390fd5b92915050565b600c5481565b60016012541461122b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112229061482f565b60405180910390fd5b61123860016101f4612902565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90614a2f565b60405180910390fd5b6112d233600180846115d1565b611311576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113089061498f565b60405180910390fd5b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611373600161295b565b61137e3360016129b4565b50565b611389612294565b73ffffffffffffffffffffffffffffffffffffffff166113a7611934565b73ffffffffffffffffffffffffffffffffffffffff16146113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f490614aaf565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611448573d6000803e3d6000fd5b5050565b61146783838360405180602001604052806000815250611d13565b505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000611496610edc565b82106114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce9061492f565b60405180910390fd5b819050919050565b60106020528060005260406000206000915090505481565b6114ff612294565b73ffffffffffffffffffffffffffffffffffffffff1661151d611934565b73ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a90614aaf565b60405180910390fd5b8181600a9190611584929190613a40565b505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b60125481565b60006115c6826129d2565b600001519050919050565b6000808585856040516020016115e99392919061467f565b604051602081830303815290604052805190602001209050600061160c82612b2d565b905060006116238583612b5d90919063ffffffff16565b9050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16149350505050949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb906149ef565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611774612294565b73ffffffffffffffffffffffffffffffffffffffff16611792611934565b73ffffffffffffffffffffffffffffffffffffffff16146117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90614aaf565b60405180910390fd5b6117f26000612b84565b565b600260125414611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183090614b0f565b60405180910390fd5b611845816101f4612902565b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118949190614d49565b925050819055506005600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561191e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119159061490f565b60405180910390fd5b6119278161295b565b61193133826129b4565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6101f481565b6003601254146119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a09061484f565b60405180910390fd5b6119b583600c54612902565b82601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a049190614d49565b9250508190555081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8490614c2f565b60405180910390fd5b611a9a33836003846115d1565b611ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad090614a8f565b60405180910390fd5b611ae333846129b4565b505050565b606060028054611af790614f83565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2390614f83565b8015611b705780601f10611b4557610100808354040283529160200191611b70565b820191906000526020600020905b815481529060010190602001808311611b5357829003601f168201915b5050505050905090565b611b82612294565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be790614aef565b60405180910390fd5b8060066000611bfd612294565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611caa612294565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cef919061476d565b60405180910390a35050565b600f6020528060005260406000206000915090505481565b611d1e84848461235b565b611d2a84848484612c4a565b611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6090614b8f565b60405180910390fd5b50505050565b6060611d7a8261229c565b611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db090614acf565b60405180910390fd5b6000611dc3612de1565b90506000815111611de35760405180602001604052806000815250611e0e565b80611ded84612e73565b604051602001611dfe9291906146bc565b6040516020818303038152906040525b915050919050565b611e1e612294565b73ffffffffffffffffffffffffffffffffffffffff16611e3c611934565b73ffffffffffffffffffffffffffffffffffffffff1614611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990614aaf565b60405180910390fd5b8181600b9190611ea3929190613a40565b505050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600b8054611edd90614f83565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0990614f83565b8015611f565780601f10611f2b57610100808354040283529160200191611f56565b820191906000526020600020905b815481529060010190602001808311611f3957829003601f168201915b5050505050905090565b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480611fc45750611fc38383612fd4565b5b80611fd55750611fd4838361311b565b5b905092915050565b611fe5612294565b73ffffffffffffffffffffffffffffffffffffffff16612003611934565b73ffffffffffffffffffffffffffffffffffffffff1614612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614aaf565b60405180910390fd5b61206581600c54612902565b61206f33826129b4565b50565b61207a612294565b73ffffffffffffffffffffffffffffffffffffffff16612098611934565b73ffffffffffffffffffffffffffffffffffffffff16146120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e590614aaf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561215e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612155906148cf565b60405180910390fd5b61216781612b84565b50565b612172612294565b73ffffffffffffffffffffffffffffffffffffffff16612190611934565b73ffffffffffffffffffffffffffffffffffffffff16146121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd90614aaf565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612366826129d2565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661238d612294565b73ffffffffffffffffffffffffffffffffffffffff1614806123e957506123b2612294565b73ffffffffffffffffffffffffffffffffffffffff166123d184610c67565b73ffffffffffffffffffffffffffffffffffffffff16145b80612405575061240482600001516123ff612294565b611f60565b5b905080612447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243e90614b2f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146124b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b090614a4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612529576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125209061494f565b60405180910390fd5b61253685858560016131af565b61254660008484600001516122a9565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461274c9190614d49565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612892576127c28161229c565b15612891576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128fa86868660016131b5565b505050505050565b808261290c610edc565b6129169190614d49565b1115612957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294e906148af565b60405180910390fd5b5050565b60008160115461296b9190614dd0565b9050803410156129b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a79061488f565b60405180910390fd5b5050565b6129ce8282604051806020016040528060008152506131bb565b5050565b6129da613ac6565b6129e38261229c565b612a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a19906148ef565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b14578092505050612b28565b508080612b2090614f59565b915050612a28565b919050565b600081604051602001612b4091906146e0565b604051602081830303815290604052805190602001209050919050565b6000806000612b6c858561367a565b91509150612b79816136fd565b819250505092915050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612c6b8473ffffffffffffffffffffffffffffffffffffffff166138d2565b15612dd4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c94612294565b8786866040518563ffffffff1660e01b8152600401612cb69493929190614721565b602060405180830381600087803b158015612cd057600080fd5b505af1925050508015612d0157506040513d601f19601f82011682018060405250810190612cfe9190613ed4565b60015b612d84573d8060008114612d31576040519150601f19603f3d011682016040523d82523d6000602084013e612d36565b606091505b50600081511415612d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7390614b8f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dd9565b600190505b949350505050565b6060600a8054612df090614f83565b80601f0160208091040260200160405190810160405280929190818152602001828054612e1c90614f83565b8015612e695780601f10612e3e57610100808354040283529160200191612e69565b820191906000526020600020905b815481529060010190602001808311612e4c57829003601f168201915b5050505050905090565b60606000821415612ebb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fcf565b600082905060005b60008214612eed578080612ed690614fe6565b915050600a82612ee69190614d9f565b9150612ec3565b60008167ffffffffffffffff811115612f0957612f08615183565b5b6040519080825280601f01601f191660200182016040528015612f3b5781602001600182028036833780820191505090505b5090505b60008514612fc857600182612f549190614e2a565b9150600a85612f639190615067565b6030612f6f9190614d49565b60f81b818381518110612f8557612f84615154565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fc19190614d9f565b9450612f3f565b8093505050505b919050565b6000804660018114612fed576004811461300957613021565b73a5409ec958c83c3f309868babaca7c86dcb077c19150613021565b73f57b2c51ded3a29e6891aba85459d600256cf31791505b50600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415801561311257508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016130aa9190614706565b60206040518083038186803b1580156130c257600080fd5b505afa1580156130d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130fa9190613f4a565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322890614bcf565b60405180910390fd5b61323a8161229c565b1561327a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327190614baf565b60405180910390fd5b600083116132bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b490614b6f565b60405180910390fd5b6132ca60008583866131af565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516133c79190614d03565b6fffffffffffffffffffffffffffffffff1681526020018583602001516133ee9190614d03565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561365d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135fd6000888488612c4a565b61363c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363390614b8f565b60405180910390fd5b818061364790614fe6565b925050808061365590614fe6565b91505061358c565b508060008190555061367260008785886131b5565b505050505050565b6000806041835114156136bc5760008060006020860151925060408601519150606086015160001a90506136b0878285856138e5565b945094505050506136f6565b6040835114156136ed5760008060208501519150604085015190506136e28683836139f2565b9350935050506136f6565b60006002915091505b9250929050565b60006004811115613711576137106150f6565b5b816004811115613724576137236150f6565b5b141561372f576138cf565b60016004811115613743576137426150f6565b5b816004811115613756576137556150f6565b5b1415613797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378e906147ef565b60405180910390fd5b600260048111156137ab576137aa6150f6565b5b8160048111156137be576137bd6150f6565b5b14156137ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f69061486f565b60405180910390fd5b60036004811115613813576138126150f6565b5b816004811115613826576138256150f6565b5b1415613867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385e906149af565b60405180910390fd5b60048081111561387a576138796150f6565b5b81600481111561388d5761388c6150f6565b5b14156138ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138c590614a0f565b60405180910390fd5b5b50565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156139205760006003915091506139e9565b601b8560ff16141580156139385750601c8560ff1614155b1561394a5760006004915091506139e9565b60006001878787876040516000815260200160405260405161396f9493929190614788565b6020604051602081039080840390855afa158015613991573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156139e0576000600192509250506139e9565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613a32878288856138e5565b935093505050935093915050565b828054613a4c90614f83565b90600052602060002090601f016020900481019282613a6e5760008555613ab5565b82601f10613a8757803560ff1916838001178555613ab5565b82800160010185558215613ab5579182015b82811115613ab4578235825591602001919060010190613a99565b5b509050613ac29190613b00565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b19576000816000905550600101613b01565b5090565b6000613b30613b2b84614c8f565b614c6a565b905082815260208101848484011115613b4c57613b4b6151c1565b5b613b57848285614f17565b509392505050565b600081359050613b6e81615ad0565b92915050565b600081359050613b8381615ae7565b92915050565b600081359050613b9881615afe565b92915050565b600081519050613bad81615afe565b92915050565b600082601f830112613bc857613bc76151b7565b5b8135613bd8848260208601613b1d565b91505092915050565b600081519050613bf081615b15565b92915050565b60008083601f840112613c0c57613c0b6151b7565b5b8235905067ffffffffffffffff811115613c2957613c286151b2565b5b602083019150836001820283011115613c4557613c446151bc565b5b9250929050565b600081359050613c5b81615b2c565b92915050565b600060208284031215613c7757613c766151cb565b5b6000613c8584828501613b5f565b91505092915050565b60008060408385031215613ca557613ca46151cb565b5b6000613cb385828601613b5f565b9250506020613cc485828601613b5f565b9150509250929050565b600080600060608486031215613ce757613ce66151cb565b5b6000613cf586828701613b5f565b9350506020613d0686828701613b5f565b9250506040613d1786828701613c4c565b9150509250925092565b60008060008060808587031215613d3b57613d3a6151cb565b5b6000613d4987828801613b5f565b9450506020613d5a87828801613b5f565b9350506040613d6b87828801613c4c565b925050606085013567ffffffffffffffff811115613d8c57613d8b6151c6565b5b613d9887828801613bb3565b91505092959194509250565b60008060408385031215613dbb57613dba6151cb565b5b6000613dc985828601613b5f565b9250506020613dda85828601613b74565b9150509250929050565b60008060408385031215613dfb57613dfa6151cb565b5b6000613e0985828601613b5f565b9250506020613e1a85828601613c4c565b9150509250929050565b60008060008060808587031215613e3e57613e3d6151cb565b5b6000613e4c87828801613b5f565b9450506020613e5d87828801613c4c565b9350506040613e6e87828801613c4c565b925050606085013567ffffffffffffffff811115613e8f57613e8e6151c6565b5b613e9b87828801613bb3565b91505092959194509250565b600060208284031215613ebd57613ebc6151cb565b5b6000613ecb84828501613b89565b91505092915050565b600060208284031215613eea57613ee96151cb565b5b6000613ef884828501613b9e565b91505092915050565b600060208284031215613f1757613f166151cb565b5b600082013567ffffffffffffffff811115613f3557613f346151c6565b5b613f4184828501613bb3565b91505092915050565b600060208284031215613f6057613f5f6151cb565b5b6000613f6e84828501613be1565b91505092915050565b60008060208385031215613f8e57613f8d6151cb565b5b600083013567ffffffffffffffff811115613fac57613fab6151c6565b5b613fb885828601613bf6565b92509250509250929050565b600060208284031215613fda57613fd96151cb565b5b6000613fe884828501613c4c565b91505092915050565b60008060006060848603121561400a576140096151cb565b5b600061401886828701613c4c565b935050602061402986828701613c4c565b925050604084013567ffffffffffffffff81111561404a576140496151c6565b5b61405686828701613bb3565b9150509250925092565b61406981614e5e565b82525050565b61408061407b82614e5e565b61502f565b82525050565b61408f81614e70565b82525050565b61409e81614e7c565b82525050565b6140b56140b082614e7c565b615041565b82525050565b60006140c682614cc0565b6140d08185614cd6565b93506140e0818560208601614f26565b6140e9816151d0565b840191505092915050565b60006140ff82614ccb565b6141098185614ce7565b9350614119818560208601614f26565b614122816151d0565b840191505092915050565b600061413882614ccb565b6141428185614cf8565b9350614152818560208601614f26565b80840191505092915050565b600061416b601883614ce7565b9150614176826151ee565b602082019050919050565b600061418e602283614ce7565b915061419982615217565b604082019050919050565b60006141b1601783614ce7565b91506141bc82615266565b602082019050919050565b60006141d4601c83614ce7565b91506141df8261528f565b602082019050919050565b60006141f7601f83614ce7565b9150614202826152b8565b602082019050919050565b600061421a601c83614cf8565b9150614225826152e1565b601c82019050919050565b600061423d601583614ce7565b91506142488261530a565b602082019050919050565b6000614260603783614ce7565b915061426b82615333565b604082019050919050565b6000614283602683614ce7565b915061428e82615382565b604082019050919050565b60006142a6602a83614ce7565b91506142b1826153d1565b604082019050919050565b60006142c9603083614ce7565b91506142d482615420565b604082019050919050565b60006142ec602383614ce7565b91506142f78261546f565b604082019050919050565b600061430f602583614ce7565b915061431a826154be565b604082019050919050565b6000614332601483614ce7565b915061433d8261550d565b602082019050919050565b6000614355601183614ce7565b915061436082615536565b602082019050919050565b6000614378602283614ce7565b91506143838261555f565b604082019050919050565b600061439b603983614ce7565b91506143a6826155ae565b604082019050919050565b60006143be602b83614ce7565b91506143c9826155fd565b604082019050919050565b60006143e1602283614ce7565b91506143ec8261564c565b604082019050919050565b6000614404602083614ce7565b915061440f8261569b565b602082019050919050565b6000614427602683614ce7565b9150614432826156c4565b604082019050919050565b600061444a600d83614ce7565b915061445582615713565b602082019050919050565b600061446d601183614ce7565b91506144788261573c565b602082019050919050565b6000614490602083614ce7565b915061449b82615765565b602082019050919050565b60006144b3602f83614ce7565b91506144be8261578e565b604082019050919050565b60006144d6601a83614ce7565b91506144e1826157dd565b602082019050919050565b60006144f9601a83614ce7565b915061450482615806565b602082019050919050565b600061451c603283614ce7565b91506145278261582f565b604082019050919050565b600061453f602283614ce7565b915061454a8261587e565b604082019050919050565b6000614562602383614ce7565b915061456d826158cd565b604082019050919050565b6000614585603383614ce7565b91506145908261591c565b604082019050919050565b60006145a8601d83614ce7565b91506145b38261596b565b602082019050919050565b60006145cb602183614ce7565b91506145d682615994565b604082019050919050565b60006145ee602e83614ce7565b91506145f9826159e3565b604082019050919050565b6000614611602d83614ce7565b915061461c82615a32565b604082019050919050565b6000614634602283614ce7565b915061463f82615a81565b604082019050919050565b61465381614f00565b82525050565b61466a61466582614f00565b61505d565b82525050565b61467981614f0a565b82525050565b600061468b828661406f565b60148201915061469b8285614659565b6020820191506146ab8284614659565b602082019150819050949350505050565b60006146c8828561412d565b91506146d4828461412d565b91508190509392505050565b60006146eb8261420d565b91506146f782846140a4565b60208201915081905092915050565b600060208201905061471b6000830184614060565b92915050565b60006080820190506147366000830187614060565b6147436020830186614060565b614750604083018561464a565b818103606083015261476281846140bb565b905095945050505050565b60006020820190506147826000830184614086565b92915050565b600060808201905061479d6000830187614095565b6147aa6020830186614670565b6147b76040830185614095565b6147c46060830184614095565b95945050505050565b600060208201905081810360008301526147e781846140f4565b905092915050565b600060208201905081810360008301526148088161415e565b9050919050565b6000602082019050818103600083015261482881614181565b9050919050565b60006020820190508181036000830152614848816141a4565b9050919050565b60006020820190508181036000830152614868816141c7565b9050919050565b60006020820190508181036000830152614888816141ea565b9050919050565b600060208201905081810360008301526148a881614230565b9050919050565b600060208201905081810360008301526148c881614253565b9050919050565b600060208201905081810360008301526148e881614276565b9050919050565b6000602082019050818103600083015261490881614299565b9050919050565b60006020820190508181036000830152614928816142bc565b9050919050565b60006020820190508181036000830152614948816142df565b9050919050565b6000602082019050818103600083015261496881614302565b9050919050565b6000602082019050818103600083015261498881614325565b9050919050565b600060208201905081810360008301526149a881614348565b9050919050565b600060208201905081810360008301526149c88161436b565b9050919050565b600060208201905081810360008301526149e88161438e565b9050919050565b60006020820190508181036000830152614a08816143b1565b9050919050565b60006020820190508181036000830152614a28816143d4565b9050919050565b60006020820190508181036000830152614a48816143f7565b9050919050565b60006020820190508181036000830152614a688161441a565b9050919050565b60006020820190508181036000830152614a888161443d565b9050919050565b60006020820190508181036000830152614aa881614460565b9050919050565b60006020820190508181036000830152614ac881614483565b9050919050565b60006020820190508181036000830152614ae8816144a6565b9050919050565b60006020820190508181036000830152614b08816144c9565b9050919050565b60006020820190508181036000830152614b28816144ec565b9050919050565b60006020820190508181036000830152614b488161450f565b9050919050565b60006020820190508181036000830152614b6881614532565b9050919050565b60006020820190508181036000830152614b8881614555565b9050919050565b60006020820190508181036000830152614ba881614578565b9050919050565b60006020820190508181036000830152614bc88161459b565b9050919050565b60006020820190508181036000830152614be8816145be565b9050919050565b60006020820190508181036000830152614c08816145e1565b9050919050565b60006020820190508181036000830152614c2881614604565b9050919050565b60006020820190508181036000830152614c4881614627565b9050919050565b6000602082019050614c64600083018461464a565b92915050565b6000614c74614c85565b9050614c808282614fb5565b919050565b6000604051905090565b600067ffffffffffffffff821115614caa57614ca9615183565b5b614cb3826151d0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d0e82614ec4565b9150614d1983614ec4565b9250826fffffffffffffffffffffffffffffffff03821115614d3e57614d3d615098565b5b828201905092915050565b6000614d5482614f00565b9150614d5f83614f00565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d9457614d93615098565b5b828201905092915050565b6000614daa82614f00565b9150614db583614f00565b925082614dc557614dc46150c7565b5b828204905092915050565b6000614ddb82614f00565b9150614de683614f00565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e1f57614e1e615098565b5b828202905092915050565b6000614e3582614f00565b9150614e4083614f00565b925082821015614e5357614e52615098565b5b828203905092915050565b6000614e6982614ee0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614ebd82614e5e565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614f44578082015181840152602081019050614f29565b83811115614f53576000848401525b50505050565b6000614f6482614f00565b91506000821415614f7857614f77615098565b5b600182039050919050565b60006002820490506001821680614f9b57607f821691505b60208210811415614faf57614fae615125565b5b50919050565b614fbe826151d0565b810181811067ffffffffffffffff82111715614fdd57614fdc615183565b5b80604052505050565b6000614ff182614f00565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561502457615023615098565b5b600182019050919050565b600061503a8261504b565b9050919050565b6000819050919050565b6000615056826151e1565b9050919050565b6000819050919050565b600061507282614f00565b915061507d83614f00565b92508261508d5761508c6150c7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74206e6f74206f70656e000000000000000000600082015250565b7f53687574746c6570617373206d696e74696e67206e6f74206f70656e00000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4e6f7420656e6f7567682066756e64732073656e740000000000000000000000600082015250565b7f6d696e74696e6720776f756c642065786365656420616c6c6f7765642073757060008201527f706c7920666f7220746869732073616c65207068617365000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e203520746f74616c20696e60008201527f207075626c6963207072652d73616c6500000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74206e6f74206f70656e000000000000000000000000600082015250565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c7265616479206d696e74656420696e2077686974656c6973742073616c65600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420737461746500000000000000000000000000000000000000600082015250565b7f496e76616c6964205369676e6174757265000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f5075626c6963206561726c79206d696e74206e6f74206f70656e000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f7420617574686f72697a656420666f722074686973206d616e79206d696e60008201527f7473000000000000000000000000000000000000000000000000000000000000602082015250565b615ad981614e5e565b8114615ae457600080fd5b50565b615af081614e70565b8114615afb57600080fd5b50565b615b0781614e86565b8114615b1257600080fd5b50565b615b1e81614eb2565b8114615b2957600080fd5b50565b615b3581614f00565b8114615b4057600080fd5b5056fea264697066735822122038d3d818514c4f15026a6d00fb4af46ea6730677913242d36148cfe4f6a2bb4764736f6c63430008070033

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.