ETH Price: $3,251.51 (+2.41%)
Gas: 3 Gwei

EDO8an (EDO)
 

Overview

TokenID

1746

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
EDO8an

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : EDO8an.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.7.0 <0.9.0;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./DefaultOperatorFilterer.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";

//tokenURI interface
interface iTokenURI {
    function tokenURI(uint256 _tokenId) external view returns (string memory);
}

contract EDO8an is Ownable, ERC721A, DefaultOperatorFilterer, ERC2981 {

    constructor(
    ) ERC721A("EDO8an", "EDO") {

        setBaseURI("https://edo-1.com/data/edo8an/json/");
        _safeMint(msg.sender, 1);
        _setDefaultRoyalty(0x33d1aaBb4D0a8D84f55a196517523D83CFEbB714, 1000);
        setMerkleRoot(0xe3160c2082cc63e3fb887418788dd272c3304993f78e21e0f648f06e9fb0a684);

    }



    //
    //withdraw section
    //

    address public constant WITHDRAW_ADDRESS = 0x33d1aaBb4D0a8D84f55a196517523D83CFEbB714;

    function withdraw() external onlyOwner {    
    require( WITHDRAW_ADDRESS != address(0), "The address shouldn't be 0" );
    (bool os, ) = WITHDRAW_ADDRESS.call{value: address(this).balance}("");
    require(os);
    }



    //
    //mint section
    //

    uint256 public cost = 0;
    uint256 public maxSupply = 7000;
    uint256 public maxMintAmountPerTransaction = 20;
    uint256 public publicSaleMaxMintAmountPerAddress = 300;
    bool public paused = true;

    bool public onlyAllowlisted = true;
    bool public mintCount = true;

    //0 : Merkle Tree
    //1 : Mapping
    uint256 public allowlistType = 0;
    bytes32 public merkleRoot;
    uint256 public saleId = 0;
    mapping(uint256 => mapping(address => uint256)) public userMintedAmount;
    mapping(uint256 => mapping(address => uint256)) public allowlistUserAmount;


    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract.");
        _;
    }
 
    //mint with merkle tree
    function mint(uint256 _mintAmount , uint256 _maxMintAmount , bytes32[] calldata _merkleProof ) public payable callerIsUser{
        require(!paused, "the contract is paused");
        require(0 < _mintAmount, "need to mint at least 1 NFT");
        require(_mintAmount <= maxMintAmountPerTransaction, "max mint amount per session exceeded");
        require( _nextTokenId() -1 + _mintAmount <= maxSupply , "max NFT limit exceeded");
        require(cost * _mintAmount <= msg.value, "insufficient funds");

        uint256 maxMintAmountPerAddress;
        if(onlyAllowlisted == true) {
            if(allowlistType == 0){
                //Merkle tree
                bytes32 leaf = keccak256( abi.encodePacked(msg.sender, _maxMintAmount) );
                require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "user is not allowlisted");
                maxMintAmountPerAddress = _maxMintAmount;
            }else if(allowlistType == 1){
                //Mapping
                require( allowlistUserAmount[saleId][msg.sender] != 0 , "user is not allowlisted");
                maxMintAmountPerAddress = allowlistUserAmount[saleId][msg.sender];
            }
        }else{
            maxMintAmountPerAddress = publicSaleMaxMintAmountPerAddress;
        }

        if(mintCount == true){
            require(_mintAmount <= maxMintAmountPerAddress - userMintedAmount[saleId][msg.sender] , "max NFT per address exceeded");
            userMintedAmount[saleId][msg.sender] += _mintAmount;
        }

        _safeMint(msg.sender, _mintAmount);
    }

    function airdropMint(address[] calldata _airdropAddresses , uint256[] memory _UserMintAmount) public onlyOwner{
        uint256 supply = totalSupply();
        uint256 _mintAmount = 0;
        for (uint256 i = 0; i < _UserMintAmount.length; i++) {
            _mintAmount += _UserMintAmount[i];
        }
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

        for (uint256 i = 0; i < _UserMintAmount.length; i++) {
            _safeMint(_airdropAddresses[i], _UserMintAmount[i] );
        }
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setPause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setAllowListType(uint256 _type)public onlyOwner{
        require( _type == 0 || _type == 1 , "Allow list type error");
        allowlistType = _type;
    }

    function setAllowlistMapping(uint256 _saleId , address[] memory addresses, uint256[] memory saleSupplies) public onlyOwner {
        require(addresses.length == saleSupplies.length);
        for (uint256 i = 0; i < addresses.length; i++) {
            allowlistUserAmount[_saleId][addresses[i]] = saleSupplies[i];
        }
    }

    function getAllowlistUserAmount(address _address ) public view returns(uint256){
        return allowlistUserAmount[saleId][_address];
    }

    function getUserMintedAmountBySaleId(uint256 _saleId , address _address ) public view returns(uint256){
        return userMintedAmount[_saleId][_address];
    }

    function getUserMintedAmount(address _address ) public view returns(uint256){
        return userMintedAmount[saleId][_address];
    }

    function setSaleId(uint256 _saleId) public onlyOwner {
        saleId = _saleId;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner() {
        maxSupply = _maxSupply;
    }

    function setPublicSaleMaxMintAmountPerAddress(uint256 _publicSaleMaxMintAmountPerAddress) public onlyOwner() {
        publicSaleMaxMintAmountPerAddress = _publicSaleMaxMintAmountPerAddress;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setOnlyAllowlisted(bool _state) public onlyOwner {
        onlyAllowlisted = _state;
    }

    function setMaxMintAmountPerTransaction(uint256 _maxMintAmountPerTransaction) public onlyOwner {
        maxMintAmountPerTransaction = _maxMintAmountPerTransaction;
    }
  
    function setMintCount(bool _state) public onlyOwner {
        mintCount = _state;
    }
 


    //
    //URI section
    //

    string public baseURI;
    string public baseExtension = ".json";

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

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

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }



    //
    //interface metadata
    //

    iTokenURI public interfaceOfTokenURI;
    bool public useInterfaceMetadata = false;

    function setInterfaceOfTokenURI(address _address) public onlyOwner() {
        interfaceOfTokenURI = iTokenURI(_address);
    }

    function setUseInterfaceMetadata(bool _useInterfaceMetadata) public onlyOwner() {
        useInterfaceMetadata = _useInterfaceMetadata;
    }



    //
    //token URI
    //

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        if (useInterfaceMetadata == true) {
            return interfaceOfTokenURI.tokenURI(tokenId);
        }
        return string(abi.encodePacked(ERC721A.tokenURI(tokenId), baseExtension));
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }



    //
    // override section
    //

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId);
            
    }



    ///////////////////////////////////////////////////////////////////////////
    // Transfer functions
    ///////////////////////////////////////////////////////////////////////////
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override payable onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override payable onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public override payable onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }
    ///////////////////////////////////////////////////////////////////////////
    // Approve functions
    ///////////////////////////////////////////////////////////////////////////
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
        onlyAllowedOperatorApproval(operator)
    {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId)
        public
        virtual
        override
        payable
        onlyAllowedOperatorApproval(operator)
    {
        super.approve(operator, tokenId);
    }

    //Royalty setting
    function setDefaultRoyalty( address receiver, uint96 feeNumerator ) external onlyOwner { _setDefaultRoyalty( receiver, feeNumerator ); }
    function deleteDefaultRoyalty() external onlyOwner { _deleteDefaultRoyalty(); }
    function setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) external onlyOwner { _setTokenRoyalty( tokenId, receiver, feeNumerator ); }
    function resetTokenRoyalty( uint256 tokenId ) external onlyOwner { _resetTokenRoyalty( tokenId ); }
   
}

File 2 of 13 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 3 of 13 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 5 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

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

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

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

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

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

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

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

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

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

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

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

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

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

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

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

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

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 8 of 13 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

File 9 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 10 of 13 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 11 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 12 of 13 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAW_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"},{"internalType":"uint256[]","name":"_UserMintAmount","type":"uint256[]"}],"name":"airdropMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowlistType","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"allowlistUserAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getAllowlistUserAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getUserMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleId","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"getUserMintedAmountBySaleId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"interfaceOfTokenURI","outputs":[{"internalType":"contract iTokenURI","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyAllowlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleMaxMintAmountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"resetTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_type","type":"uint256"}],"name":"setAllowListType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleId","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"saleSupplies","type":"uint256[]"}],"name":"setAllowlistMapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setInterfaceOfTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTransaction","type":"uint256"}],"name":"setMaxMintAmountPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyAllowlisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleMaxMintAmountPerAddress","type":"uint256"}],"name":"setPublicSaleMaxMintAmountPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleId","type":"uint256"}],"name":"setSaleId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_useInterfaceMetadata","type":"bool"}],"name":"setUseInterfaceMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"useInterfaceMetadata","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b55611b58600c556014600d5561012c600e556001600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff021916908315150217905550600060105560006012556040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060169081620000bb919062000ef8565b506000601760146101000a81548160ff021916908315150217905550348015620000e457600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600681526020017f45444f38616e00000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f45444f0000000000000000000000000000000000000000000000000000000000815250620001886200017c6200045a60201b60201c565b6200046260201b60201c565b816003908162000199919062000ef8565b508060049081620001ab919062000ef8565b50620001bc6200052660201b60201c565b600181905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003b95780156200027f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200024592919062001024565b600060405180830381600087803b1580156200026057600080fd5b505af115801562000275573d6000803e3d6000fd5b50505050620003b8565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000339576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002ff92919062001024565b600060405180830381600087803b1580156200031a57600080fd5b505af11580156200032f573d6000803e3d6000fd5b50505050620003b7565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000382919062001051565b600060405180830381600087803b1580156200039d57600080fd5b505af1158015620003b2573d6000803e3d6000fd5b505050505b5b5b5050620003e560405180606001604052806023815260200162006a15602391396200052f60201b60201c565b620003f83360016200055460201b60201c565b620004207333d1aabb4d0a8d84f55a196517523d83cfebb7146103e86200057a60201b60201c565b620004547fe3160c2082cc63e3fb887418788dd272c3304993f78e21e0f648f06e9fb0a68460001b6200071d60201b60201c565b6200138e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b6200053f6200073760201b60201c565b806015908162000550919062000ef8565b5050565b62000576828260405180602001604052806000815250620007c860201b60201c565b5050565b6200058a6200087a60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620005eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005e290620010f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200065d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006549062001167565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6200072d6200073760201b60201c565b8060118190555050565b620007476200045a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200076d6200088460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007bd90620011d9565b60405180910390fd5b565b620007da8383620008ad60201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14620008755760006001549050600083820390505b62000824600086838060010194508662000a9560201b60201c565b6200085b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620008095781600154146200087257600080fd5b50505b505050565b6000612710905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600154905060008203620008ef576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b62000904600084838562000bf660201b60201c565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620009938362000975600086600062000bfc60201b60201c565b620009868562000c2c60201b60201c565b1762000c3c60201b60201c565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811462000a3657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050620009f9565b506000820362000a72576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505062000a90600084838562000c6760201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000ac362000c6d60201b60201c565b8786866040518563ffffffff1660e01b815260040162000ae79493929190620012a6565b6020604051808303816000875af192505050801562000b2657506040513d601f19601f8201168201806040525081019062000b2391906200135c565b60015b62000ba3573d806000811462000b59576040519150601f19603f3d011682016040523d82523d6000602084013e62000b5e565b606091505b50600081510362000b9b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e862000c1b86868462000c7560201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d0057607f821691505b60208210810362000d165762000d1562000cb8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d41565b62000d8c868362000d41565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000dd962000dd362000dcd8462000da4565b62000dae565b62000da4565b9050919050565b6000819050919050565b62000df58362000db8565b62000e0d62000e048262000de0565b84845462000d4e565b825550505050565b600090565b62000e2462000e15565b62000e3181848462000dea565b505050565b5b8181101562000e595762000e4d60008262000e1a565b60018101905062000e37565b5050565b601f82111562000ea85762000e728162000d1c565b62000e7d8462000d31565b8101602085101562000e8d578190505b62000ea562000e9c8562000d31565b83018262000e36565b50505b505050565b600082821c905092915050565b600062000ecd6000198460080262000ead565b1980831691505092915050565b600062000ee8838362000eba565b9150826002028217905092915050565b62000f038262000c7e565b67ffffffffffffffff81111562000f1f5762000f1e62000c89565b5b62000f2b825462000ce7565b62000f3882828562000e5d565b600060209050601f83116001811462000f70576000841562000f5b578287015190505b62000f67858262000eda565b86555062000fd7565b601f19841662000f808662000d1c565b60005b8281101562000faa5784890151825560018201915060208501945060208101905062000f83565b8683101562000fca578489015162000fc6601f89168262000eba565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200100c8262000fdf565b9050919050565b6200101e8162000fff565b82525050565b60006040820190506200103b600083018562001013565b6200104a602083018462001013565b9392505050565b600060208201905062001068600083018462001013565b92915050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000620010dd602a836200106e565b9150620010ea826200107f565b604082019050919050565b600060208201905081810360008301526200111081620010ce565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006200114f6019836200106e565b91506200115c8262001117565b602082019050919050565b60006020820190508181036000830152620011828162001140565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620011c16020836200106e565b9150620011ce8262001189565b602082019050919050565b60006020820190508181036000830152620011f481620011b2565b9050919050565b620012068162000da4565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b83811015620012485780820151818401526020810190506200122b565b60008484015250505050565b6000601f19601f8301169050919050565b600062001272826200120c565b6200127e818562001217565b93506200129081856020860162001228565b6200129b8162001254565b840191505092915050565b6000608082019050620012bd600083018762001013565b620012cc602083018662001013565b620012db6040830185620011fb565b8181036060830152620012ef818462001265565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200133681620012ff565b81146200134257600080fd5b50565b60008151905062001356816200132b565b92915050565b600060208284031215620013755762001374620012fa565b5b6000620013858482850162001345565b91505092915050565b615677806200139e6000396000f3fe6080604052600436106103a25760003560e01c8063715018a6116101e7578063b88d4fde1161010d578063d5abeb01116100a0578063e985e9c51161006f578063e985e9c514610d42578063f138abfa14610d7f578063f2fde38b14610da8578063f48824db14610dd1576103a2565b8063d5abeb0114610ca9578063d728312a14610cd4578063da3ef23f14610cfd578063e6d37b8814610d26576103a2565b8063c6682862116100dc578063c668286214610bd9578063c84c038714610c04578063c87b56dd14610c2f578063d04f32d214610c6c576103a2565b8063b88d4fde14610b3e578063ba6269c614610b5a578063bbb8974414610b85578063bedb86fb14610bb0576103a2565b80638e73cf0011610185578063a72193b611610154578063a72193b614610aaa578063a9e2acd514610ad5578063aa1b103f14610afe578063b5f94d0614610b15576103a2565b80638e73cf0014610a0257806395d89b4114610a2b5780639659867e14610a56578063a22cb46514610a81576103a2565b80637ee3b2ac116101c15780637ee3b2ac1461095a578063877984cb146109835780638a616bc0146109ae5780638da5cb5b146109d7576103a2565b8063715018a6146108ef57806373ef64fd146109065780637cb6475914610931576103a2565b80633ccfd60b116102cc57806355f804b31161026a578063674c02aa11610239578063674c02aa146108335780636c0360eb1461085e5780636f8b44b01461088957806370a08231146108b2576103a2565b806355f804b3146107795780635944c753146107a25780635c975abb146107cb5780636352211e146107f6576103a2565b806344a0d68a116102a657806344a0d68a146106ad57806347705cbc146106d6578063499a15d4146107135780634e6bf20414610750576103a2565b80633ccfd60b1461064f57806341f434341461066657806342842e0e14610691576103a2565b806317dc10c411610344578063279a669e11610313578063279a669e146105805780632a55205a146105a95780632eb4a7ab146105e75780633511cd5414610612576103a2565b806317dc10c4146104e757806318160ddd1461051057806323b872dd1461053b57806323c0308514610557576103a2565b8063081812fc11610380578063081812fc14610438578063095ea7b314610475578063122e04a81461049157806313faede6146104bc576103a2565b806301ffc9a7146103a757806304634d8d146103e457806306fdde031461040d575b600080fd5b3480156103b357600080fd5b506103ce60048036038101906103c99190613a17565b610e0e565b6040516103db9190613a5f565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190613b1c565b610e30565b005b34801561041957600080fd5b50610422610e46565b60405161042f9190613bec565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613c44565b610ed8565b60405161046c9190613c80565b60405180910390f35b61048f600480360381019061048a9190613c9b565b610f57565b005b34801561049d57600080fd5b506104a6610f70565b6040516104b39190613c80565b60405180910390f35b3480156104c857600080fd5b506104d1610f88565b6040516104de9190613cea565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190613d31565b610f8e565b005b34801561051c57600080fd5b50610525610fb3565b6040516105329190613cea565b60405180910390f35b61055560048036038101906105509190613d5e565b610fca565b005b34801561056357600080fd5b5061057e60048036038101906105799190613db1565b611019565b005b34801561058c57600080fd5b506105a760048036038101906105a29190613f81565b611065565b005b3480156105b557600080fd5b506105d060048036038101906105cb9190613ffd565b6111c7565b6040516105de92919061403d565b60405180910390f35b3480156105f357600080fd5b506105fc6113b1565b604051610609919061407f565b60405180910390f35b34801561061e57600080fd5b506106396004803603810190610634919061409a565b6113b7565b6040516106469190613cea565b60405180910390f35b34801561065b57600080fd5b50610664611412565b005b34801561067257600080fd5b5061067b61152a565b6040516106889190614139565b60405180910390f35b6106ab60048036038101906106a69190613d5e565b61153c565b005b3480156106b957600080fd5b506106d460048036038101906106cf9190613c44565b61158b565b005b3480156106e257600080fd5b506106fd60048036038101906106f89190613db1565b61159d565b60405161070a9190613cea565b60405180910390f35b34801561071f57600080fd5b5061073a6004803603810190610735919061409a565b6115f9565b6040516107479190613cea565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190614217565b61161e565b005b34801561078557600080fd5b506107a0600480360381019061079b9190614357565b6116e2565b005b3480156107ae57600080fd5b506107c960048036038101906107c491906143a0565b6116fd565b005b3480156107d757600080fd5b506107e0611715565b6040516107ed9190613a5f565b60405180910390f35b34801561080257600080fd5b5061081d60048036038101906108189190613c44565b611728565b60405161082a9190613c80565b60405180910390f35b34801561083f57600080fd5b5061084861173a565b6040516108559190613a5f565b60405180910390f35b34801561086a57600080fd5b5061087361174d565b6040516108809190613bec565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab9190613c44565b6117db565b005b3480156108be57600080fd5b506108d960048036038101906108d49190613db1565b6117ed565b6040516108e69190613cea565b60405180910390f35b3480156108fb57600080fd5b506109046118a5565b005b34801561091257600080fd5b5061091b6118b9565b6040516109289190613cea565b60405180910390f35b34801561093d57600080fd5b506109586004803603810190610953919061441f565b6118bf565b005b34801561096657600080fd5b50610981600480360381019061097c9190613c44565b6118d1565b005b34801561098f57600080fd5b50610998611931565b6040516109a5919061446d565b60405180910390f35b3480156109ba57600080fd5b506109d560048036038101906109d09190613c44565b611957565b005b3480156109e357600080fd5b506109ec61196b565b6040516109f99190613c80565b60405180910390f35b348015610a0e57600080fd5b50610a296004803603810190610a249190613d31565b611994565b005b348015610a3757600080fd5b50610a406119b9565b604051610a4d9190613bec565b60405180910390f35b348015610a6257600080fd5b50610a6b611a4b565b604051610a789190613a5f565b60405180910390f35b348015610a8d57600080fd5b50610aa86004803603810190610aa39190614488565b611a5e565b005b348015610ab657600080fd5b50610abf611a77565b604051610acc9190613cea565b60405180910390f35b348015610ae157600080fd5b50610afc6004803603810190610af79190613c44565b611a7d565b005b348015610b0a57600080fd5b50610b13611a8f565b005b348015610b2157600080fd5b50610b3c6004803603810190610b379190613c44565b611aa1565b005b610b586004803603810190610b539190614569565b611ab3565b005b348015610b6657600080fd5b50610b6f611b04565b604051610b7c9190613a5f565b60405180910390f35b348015610b9157600080fd5b50610b9a611b17565b604051610ba79190613cea565b60405180910390f35b348015610bbc57600080fd5b50610bd76004803603810190610bd29190613d31565b611b1d565b005b348015610be557600080fd5b50610bee611b42565b604051610bfb9190613bec565b60405180910390f35b348015610c1057600080fd5b50610c19611bd0565b604051610c269190613cea565b60405180910390f35b348015610c3b57600080fd5b50610c566004803603810190610c519190613c44565b611bd6565b604051610c639190613bec565b60405180910390f35b348015610c7857600080fd5b50610c936004803603810190610c8e9190613db1565b611cce565b604051610ca09190613cea565b60405180910390f35b348015610cb557600080fd5b50610cbe611d2a565b604051610ccb9190613cea565b60405180910390f35b348015610ce057600080fd5b50610cfb6004803603810190610cf69190613c44565b611d30565b005b348015610d0957600080fd5b50610d246004803603810190610d1f9190614357565b611d42565b005b610d406004803603810190610d3b9190614642565b611d5d565b005b348015610d4e57600080fd5b50610d696004803603810190610d6491906146b6565b612277565b604051610d769190613a5f565b60405180910390f35b348015610d8b57600080fd5b50610da66004803603810190610da19190613d31565b61230b565b005b348015610db457600080fd5b50610dcf6004803603810190610dca9190613db1565b612330565b005b348015610ddd57600080fd5b50610df86004803603810190610df3919061409a565b6123b3565b604051610e059190613cea565b60405180910390f35b6000610e19826123d8565b80610e295750610e288261246a565b5b9050919050565b610e386124e4565b610e428282612562565b5050565b606060038054610e5590614725565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8190614725565b8015610ece5780601f10610ea357610100808354040283529160200191610ece565b820191906000526020600020905b815481529060010190602001808311610eb157829003601f168201915b5050505050905090565b6000610ee3826126f7565b610f19576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610f6181612756565b610f6b8383612853565b505050565b7333d1aabb4d0a8d84f55a196517523d83cfebb71481565b600b5481565b610f966124e4565b80600f60016101000a81548160ff02191690831515021790555050565b6000610fbd612997565b6002546001540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110085761100733612756565b5b6110138484846129a0565b50505050565b6110216124e4565b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61106d6124e4565b6000611077610fb3565b90506000805b83518110156110c15783818151811061109957611098614756565b5b6020026020010151826110ac91906147b4565b915080806110b9906147e8565b91505061107d565b5060008111611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc9061487c565b60405180910390fd5b600c54818361111491906147b4565b1115611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c906148e8565b60405180910390fd5b60005b83518110156111bf576111ac86868381811061117757611176614756565b5b905060200201602081019061118c9190613db1565b85838151811061119f5761119e614756565b5b6020026020010151612cc2565b80806111b7906147e8565b915050611158565b505050505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff160361135c5760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000611366612ce0565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866113929190614908565b61139c9190614991565b90508160000151819350935050509250929050565b60115481565b60006013600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61141a6124e4565b600073ffffffffffffffffffffffffffffffffffffffff167333d1aabb4d0a8d84f55a196517523d83cfebb71473ffffffffffffffffffffffffffffffffffffffff160361149d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149490614a0e565b60405180910390fd5b60007333d1aabb4d0a8d84f55a196517523d83cfebb71473ffffffffffffffffffffffffffffffffffffffff16476040516114d790614a5f565b60006040518083038185875af1925050503d8060008114611514576040519150601f19603f3d011682016040523d82523d6000602084013e611519565b606091505b505090508061152757600080fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461157a5761157933612756565b5b611585848484612cea565b50505050565b6115936124e4565b80600b8190555050565b600060136000601254815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6014602052816000526040600020602052806000526040600020600091509150505481565b6116266124e4565b805182511461163457600080fd5b60005b82518110156116dc5781818151811061165357611652614756565b5b602002602001015160146000868152602001908152602001600020600085848151811061168357611682614756565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806116d4906147e8565b915050611637565b50505050565b6116ea6124e4565b80601590816116f99190614c16565b5050565b6117056124e4565b611710838383612d0a565b505050565b600f60009054906101000a900460ff1681565b600061173382612eb1565b9050919050565b600f60019054906101000a900460ff1681565b6015805461175a90614725565b80601f016020809104026020016040519081016040528092919081815260200182805461178690614725565b80156117d35780601f106117a8576101008083540402835291602001916117d3565b820191906000526020600020905b8154815290600101906020018083116117b657829003601f168201915b505050505081565b6117e36124e4565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611854576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6118ad6124e4565b6118b76000612f7d565b565b600e5481565b6118c76124e4565b8060118190555050565b6118d96124e4565b60008114806118e85750600181145b611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e90614d34565b60405180910390fd5b8060108190555050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61195f6124e4565b61196881613041565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61199c6124e4565b80600f60026101000a81548160ff02191690831515021790555050565b6060600480546119c890614725565b80601f01602080910402602001604051908101604052809291908181526020018280546119f490614725565b8015611a415780601f10611a1657610100808354040283529160200191611a41565b820191906000526020600020905b815481529060010190602001808311611a2457829003601f168201915b5050505050905090565b600f60029054906101000a900460ff1681565b81611a6881612756565b611a7283836130a0565b505050565b60105481565b611a856124e4565b80600d8190555050565b611a976124e4565b611a9f6131ab565b565b611aa96124e4565b80600e8190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611af157611af033612756565b5b611afd858585856131f8565b5050505050565b601760149054906101000a900460ff1681565b600d5481565b611b256124e4565b80600f60006101000a81548160ff02191690831515021790555050565b60168054611b4f90614725565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7b90614725565b8015611bc85780601f10611b9d57610100808354040283529160200191611bc8565b820191906000526020600020905b815481529060010190602001808311611bab57829003601f168201915b505050505081565b60125481565b606060011515601760149054906101000a900460ff16151503611c9b57601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b8152600401611c4e9190613cea565b600060405180830381865afa158015611c6b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611c949190614dc4565b9050611cc9565b611ca48261326b565b6016604051602001611cb7929190614ecc565b60405160208183030381529060405290505b919050565b600060146000601254815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c5481565b611d386124e4565b8060128190555050565b611d4a6124e4565b8060169081611d599190614c16565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290614f3c565b60405180910390fd5b600f60009054906101000a900460ff1615611e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1290614fa8565b60405180910390fd5b83600010611e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e559061487c565b60405180910390fd5b600d54841115611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a9061503a565b60405180910390fd5b600c54846001611eb1613309565b611ebb919061505a565b611ec591906147b4565b1115611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd906148e8565b60405180910390fd5b3484600b54611f159190614908565b1115611f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4d906150da565b60405180910390fd5b600060011515600f60019054906101000a900460ff1615150361213b576000601054036120405760003385604051602001611f92929190615163565b604051602081830303815290604052805190602001209050611ff8848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115483613313565b612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e906151db565b60405180910390fd5b84915050612136565b60016010540361213557600060146000601254815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054036120df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d6906151db565b60405180910390fd5b60146000601254815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b5b612141565b600e5490505b60011515600f60029054906101000a900460ff161515036122665760136000601254815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054816121ba919061505a565b8511156121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f390615247565b60405180910390fd5b8460136000601254815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461225e91906147b4565b925050819055505b6122703386612cc2565b5050505050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123136124e4565b80601760146101000a81548160ff02191690831515021790555050565b6123386124e4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239e906152d9565b60405180910390fd5b6123b081612f7d565b50565b6013602052816000526040600020602052806000526040600020600091509150505481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061243357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806124635750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124dd57506124dc8261332a565b5b9050919050565b6124ec613394565b73ffffffffffffffffffffffffffffffffffffffff1661250a61196b565b73ffffffffffffffffffffffffffffffffffffffff1614612560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255790615345565b60405180910390fd5b565b61256a612ce0565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156125c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bf906153d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262e90615443565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081612702612997565b11158015612711575060015482105b801561274f575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612850576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016127cd929190615463565b602060405180830381865afa1580156127ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061280e91906154a1565b61284f57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016128469190613c80565b60405180910390fd5b5b50565b600061285e82611728565b90508073ffffffffffffffffffffffffffffffffffffffff1661287f61339c565b73ffffffffffffffffffffffffffffffffffffffff16146128e2576128ab816128a661339c565b612277565b6128e1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006129ab82612eb1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612a12576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612a1e846133a4565b91509150612a348187612a2f61339c565b6133cb565b612a8057612a4986612a4461339c565b612277565b612a7f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612ae6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612af3868686600161340f565b8015612afe57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612bcc85612ba8888887613415565b7c02000000000000000000000000000000000000000000000000000000001761343d565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612c525760006001850190506000600560008381526020019081526020016000205403612c50576001548114612c4f578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cba8686866001613468565b505050505050565b612cdc82826040518060200160405280600081525061346e565b5050565b6000612710905090565b612d0583838360405180602001604052806000815250611ab3565b505050565b612d12612ce0565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d67906153d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd69061551a565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b60008082905080612ec0612997565b11612f4657600154811015612f455760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612f43575b60008103612f39576005600083600190039350838152602001908152602001600020549050612f0f565b8092505050612f78565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a6000828152602001908152602001600020600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff0219169055505050565b80600860006130ad61339c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661315a61339c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161319f9190613a5f565b60405180910390a35050565b6009600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff02191690555050565b613203848484610fca565b60008373ffffffffffffffffffffffffffffffffffffffff163b146132655761322e8484848461350c565b613264576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060613276826126f7565b6132ac576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006132b661365c565b905060008151036132d65760405180602001604052806000815250613301565b806132e0846136ee565b6040516020016132f192919061553a565b6040516020818303038152906040525b915050919050565b6000600154905090565b600082613320858461373e565b1490509392505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861342c868684613794565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b613478838361379d565b60008373ffffffffffffffffffffffffffffffffffffffff163b146135075760006001549050600083820390505b6134b9600086838060010194508661350c565b6134ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106134a657816001541461350457600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261353261339c565b8786866040518563ffffffff1660e01b815260040161355494939291906155b3565b6020604051808303816000875af192505050801561359057506040513d601f19601f8201168201806040525081019061358d9190615614565b60015b613609573d80600081146135c0576040519150601f19603f3d011682016040523d82523d6000602084013e6135c5565b606091505b506000815103613601576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606015805461366b90614725565b80601f016020809104026020016040519081016040528092919081815260200182805461369790614725565b80156136e45780601f106136b9576101008083540402835291602001916136e4565b820191906000526020600020905b8154815290600101906020018083116136c757829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561372957600184039350600a81066030018453600a8104905080613707575b50828103602084039350808452505050919050565b60008082905060005b8451811015613789576137748286838151811061376757613766614756565b5b6020026020010151613959565b91508080613781906147e8565b915050613747565b508091505092915050565b60009392505050565b60006001549050600082036137de576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137eb600084838561340f565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613862836138536000866000613415565b61385c85613984565b1761343d565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461390357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506138c8565b506000820361393e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506139546000848385613468565b505050565b60008183106139715761396c8284613994565b61397c565b61397b8383613994565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139f4816139bf565b81146139ff57600080fd5b50565b600081359050613a11816139eb565b92915050565b600060208284031215613a2d57613a2c6139b5565b5b6000613a3b84828501613a02565b91505092915050565b60008115159050919050565b613a5981613a44565b82525050565b6000602082019050613a746000830184613a50565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613aa582613a7a565b9050919050565b613ab581613a9a565b8114613ac057600080fd5b50565b600081359050613ad281613aac565b92915050565b60006bffffffffffffffffffffffff82169050919050565b613af981613ad8565b8114613b0457600080fd5b50565b600081359050613b1681613af0565b92915050565b60008060408385031215613b3357613b326139b5565b5b6000613b4185828601613ac3565b9250506020613b5285828601613b07565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b96578082015181840152602081019050613b7b565b60008484015250505050565b6000601f19601f8301169050919050565b6000613bbe82613b5c565b613bc88185613b67565b9350613bd8818560208601613b78565b613be181613ba2565b840191505092915050565b60006020820190508181036000830152613c068184613bb3565b905092915050565b6000819050919050565b613c2181613c0e565b8114613c2c57600080fd5b50565b600081359050613c3e81613c18565b92915050565b600060208284031215613c5a57613c596139b5565b5b6000613c6884828501613c2f565b91505092915050565b613c7a81613a9a565b82525050565b6000602082019050613c956000830184613c71565b92915050565b60008060408385031215613cb257613cb16139b5565b5b6000613cc085828601613ac3565b9250506020613cd185828601613c2f565b9150509250929050565b613ce481613c0e565b82525050565b6000602082019050613cff6000830184613cdb565b92915050565b613d0e81613a44565b8114613d1957600080fd5b50565b600081359050613d2b81613d05565b92915050565b600060208284031215613d4757613d466139b5565b5b6000613d5584828501613d1c565b91505092915050565b600080600060608486031215613d7757613d766139b5565b5b6000613d8586828701613ac3565b9350506020613d9686828701613ac3565b9250506040613da786828701613c2f565b9150509250925092565b600060208284031215613dc757613dc66139b5565b5b6000613dd584828501613ac3565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613e0357613e02613dde565b5b8235905067ffffffffffffffff811115613e2057613e1f613de3565b5b602083019150836020820283011115613e3c57613e3b613de8565b5b9250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e7b82613ba2565b810181811067ffffffffffffffff82111715613e9a57613e99613e43565b5b80604052505050565b6000613ead6139ab565b9050613eb98282613e72565b919050565b600067ffffffffffffffff821115613ed957613ed8613e43565b5b602082029050602081019050919050565b6000613efd613ef884613ebe565b613ea3565b90508083825260208201905060208402830185811115613f2057613f1f613de8565b5b835b81811015613f495780613f358882613c2f565b845260208401935050602081019050613f22565b5050509392505050565b600082601f830112613f6857613f67613dde565b5b8135613f78848260208601613eea565b91505092915050565b600080600060408486031215613f9a57613f996139b5565b5b600084013567ffffffffffffffff811115613fb857613fb76139ba565b5b613fc486828701613ded565b9350935050602084013567ffffffffffffffff811115613fe757613fe66139ba565b5b613ff386828701613f53565b9150509250925092565b60008060408385031215614014576140136139b5565b5b600061402285828601613c2f565b925050602061403385828601613c2f565b9150509250929050565b60006040820190506140526000830185613c71565b61405f6020830184613cdb565b9392505050565b6000819050919050565b61407981614066565b82525050565b60006020820190506140946000830184614070565b92915050565b600080604083850312156140b1576140b06139b5565b5b60006140bf85828601613c2f565b92505060206140d085828601613ac3565b9150509250929050565b6000819050919050565b60006140ff6140fa6140f584613a7a565b6140da565b613a7a565b9050919050565b6000614111826140e4565b9050919050565b600061412382614106565b9050919050565b61413381614118565b82525050565b600060208201905061414e600083018461412a565b92915050565b600067ffffffffffffffff82111561416f5761416e613e43565b5b602082029050602081019050919050565b600061419361418e84614154565b613ea3565b905080838252602082019050602084028301858111156141b6576141b5613de8565b5b835b818110156141df57806141cb8882613ac3565b8452602084019350506020810190506141b8565b5050509392505050565b600082601f8301126141fe576141fd613dde565b5b813561420e848260208601614180565b91505092915050565b6000806000606084860312156142305761422f6139b5565b5b600061423e86828701613c2f565b935050602084013567ffffffffffffffff81111561425f5761425e6139ba565b5b61426b868287016141e9565b925050604084013567ffffffffffffffff81111561428c5761428b6139ba565b5b61429886828701613f53565b9150509250925092565b600080fd5b600067ffffffffffffffff8211156142c2576142c1613e43565b5b6142cb82613ba2565b9050602081019050919050565b82818337600083830152505050565b60006142fa6142f5846142a7565b613ea3565b905082815260208101848484011115614316576143156142a2565b5b6143218482856142d8565b509392505050565b600082601f83011261433e5761433d613dde565b5b813561434e8482602086016142e7565b91505092915050565b60006020828403121561436d5761436c6139b5565b5b600082013567ffffffffffffffff81111561438b5761438a6139ba565b5b61439784828501614329565b91505092915050565b6000806000606084860312156143b9576143b86139b5565b5b60006143c786828701613c2f565b93505060206143d886828701613ac3565b92505060406143e986828701613b07565b9150509250925092565b6143fc81614066565b811461440757600080fd5b50565b600081359050614419816143f3565b92915050565b600060208284031215614435576144346139b5565b5b60006144438482850161440a565b91505092915050565b600061445782614106565b9050919050565b6144678161444c565b82525050565b6000602082019050614482600083018461445e565b92915050565b6000806040838503121561449f5761449e6139b5565b5b60006144ad85828601613ac3565b92505060206144be85828601613d1c565b9150509250929050565b600067ffffffffffffffff8211156144e3576144e2613e43565b5b6144ec82613ba2565b9050602081019050919050565b600061450c614507846144c8565b613ea3565b905082815260208101848484011115614528576145276142a2565b5b6145338482856142d8565b509392505050565b600082601f8301126145505761454f613dde565b5b81356145608482602086016144f9565b91505092915050565b60008060008060808587031215614583576145826139b5565b5b600061459187828801613ac3565b94505060206145a287828801613ac3565b93505060406145b387828801613c2f565b925050606085013567ffffffffffffffff8111156145d4576145d36139ba565b5b6145e08782880161453b565b91505092959194509250565b60008083601f84011261460257614601613dde565b5b8235905067ffffffffffffffff81111561461f5761461e613de3565b5b60208301915083602082028301111561463b5761463a613de8565b5b9250929050565b6000806000806060858703121561465c5761465b6139b5565b5b600061466a87828801613c2f565b945050602061467b87828801613c2f565b935050604085013567ffffffffffffffff81111561469c5761469b6139ba565b5b6146a8878288016145ec565b925092505092959194509250565b600080604083850312156146cd576146cc6139b5565b5b60006146db85828601613ac3565b92505060206146ec85828601613ac3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061473d57607f821691505b6020821081036147505761474f6146f6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147bf82613c0e565b91506147ca83613c0e565b92508282019050808211156147e2576147e1614785565b5b92915050565b60006147f382613c0e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361482557614824614785565b5b600182019050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000614866601b83613b67565b915061487182614830565b602082019050919050565b6000602082019050818103600083015261489581614859565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b60006148d2601683613b67565b91506148dd8261489c565b602082019050919050565b60006020820190508181036000830152614901816148c5565b9050919050565b600061491382613c0e565b915061491e83613c0e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561495757614956614785565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061499c82613c0e565b91506149a783613c0e565b9250826149b7576149b6614962565b5b828204905092915050565b7f54686520616464726573732073686f756c646e27742062652030000000000000600082015250565b60006149f8601a83613b67565b9150614a03826149c2565b602082019050919050565b60006020820190508181036000830152614a27816149eb565b9050919050565b600081905092915050565b50565b6000614a49600083614a2e565b9150614a5482614a39565b600082019050919050565b6000614a6a82614a3c565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614ad67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614a99565b614ae08683614a99565b95508019841693508086168417925050509392505050565b6000614b13614b0e614b0984613c0e565b6140da565b613c0e565b9050919050565b6000819050919050565b614b2d83614af8565b614b41614b3982614b1a565b848454614aa6565b825550505050565b600090565b614b56614b49565b614b61818484614b24565b505050565b5b81811015614b8557614b7a600082614b4e565b600181019050614b67565b5050565b601f821115614bca57614b9b81614a74565b614ba484614a89565b81016020851015614bb3578190505b614bc7614bbf85614a89565b830182614b66565b50505b505050565b600082821c905092915050565b6000614bed60001984600802614bcf565b1980831691505092915050565b6000614c068383614bdc565b9150826002028217905092915050565b614c1f82613b5c565b67ffffffffffffffff811115614c3857614c37613e43565b5b614c428254614725565b614c4d828285614b89565b600060209050601f831160018114614c805760008415614c6e578287015190505b614c788582614bfa565b865550614ce0565b601f198416614c8e86614a74565b60005b82811015614cb657848901518255600182019150602085019450602081019050614c91565b86831015614cd35784890151614ccf601f891682614bdc565b8355505b6001600288020188555050505b505050505050565b7f416c6c6f77206c6973742074797065206572726f720000000000000000000000600082015250565b6000614d1e601583613b67565b9150614d2982614ce8565b602082019050919050565b60006020820190508181036000830152614d4d81614d11565b9050919050565b6000614d67614d62846142a7565b613ea3565b905082815260208101848484011115614d8357614d826142a2565b5b614d8e848285613b78565b509392505050565b600082601f830112614dab57614daa613dde565b5b8151614dbb848260208601614d54565b91505092915050565b600060208284031215614dda57614dd96139b5565b5b600082015167ffffffffffffffff811115614df857614df76139ba565b5b614e0484828501614d96565b91505092915050565b600081905092915050565b6000614e2382613b5c565b614e2d8185614e0d565b9350614e3d818560208601613b78565b80840191505092915050565b60008154614e5681614725565b614e608186614e0d565b94506001821660008114614e7b5760018114614e9057614ec3565b60ff1983168652811515820286019350614ec3565b614e9985614a74565b60005b83811015614ebb57815481890152600182019150602081019050614e9c565b838801955050505b50505092915050565b6000614ed88285614e18565b9150614ee48284614e49565b91508190509392505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163742e00600082015250565b6000614f26601f83613b67565b9150614f3182614ef0565b602082019050919050565b60006020820190508181036000830152614f5581614f19565b9050919050565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b6000614f92601683613b67565b9150614f9d82614f5c565b602082019050919050565b60006020820190508181036000830152614fc181614f85565b9050919050565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b6000615024602483613b67565b915061502f82614fc8565b604082019050919050565b6000602082019050818103600083015261505381615017565b9050919050565b600061506582613c0e565b915061507083613c0e565b925082820390508181111561508857615087614785565b5b92915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006150c4601283613b67565b91506150cf8261508e565b602082019050919050565b600060208201905081810360008301526150f3816150b7565b9050919050565b60008160601b9050919050565b6000615112826150fa565b9050919050565b600061512482615107565b9050919050565b61513c61513782613a9a565b615119565b82525050565b6000819050919050565b61515d61515882613c0e565b615142565b82525050565b600061516f828561512b565b60148201915061517f828461514c565b6020820191508190509392505050565b7f75736572206973206e6f7420616c6c6f776c6973746564000000000000000000600082015250565b60006151c5601783613b67565b91506151d08261518f565b602082019050919050565b600060208201905081810360008301526151f4816151b8565b9050919050565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b6000615231601c83613b67565b915061523c826151fb565b602082019050919050565b6000602082019050818103600083015261526081615224565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006152c3602683613b67565b91506152ce82615267565b604082019050919050565b600060208201905081810360008301526152f2816152b6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061532f602083613b67565b915061533a826152f9565b602082019050919050565b6000602082019050818103600083015261535e81615322565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006153c1602a83613b67565b91506153cc82615365565b604082019050919050565b600060208201905081810360008301526153f0816153b4565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061542d601983613b67565b9150615438826153f7565b602082019050919050565b6000602082019050818103600083015261545c81615420565b9050919050565b60006040820190506154786000830185613c71565b6154856020830184613c71565b9392505050565b60008151905061549b81613d05565b92915050565b6000602082840312156154b7576154b66139b5565b5b60006154c58482850161548c565b91505092915050565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b6000615504601b83613b67565b915061550f826154ce565b602082019050919050565b60006020820190508181036000830152615533816154f7565b9050919050565b60006155468285614e18565b91506155528284614e18565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b60006155858261555e565b61558f8185615569565b935061559f818560208601613b78565b6155a881613ba2565b840191505092915050565b60006080820190506155c86000830187613c71565b6155d56020830186613c71565b6155e26040830185613cdb565b81810360608301526155f4818461557a565b905095945050505050565b60008151905061560e816139eb565b92915050565b60006020828403121561562a576156296139b5565b5b6000615638848285016155ff565b9150509291505056fea2646970667358221220e6565e99fc672baa39e15459c5b17d54da70b42fd7d5d19e4fac9198ec38fc6064736f6c6343000810003368747470733a2f2f65646f2d312e636f6d2f646174612f65646f38616e2f6a736f6e2f

Deployed Bytecode

0x6080604052600436106103a25760003560e01c8063715018a6116101e7578063b88d4fde1161010d578063d5abeb01116100a0578063e985e9c51161006f578063e985e9c514610d42578063f138abfa14610d7f578063f2fde38b14610da8578063f48824db14610dd1576103a2565b8063d5abeb0114610ca9578063d728312a14610cd4578063da3ef23f14610cfd578063e6d37b8814610d26576103a2565b8063c6682862116100dc578063c668286214610bd9578063c84c038714610c04578063c87b56dd14610c2f578063d04f32d214610c6c576103a2565b8063b88d4fde14610b3e578063ba6269c614610b5a578063bbb8974414610b85578063bedb86fb14610bb0576103a2565b80638e73cf0011610185578063a72193b611610154578063a72193b614610aaa578063a9e2acd514610ad5578063aa1b103f14610afe578063b5f94d0614610b15576103a2565b80638e73cf0014610a0257806395d89b4114610a2b5780639659867e14610a56578063a22cb46514610a81576103a2565b80637ee3b2ac116101c15780637ee3b2ac1461095a578063877984cb146109835780638a616bc0146109ae5780638da5cb5b146109d7576103a2565b8063715018a6146108ef57806373ef64fd146109065780637cb6475914610931576103a2565b80633ccfd60b116102cc57806355f804b31161026a578063674c02aa11610239578063674c02aa146108335780636c0360eb1461085e5780636f8b44b01461088957806370a08231146108b2576103a2565b806355f804b3146107795780635944c753146107a25780635c975abb146107cb5780636352211e146107f6576103a2565b806344a0d68a116102a657806344a0d68a146106ad57806347705cbc146106d6578063499a15d4146107135780634e6bf20414610750576103a2565b80633ccfd60b1461064f57806341f434341461066657806342842e0e14610691576103a2565b806317dc10c411610344578063279a669e11610313578063279a669e146105805780632a55205a146105a95780632eb4a7ab146105e75780633511cd5414610612576103a2565b806317dc10c4146104e757806318160ddd1461051057806323b872dd1461053b57806323c0308514610557576103a2565b8063081812fc11610380578063081812fc14610438578063095ea7b314610475578063122e04a81461049157806313faede6146104bc576103a2565b806301ffc9a7146103a757806304634d8d146103e457806306fdde031461040d575b600080fd5b3480156103b357600080fd5b506103ce60048036038101906103c99190613a17565b610e0e565b6040516103db9190613a5f565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190613b1c565b610e30565b005b34801561041957600080fd5b50610422610e46565b60405161042f9190613bec565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613c44565b610ed8565b60405161046c9190613c80565b60405180910390f35b61048f600480360381019061048a9190613c9b565b610f57565b005b34801561049d57600080fd5b506104a6610f70565b6040516104b39190613c80565b60405180910390f35b3480156104c857600080fd5b506104d1610f88565b6040516104de9190613cea565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190613d31565b610f8e565b005b34801561051c57600080fd5b50610525610fb3565b6040516105329190613cea565b60405180910390f35b61055560048036038101906105509190613d5e565b610fca565b005b34801561056357600080fd5b5061057e60048036038101906105799190613db1565b611019565b005b34801561058c57600080fd5b506105a760048036038101906105a29190613f81565b611065565b005b3480156105b557600080fd5b506105d060048036038101906105cb9190613ffd565b6111c7565b6040516105de92919061403d565b60405180910390f35b3480156105f357600080fd5b506105fc6113b1565b604051610609919061407f565b60405180910390f35b34801561061e57600080fd5b506106396004803603810190610634919061409a565b6113b7565b6040516106469190613cea565b60405180910390f35b34801561065b57600080fd5b50610664611412565b005b34801561067257600080fd5b5061067b61152a565b6040516106889190614139565b60405180910390f35b6106ab60048036038101906106a69190613d5e565b61153c565b005b3480156106b957600080fd5b506106d460048036038101906106cf9190613c44565b61158b565b005b3480156106e257600080fd5b506106fd60048036038101906106f89190613db1565b61159d565b60405161070a9190613cea565b60405180910390f35b34801561071f57600080fd5b5061073a6004803603810190610735919061409a565b6115f9565b6040516107479190613cea565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190614217565b61161e565b005b34801561078557600080fd5b506107a0600480360381019061079b9190614357565b6116e2565b005b3480156107ae57600080fd5b506107c960048036038101906107c491906143a0565b6116fd565b005b3480156107d757600080fd5b506107e0611715565b6040516107ed9190613a5f565b60405180910390f35b34801561080257600080fd5b5061081d60048036038101906108189190613c44565b611728565b60405161082a9190613c80565b60405180910390f35b34801561083f57600080fd5b5061084861173a565b6040516108559190613a5f565b60405180910390f35b34801561086a57600080fd5b5061087361174d565b6040516108809190613bec565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab9190613c44565b6117db565b005b3480156108be57600080fd5b506108d960048036038101906108d49190613db1565b6117ed565b6040516108e69190613cea565b60405180910390f35b3480156108fb57600080fd5b506109046118a5565b005b34801561091257600080fd5b5061091b6118b9565b6040516109289190613cea565b60405180910390f35b34801561093d57600080fd5b506109586004803603810190610953919061441f565b6118bf565b005b34801561096657600080fd5b50610981600480360381019061097c9190613c44565b6118d1565b005b34801561098f57600080fd5b50610998611931565b6040516109a5919061446d565b60405180910390f35b3480156109ba57600080fd5b506109d560048036038101906109d09190613c44565b611957565b005b3480156109e357600080fd5b506109ec61196b565b6040516109f99190613c80565b60405180910390f35b348015610a0e57600080fd5b50610a296004803603810190610a249190613d31565b611994565b005b348015610a3757600080fd5b50610a406119b9565b604051610a4d9190613bec565b60405180910390f35b348015610a6257600080fd5b50610a6b611a4b565b604051610a789190613a5f565b60405180910390f35b348015610a8d57600080fd5b50610aa86004803603810190610aa39190614488565b611a5e565b005b348015610ab657600080fd5b50610abf611a77565b604051610acc9190613cea565b60405180910390f35b348015610ae157600080fd5b50610afc6004803603810190610af79190613c44565b611a7d565b005b348015610b0a57600080fd5b50610b13611a8f565b005b348015610b2157600080fd5b50610b3c6004803603810190610b379190613c44565b611aa1565b005b610b586004803603810190610b539190614569565b611ab3565b005b348015610b6657600080fd5b50610b6f611b04565b604051610b7c9190613a5f565b60405180910390f35b348015610b9157600080fd5b50610b9a611b17565b604051610ba79190613cea565b60405180910390f35b348015610bbc57600080fd5b50610bd76004803603810190610bd29190613d31565b611b1d565b005b348015610be557600080fd5b50610bee611b42565b604051610bfb9190613bec565b60405180910390f35b348015610c1057600080fd5b50610c19611bd0565b604051610c269190613cea565b60405180910390f35b348015610c3b57600080fd5b50610c566004803603810190610c519190613c44565b611bd6565b604051610c639190613bec565b60405180910390f35b348015610c7857600080fd5b50610c936004803603810190610c8e9190613db1565b611cce565b604051610ca09190613cea565b60405180910390f35b348015610cb557600080fd5b50610cbe611d2a565b604051610ccb9190613cea565b60405180910390f35b348015610ce057600080fd5b50610cfb6004803603810190610cf69190613c44565b611d30565b005b348015610d0957600080fd5b50610d246004803603810190610d1f9190614357565b611d42565b005b610d406004803603810190610d3b9190614642565b611d5d565b005b348015610d4e57600080fd5b50610d696004803603810190610d6491906146b6565b612277565b604051610d769190613a5f565b60405180910390f35b348015610d8b57600080fd5b50610da66004803603810190610da19190613d31565b61230b565b005b348015610db457600080fd5b50610dcf6004803603810190610dca9190613db1565b612330565b005b348015610ddd57600080fd5b50610df86004803603810190610df3919061409a565b6123b3565b604051610e059190613cea565b60405180910390f35b6000610e19826123d8565b80610e295750610e288261246a565b5b9050919050565b610e386124e4565b610e428282612562565b5050565b606060038054610e5590614725565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8190614725565b8015610ece5780601f10610ea357610100808354040283529160200191610ece565b820191906000526020600020905b815481529060010190602001808311610eb157829003601f168201915b5050505050905090565b6000610ee3826126f7565b610f19576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610f6181612756565b610f6b8383612853565b505050565b7333d1aabb4d0a8d84f55a196517523d83cfebb71481565b600b5481565b610f966124e4565b80600f60016101000a81548160ff02191690831515021790555050565b6000610fbd612997565b6002546001540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110085761100733612756565b5b6110138484846129a0565b50505050565b6110216124e4565b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61106d6124e4565b6000611077610fb3565b90506000805b83518110156110c15783818151811061109957611098614756565b5b6020026020010151826110ac91906147b4565b915080806110b9906147e8565b91505061107d565b5060008111611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc9061487c565b60405180910390fd5b600c54818361111491906147b4565b1115611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c906148e8565b60405180910390fd5b60005b83518110156111bf576111ac86868381811061117757611176614756565b5b905060200201602081019061118c9190613db1565b85838151811061119f5761119e614756565b5b6020026020010151612cc2565b80806111b7906147e8565b915050611158565b505050505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff160361135c5760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000611366612ce0565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866113929190614908565b61139c9190614991565b90508160000151819350935050509250929050565b60115481565b60006013600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61141a6124e4565b600073ffffffffffffffffffffffffffffffffffffffff167333d1aabb4d0a8d84f55a196517523d83cfebb71473ffffffffffffffffffffffffffffffffffffffff160361149d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149490614a0e565b60405180910390fd5b60007333d1aabb4d0a8d84f55a196517523d83cfebb71473ffffffffffffffffffffffffffffffffffffffff16476040516114d790614a5f565b60006040518083038185875af1925050503d8060008114611514576040519150601f19603f3d011682016040523d82523d6000602084013e611519565b606091505b505090508061152757600080fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461157a5761157933612756565b5b611585848484612cea565b50505050565b6115936124e4565b80600b8190555050565b600060136000601254815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6014602052816000526040600020602052806000526040600020600091509150505481565b6116266124e4565b805182511461163457600080fd5b60005b82518110156116dc5781818151811061165357611652614756565b5b602002602001015160146000868152602001908152602001600020600085848151811061168357611682614756565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806116d4906147e8565b915050611637565b50505050565b6116ea6124e4565b80601590816116f99190614c16565b5050565b6117056124e4565b611710838383612d0a565b505050565b600f60009054906101000a900460ff1681565b600061173382612eb1565b9050919050565b600f60019054906101000a900460ff1681565b6015805461175a90614725565b80601f016020809104026020016040519081016040528092919081815260200182805461178690614725565b80156117d35780601f106117a8576101008083540402835291602001916117d3565b820191906000526020600020905b8154815290600101906020018083116117b657829003601f168201915b505050505081565b6117e36124e4565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611854576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6118ad6124e4565b6118b76000612f7d565b565b600e5481565b6118c76124e4565b8060118190555050565b6118d96124e4565b60008114806118e85750600181145b611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e90614d34565b60405180910390fd5b8060108190555050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61195f6124e4565b61196881613041565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61199c6124e4565b80600f60026101000a81548160ff02191690831515021790555050565b6060600480546119c890614725565b80601f01602080910402602001604051908101604052809291908181526020018280546119f490614725565b8015611a415780601f10611a1657610100808354040283529160200191611a41565b820191906000526020600020905b815481529060010190602001808311611a2457829003601f168201915b5050505050905090565b600f60029054906101000a900460ff1681565b81611a6881612756565b611a7283836130a0565b505050565b60105481565b611a856124e4565b80600d8190555050565b611a976124e4565b611a9f6131ab565b565b611aa96124e4565b80600e8190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611af157611af033612756565b5b611afd858585856131f8565b5050505050565b601760149054906101000a900460ff1681565b600d5481565b611b256124e4565b80600f60006101000a81548160ff02191690831515021790555050565b60168054611b4f90614725565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7b90614725565b8015611bc85780601f10611b9d57610100808354040283529160200191611bc8565b820191906000526020600020905b815481529060010190602001808311611bab57829003601f168201915b505050505081565b60125481565b606060011515601760149054906101000a900460ff16151503611c9b57601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b8152600401611c4e9190613cea565b600060405180830381865afa158015611c6b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611c949190614dc4565b9050611cc9565b611ca48261326b565b6016604051602001611cb7929190614ecc565b60405160208183030381529060405290505b919050565b600060146000601254815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c5481565b611d386124e4565b8060128190555050565b611d4a6124e4565b8060169081611d599190614c16565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290614f3c565b60405180910390fd5b600f60009054906101000a900460ff1615611e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1290614fa8565b60405180910390fd5b83600010611e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e559061487c565b60405180910390fd5b600d54841115611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a9061503a565b60405180910390fd5b600c54846001611eb1613309565b611ebb919061505a565b611ec591906147b4565b1115611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd906148e8565b60405180910390fd5b3484600b54611f159190614908565b1115611f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4d906150da565b60405180910390fd5b600060011515600f60019054906101000a900460ff1615150361213b576000601054036120405760003385604051602001611f92929190615163565b604051602081830303815290604052805190602001209050611ff8848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115483613313565b612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e906151db565b60405180910390fd5b84915050612136565b60016010540361213557600060146000601254815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054036120df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d6906151db565b60405180910390fd5b60146000601254815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b5b612141565b600e5490505b60011515600f60029054906101000a900460ff161515036122665760136000601254815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054816121ba919061505a565b8511156121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f390615247565b60405180910390fd5b8460136000601254815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461225e91906147b4565b925050819055505b6122703386612cc2565b5050505050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123136124e4565b80601760146101000a81548160ff02191690831515021790555050565b6123386124e4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239e906152d9565b60405180910390fd5b6123b081612f7d565b50565b6013602052816000526040600020602052806000526040600020600091509150505481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061243357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806124635750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124dd57506124dc8261332a565b5b9050919050565b6124ec613394565b73ffffffffffffffffffffffffffffffffffffffff1661250a61196b565b73ffffffffffffffffffffffffffffffffffffffff1614612560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255790615345565b60405180910390fd5b565b61256a612ce0565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156125c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bf906153d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262e90615443565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081612702612997565b11158015612711575060015482105b801561274f575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612850576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016127cd929190615463565b602060405180830381865afa1580156127ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061280e91906154a1565b61284f57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016128469190613c80565b60405180910390fd5b5b50565b600061285e82611728565b90508073ffffffffffffffffffffffffffffffffffffffff1661287f61339c565b73ffffffffffffffffffffffffffffffffffffffff16146128e2576128ab816128a661339c565b612277565b6128e1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006129ab82612eb1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612a12576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612a1e846133a4565b91509150612a348187612a2f61339c565b6133cb565b612a8057612a4986612a4461339c565b612277565b612a7f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612ae6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612af3868686600161340f565b8015612afe57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612bcc85612ba8888887613415565b7c02000000000000000000000000000000000000000000000000000000001761343d565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612c525760006001850190506000600560008381526020019081526020016000205403612c50576001548114612c4f578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cba8686866001613468565b505050505050565b612cdc82826040518060200160405280600081525061346e565b5050565b6000612710905090565b612d0583838360405180602001604052806000815250611ab3565b505050565b612d12612ce0565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d67906153d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd69061551a565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b60008082905080612ec0612997565b11612f4657600154811015612f455760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612f43575b60008103612f39576005600083600190039350838152602001908152602001600020549050612f0f565b8092505050612f78565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a6000828152602001908152602001600020600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff0219169055505050565b80600860006130ad61339c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661315a61339c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161319f9190613a5f565b60405180910390a35050565b6009600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff02191690555050565b613203848484610fca565b60008373ffffffffffffffffffffffffffffffffffffffff163b146132655761322e8484848461350c565b613264576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060613276826126f7565b6132ac576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006132b661365c565b905060008151036132d65760405180602001604052806000815250613301565b806132e0846136ee565b6040516020016132f192919061553a565b6040516020818303038152906040525b915050919050565b6000600154905090565b600082613320858461373e565b1490509392505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861342c868684613794565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b613478838361379d565b60008373ffffffffffffffffffffffffffffffffffffffff163b146135075760006001549050600083820390505b6134b9600086838060010194508661350c565b6134ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106134a657816001541461350457600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261353261339c565b8786866040518563ffffffff1660e01b815260040161355494939291906155b3565b6020604051808303816000875af192505050801561359057506040513d601f19601f8201168201806040525081019061358d9190615614565b60015b613609573d80600081146135c0576040519150601f19603f3d011682016040523d82523d6000602084013e6135c5565b606091505b506000815103613601576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606015805461366b90614725565b80601f016020809104026020016040519081016040528092919081815260200182805461369790614725565b80156136e45780601f106136b9576101008083540402835291602001916136e4565b820191906000526020600020905b8154815290600101906020018083116136c757829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561372957600184039350600a81066030018453600a8104905080613707575b50828103602084039350808452505050919050565b60008082905060005b8451811015613789576137748286838151811061376757613766614756565b5b6020026020010151613959565b91508080613781906147e8565b915050613747565b508091505092915050565b60009392505050565b60006001549050600082036137de576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137eb600084838561340f565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613862836138536000866000613415565b61385c85613984565b1761343d565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461390357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506138c8565b506000820361393e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506139546000848385613468565b505050565b60008183106139715761396c8284613994565b61397c565b61397b8383613994565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139f4816139bf565b81146139ff57600080fd5b50565b600081359050613a11816139eb565b92915050565b600060208284031215613a2d57613a2c6139b5565b5b6000613a3b84828501613a02565b91505092915050565b60008115159050919050565b613a5981613a44565b82525050565b6000602082019050613a746000830184613a50565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613aa582613a7a565b9050919050565b613ab581613a9a565b8114613ac057600080fd5b50565b600081359050613ad281613aac565b92915050565b60006bffffffffffffffffffffffff82169050919050565b613af981613ad8565b8114613b0457600080fd5b50565b600081359050613b1681613af0565b92915050565b60008060408385031215613b3357613b326139b5565b5b6000613b4185828601613ac3565b9250506020613b5285828601613b07565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b96578082015181840152602081019050613b7b565b60008484015250505050565b6000601f19601f8301169050919050565b6000613bbe82613b5c565b613bc88185613b67565b9350613bd8818560208601613b78565b613be181613ba2565b840191505092915050565b60006020820190508181036000830152613c068184613bb3565b905092915050565b6000819050919050565b613c2181613c0e565b8114613c2c57600080fd5b50565b600081359050613c3e81613c18565b92915050565b600060208284031215613c5a57613c596139b5565b5b6000613c6884828501613c2f565b91505092915050565b613c7a81613a9a565b82525050565b6000602082019050613c956000830184613c71565b92915050565b60008060408385031215613cb257613cb16139b5565b5b6000613cc085828601613ac3565b9250506020613cd185828601613c2f565b9150509250929050565b613ce481613c0e565b82525050565b6000602082019050613cff6000830184613cdb565b92915050565b613d0e81613a44565b8114613d1957600080fd5b50565b600081359050613d2b81613d05565b92915050565b600060208284031215613d4757613d466139b5565b5b6000613d5584828501613d1c565b91505092915050565b600080600060608486031215613d7757613d766139b5565b5b6000613d8586828701613ac3565b9350506020613d9686828701613ac3565b9250506040613da786828701613c2f565b9150509250925092565b600060208284031215613dc757613dc66139b5565b5b6000613dd584828501613ac3565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613e0357613e02613dde565b5b8235905067ffffffffffffffff811115613e2057613e1f613de3565b5b602083019150836020820283011115613e3c57613e3b613de8565b5b9250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e7b82613ba2565b810181811067ffffffffffffffff82111715613e9a57613e99613e43565b5b80604052505050565b6000613ead6139ab565b9050613eb98282613e72565b919050565b600067ffffffffffffffff821115613ed957613ed8613e43565b5b602082029050602081019050919050565b6000613efd613ef884613ebe565b613ea3565b90508083825260208201905060208402830185811115613f2057613f1f613de8565b5b835b81811015613f495780613f358882613c2f565b845260208401935050602081019050613f22565b5050509392505050565b600082601f830112613f6857613f67613dde565b5b8135613f78848260208601613eea565b91505092915050565b600080600060408486031215613f9a57613f996139b5565b5b600084013567ffffffffffffffff811115613fb857613fb76139ba565b5b613fc486828701613ded565b9350935050602084013567ffffffffffffffff811115613fe757613fe66139ba565b5b613ff386828701613f53565b9150509250925092565b60008060408385031215614014576140136139b5565b5b600061402285828601613c2f565b925050602061403385828601613c2f565b9150509250929050565b60006040820190506140526000830185613c71565b61405f6020830184613cdb565b9392505050565b6000819050919050565b61407981614066565b82525050565b60006020820190506140946000830184614070565b92915050565b600080604083850312156140b1576140b06139b5565b5b60006140bf85828601613c2f565b92505060206140d085828601613ac3565b9150509250929050565b6000819050919050565b60006140ff6140fa6140f584613a7a565b6140da565b613a7a565b9050919050565b6000614111826140e4565b9050919050565b600061412382614106565b9050919050565b61413381614118565b82525050565b600060208201905061414e600083018461412a565b92915050565b600067ffffffffffffffff82111561416f5761416e613e43565b5b602082029050602081019050919050565b600061419361418e84614154565b613ea3565b905080838252602082019050602084028301858111156141b6576141b5613de8565b5b835b818110156141df57806141cb8882613ac3565b8452602084019350506020810190506141b8565b5050509392505050565b600082601f8301126141fe576141fd613dde565b5b813561420e848260208601614180565b91505092915050565b6000806000606084860312156142305761422f6139b5565b5b600061423e86828701613c2f565b935050602084013567ffffffffffffffff81111561425f5761425e6139ba565b5b61426b868287016141e9565b925050604084013567ffffffffffffffff81111561428c5761428b6139ba565b5b61429886828701613f53565b9150509250925092565b600080fd5b600067ffffffffffffffff8211156142c2576142c1613e43565b5b6142cb82613ba2565b9050602081019050919050565b82818337600083830152505050565b60006142fa6142f5846142a7565b613ea3565b905082815260208101848484011115614316576143156142a2565b5b6143218482856142d8565b509392505050565b600082601f83011261433e5761433d613dde565b5b813561434e8482602086016142e7565b91505092915050565b60006020828403121561436d5761436c6139b5565b5b600082013567ffffffffffffffff81111561438b5761438a6139ba565b5b61439784828501614329565b91505092915050565b6000806000606084860312156143b9576143b86139b5565b5b60006143c786828701613c2f565b93505060206143d886828701613ac3565b92505060406143e986828701613b07565b9150509250925092565b6143fc81614066565b811461440757600080fd5b50565b600081359050614419816143f3565b92915050565b600060208284031215614435576144346139b5565b5b60006144438482850161440a565b91505092915050565b600061445782614106565b9050919050565b6144678161444c565b82525050565b6000602082019050614482600083018461445e565b92915050565b6000806040838503121561449f5761449e6139b5565b5b60006144ad85828601613ac3565b92505060206144be85828601613d1c565b9150509250929050565b600067ffffffffffffffff8211156144e3576144e2613e43565b5b6144ec82613ba2565b9050602081019050919050565b600061450c614507846144c8565b613ea3565b905082815260208101848484011115614528576145276142a2565b5b6145338482856142d8565b509392505050565b600082601f8301126145505761454f613dde565b5b81356145608482602086016144f9565b91505092915050565b60008060008060808587031215614583576145826139b5565b5b600061459187828801613ac3565b94505060206145a287828801613ac3565b93505060406145b387828801613c2f565b925050606085013567ffffffffffffffff8111156145d4576145d36139ba565b5b6145e08782880161453b565b91505092959194509250565b60008083601f84011261460257614601613dde565b5b8235905067ffffffffffffffff81111561461f5761461e613de3565b5b60208301915083602082028301111561463b5761463a613de8565b5b9250929050565b6000806000806060858703121561465c5761465b6139b5565b5b600061466a87828801613c2f565b945050602061467b87828801613c2f565b935050604085013567ffffffffffffffff81111561469c5761469b6139ba565b5b6146a8878288016145ec565b925092505092959194509250565b600080604083850312156146cd576146cc6139b5565b5b60006146db85828601613ac3565b92505060206146ec85828601613ac3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061473d57607f821691505b6020821081036147505761474f6146f6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147bf82613c0e565b91506147ca83613c0e565b92508282019050808211156147e2576147e1614785565b5b92915050565b60006147f382613c0e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361482557614824614785565b5b600182019050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000614866601b83613b67565b915061487182614830565b602082019050919050565b6000602082019050818103600083015261489581614859565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b60006148d2601683613b67565b91506148dd8261489c565b602082019050919050565b60006020820190508181036000830152614901816148c5565b9050919050565b600061491382613c0e565b915061491e83613c0e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561495757614956614785565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061499c82613c0e565b91506149a783613c0e565b9250826149b7576149b6614962565b5b828204905092915050565b7f54686520616464726573732073686f756c646e27742062652030000000000000600082015250565b60006149f8601a83613b67565b9150614a03826149c2565b602082019050919050565b60006020820190508181036000830152614a27816149eb565b9050919050565b600081905092915050565b50565b6000614a49600083614a2e565b9150614a5482614a39565b600082019050919050565b6000614a6a82614a3c565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614ad67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614a99565b614ae08683614a99565b95508019841693508086168417925050509392505050565b6000614b13614b0e614b0984613c0e565b6140da565b613c0e565b9050919050565b6000819050919050565b614b2d83614af8565b614b41614b3982614b1a565b848454614aa6565b825550505050565b600090565b614b56614b49565b614b61818484614b24565b505050565b5b81811015614b8557614b7a600082614b4e565b600181019050614b67565b5050565b601f821115614bca57614b9b81614a74565b614ba484614a89565b81016020851015614bb3578190505b614bc7614bbf85614a89565b830182614b66565b50505b505050565b600082821c905092915050565b6000614bed60001984600802614bcf565b1980831691505092915050565b6000614c068383614bdc565b9150826002028217905092915050565b614c1f82613b5c565b67ffffffffffffffff811115614c3857614c37613e43565b5b614c428254614725565b614c4d828285614b89565b600060209050601f831160018114614c805760008415614c6e578287015190505b614c788582614bfa565b865550614ce0565b601f198416614c8e86614a74565b60005b82811015614cb657848901518255600182019150602085019450602081019050614c91565b86831015614cd35784890151614ccf601f891682614bdc565b8355505b6001600288020188555050505b505050505050565b7f416c6c6f77206c6973742074797065206572726f720000000000000000000000600082015250565b6000614d1e601583613b67565b9150614d2982614ce8565b602082019050919050565b60006020820190508181036000830152614d4d81614d11565b9050919050565b6000614d67614d62846142a7565b613ea3565b905082815260208101848484011115614d8357614d826142a2565b5b614d8e848285613b78565b509392505050565b600082601f830112614dab57614daa613dde565b5b8151614dbb848260208601614d54565b91505092915050565b600060208284031215614dda57614dd96139b5565b5b600082015167ffffffffffffffff811115614df857614df76139ba565b5b614e0484828501614d96565b91505092915050565b600081905092915050565b6000614e2382613b5c565b614e2d8185614e0d565b9350614e3d818560208601613b78565b80840191505092915050565b60008154614e5681614725565b614e608186614e0d565b94506001821660008114614e7b5760018114614e9057614ec3565b60ff1983168652811515820286019350614ec3565b614e9985614a74565b60005b83811015614ebb57815481890152600182019150602081019050614e9c565b838801955050505b50505092915050565b6000614ed88285614e18565b9150614ee48284614e49565b91508190509392505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163742e00600082015250565b6000614f26601f83613b67565b9150614f3182614ef0565b602082019050919050565b60006020820190508181036000830152614f5581614f19565b9050919050565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b6000614f92601683613b67565b9150614f9d82614f5c565b602082019050919050565b60006020820190508181036000830152614fc181614f85565b9050919050565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b6000615024602483613b67565b915061502f82614fc8565b604082019050919050565b6000602082019050818103600083015261505381615017565b9050919050565b600061506582613c0e565b915061507083613c0e565b925082820390508181111561508857615087614785565b5b92915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006150c4601283613b67565b91506150cf8261508e565b602082019050919050565b600060208201905081810360008301526150f3816150b7565b9050919050565b60008160601b9050919050565b6000615112826150fa565b9050919050565b600061512482615107565b9050919050565b61513c61513782613a9a565b615119565b82525050565b6000819050919050565b61515d61515882613c0e565b615142565b82525050565b600061516f828561512b565b60148201915061517f828461514c565b6020820191508190509392505050565b7f75736572206973206e6f7420616c6c6f776c6973746564000000000000000000600082015250565b60006151c5601783613b67565b91506151d08261518f565b602082019050919050565b600060208201905081810360008301526151f4816151b8565b9050919050565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b6000615231601c83613b67565b915061523c826151fb565b602082019050919050565b6000602082019050818103600083015261526081615224565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006152c3602683613b67565b91506152ce82615267565b604082019050919050565b600060208201905081810360008301526152f2816152b6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061532f602083613b67565b915061533a826152f9565b602082019050919050565b6000602082019050818103600083015261535e81615322565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006153c1602a83613b67565b91506153cc82615365565b604082019050919050565b600060208201905081810360008301526153f0816153b4565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061542d601983613b67565b9150615438826153f7565b602082019050919050565b6000602082019050818103600083015261545c81615420565b9050919050565b60006040820190506154786000830185613c71565b6154856020830184613c71565b9392505050565b60008151905061549b81613d05565b92915050565b6000602082840312156154b7576154b66139b5565b5b60006154c58482850161548c565b91505092915050565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b6000615504601b83613b67565b915061550f826154ce565b602082019050919050565b60006020820190508181036000830152615533816154f7565b9050919050565b60006155468285614e18565b91506155528284614e18565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b60006155858261555e565b61558f8185615569565b935061559f818560208601613b78565b6155a881613ba2565b840191505092915050565b60006080820190506155c86000830187613c71565b6155d56020830186613c71565b6155e26040830185613cdb565b81810360608301526155f4818461557a565b905095945050505050565b60008151905061560e816139eb565b92915050565b60006020828403121561562a576156296139b5565b5b6000615638848285016155ff565b9150509291505056fea2646970667358221220e6565e99fc672baa39e15459c5b17d54da70b42fd7d5d19e4fac9198ec38fc6064736f6c63430008100033

Loading...
Loading
Loading...
Loading
[ 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.