ETH Price: $3,089.40 (+0.90%)
Gas: 5 Gwei

Token

Probably Something (PSGENPASS)
 

Overview

Max Total Supply

174 PSGENPASS

Holders

150

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rugpullcapital.eth
Balance
1 PSGENPASS
0xa23fb30615eae4791595a66d36c6db7351e9ed2b
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:
ProbablySomethingGenesisPasses

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : GenesisPasses.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "erc721a/contracts/ERC721A.sol";
import "base64-sol/base64.sol";

//                                                                          //
//                                                                      ///////***
//                                                                     //////******
//                                                                    /////********
//                                                                     ***********.
//                                 ((((((((((((////////        ///////    *****/
//                            #((((((((((((((//////////////////////*****
//                          ((((((((((((((///////////////////////*******
//                        (((((((((((((//////////////////////**********.
//                      (((((((((((((/////    /////////////**********
//                     ((((((((((((//                  //**********
//                    (((((((((////     ##(((((((((        *****
//                    (((((((/////    ((((((((((((((((((
//                    (((((///////    (((((((((((((((((((((
//                    (((/////////    (((((((((((((((((((((((
//                     ////////////      (((((((((((((((((((((
//                     ///////////////           (((((((((((((((
//                       //////////////*******      ((((((((((((
//                        ///////////************    ((((((((((((
//                          ///////**************    ((((((((((((
//                             /*****************    ((((((((((((
//                     (((((        /**********     (((((((((((((
//                  ((((((((((((                  ((((((((((((((
//                (((((((((((((((((((((((/  /((((((((((((((((((
//             ((((((((((((((((((((((((((((((((((((((((((((((
//             ((((((((((((((((((((((((((((((((((((((((((((
//             (((((((((((((((((((((((((((((((((((((((((/
//     (#((((    (((((((        ((((((((((((((((((((
//  ((((((((((((
//  ((((((((((((/
//  ((((((((((((
//   ((((((((((
contract ProbablySomethingGenesisPasses is Ownable, ERC721A, ReentrancyGuard {
    struct SaleConfig {
        uint256 mintPrice;
        bytes32 merkleRoot;
        uint256 maxPerWallet;
        uint16 maxSaleSupply;
    }

    struct TokenMetadata {
        string titleBase;
        string description;
        string website;
        string animationLocation;
        string imageLocation;
    }

    uint256 public constant MAX_SUPPLY = 555;
    bool public privateSaleOpen = false;

    SaleConfig saleData;
    TokenMetadata metadata;
    uint256 ownerSupply;
    uint16 privateSaleRound;
    mapping(uint16 => mapping(address => uint256)) allowListMinted;

    event Minted(address to, uint256 quantity);

    /**
     * @notice Initializes the contract with initial sale data.
     */
    constructor() ERC721A("Probably Something", "PSGENPASS") {
        metadata = TokenMetadata({
            titleBase: "Probably Something Genesis Pass",
            description: "A private community of 555 NFT collectors and creators. Each Genesis Pass grants total access to Probably Something - the products, the community, and partner projects - and a voice in what we create.",
            website: "https://probablysomething.io",
            animationLocation: "ipfs://bafybeifilun44e4leud5jqd7qld3nobfsiz5vjzart6wwcnzrgb4577boq",
            imageLocation: "ipfs://bafybeiesk4u6vttf2cbbkwlcou6k66nxbida73vdu74wvslzx6pikehsue"
        });
    }

    /**
     * @notice Starts a new sale phase for Genesis Passes.
     * @param price_ The price per token for the sale period.
     * @param merkleRoot_ the merkle root to use for allowlisting.
     * @param maxPerWallet_ the maximum that can be minted per wallet for the current sale period.
     * @param maxSaleSupply_ the total supply of public tokens available to be purchased by the end of the sale period.
     */
    function setNewSaleData(
        uint256 price_,
        bytes32 merkleRoot_,
        uint256 maxPerWallet_,
        uint16 maxSaleSupply_
    ) external onlyOwner {
        require(
            totalSupply() <= MAX_SUPPLY,
            "All passes have already been sold."
        );
        require(
            maxSaleSupply_ + ownerSupply <= MAX_SUPPLY,
            "Max supply for the sale with owner mints exceeds total token supply."
        );
        saleData = SaleConfig({
            merkleRoot: merkleRoot_,
            mintPrice: price_,
            maxPerWallet: maxPerWallet_,
            maxSaleSupply: maxSaleSupply_
        });
        privateSaleRound++;
    }

    /**
     * @notice Toggles sale status. Sale remains closed until @setUpNewSalePhase is called again.
     */
    function toggleSaleStatus(bool isOpen_) external onlyOwner {
        require(saleData.mintPrice != 0, "Sale data must be set first");
        _toggleSaleStatus(isOpen_);
    }

    /**
     * @notice Set the maximum number of mints per wallet.
     */
    function setMaxMint(uint256 max_) external onlyOwner {
        saleData.maxPerWallet = max_;
    }

    /**
     * @notice Set Merkle root for the sale.
     */
    function setMerkleRoot(bytes32 root_) external onlyOwner {
        saleData.merkleRoot = root_;
    }

    /**
     * @notice Sets the maximum sale supply.
     */
    function setMaxSaleSupply(uint16 max_) external onlyOwner {
        saleData.maxSaleSupply = max_;
    }

    /**
     * @notice Set the current sale price.
     */
    function setSalePrice(uint256 price_) external onlyOwner {
        saleData.mintPrice = price_;
    }

    /**
     * @notice Sets the base title on the token, which will be rendered with " #2" after.
     */
    function setTitleBase(string calldata titleBase_) external onlyOwner {
        metadata.titleBase = titleBase_;
    }

    /**
     * @notice Point to a new global animation location for the token.
     */
    function setAnimationLocation(string calldata loc_) external onlyOwner {
        metadata.animationLocation = loc_;
    }

    /**
     * @notice Point to a new global image location for the token.
     */
    function setImageLocation(string calldata loc_) external onlyOwner {
        metadata.imageLocation = loc_;
    }

    /**
     * @notice Set a new Description for the token.
     */
    function setDescription(string calldata desc_) external onlyOwner {
        metadata.description = desc_;
    }

    /**
     * @notice Point to a new website for the token.
     */
    function setWebsite(string calldata website_) external onlyOwner {
        metadata.website = website_;
    }

    /**
     * @notice Mint for owner. Can occur when sale is inactive
     */
    function ownerMint(uint256 quantity) external onlyOwner {
        require(
            totalSupply() + quantity <= MAX_SUPPLY,
            "Reached max pass supply of genesis passes."
        );
        ownerSupply += quantity;
        _safeMint(msg.sender, quantity);
    }

    /**
     * @notice Mints genesis passes for allowlisted wallets subject to the current sale config.
     * @param quantity_ the quantity of passes to mint. Must match the amount of ETH sent.
     * @param merkleProof_ the merkle proof for the given msg.sender wallet
     */
    function allowlistMint(uint256 quantity_, bytes32[] calldata merkleProof_) external payable {
        require(privateSaleOpen, "Mint: sale is not open");
        require(
            totalSupply() - ownerSupply + quantity_ <= saleData.maxSaleSupply,
            "Mint: Cannot mint more than the max supply for the current sale period."
        );
        require(
            totalSupply() + quantity_ <= MAX_SUPPLY,
            "Mint: Reached max pass supply of genesis passes."
        );
        require(
            allowListMinted[privateSaleRound][msg.sender] + quantity_ <= saleData.maxPerWallet,
            "Mint: Amount exceeded."
        );
        require(
            msg.value == (saleData.mintPrice * quantity_),
            "Mint: Payment incorrect"
        );
        require(
            _isAllowlisted(msg.sender, merkleProof_),
            "Mint: User is not authorized to mint a genesis pass."
        );
        allowListMinted[privateSaleRound][msg.sender] =
            allowListMinted[privateSaleRound][msg.sender] +
            quantity_;
        _safeMint(msg.sender, quantity_);

        emit Minted(msg.sender, quantity_);
    }

    /**
     * @notice Withdraws ether from the contract.
     */
    function withdrawEther(address payable _to, uint256 _amount) external onlyOwner nonReentrant {
        _to.transfer(_amount);
    }

    /**
     * @notice Get the price of the current active sale.
     */
    function getSalePrice() public view returns (uint256) {
        require(privateSaleOpen, "Sale is not open.");
        return saleData.mintPrice;
    }

    /**
     * @notice Get the active merkle root for the sale.
     */
    function getActiveMerkleRoot() public view returns (bytes32) {
        require(privateSaleOpen, "Sale is not open.");
        return saleData.merkleRoot;
    }

    /**
     * @notice Returns the total number of tokens mintable for a given wallet.
     */
    function getMintableTokensForWallet(address account_, bytes32[] calldata merkleProof_) public view returns (uint32) {
        if (!_isAllowlisted(account_, merkleProof_)) {
            return 0;
        } else if (allowListMinted[privateSaleRound][account_] <= saleData.maxPerWallet) {
            return uint32(saleData.maxPerWallet - allowListMinted[privateSaleRound][account_]);
        } else { // unreachable code as long as sale data is valid
            return 0;
        }
    }

    /**
     * @notice Get current sale max supply.
     */
    function getCurrentMaxSaleSupply() public view returns (uint16) {
        require(privateSaleOpen, "Sale is not open.");
        return saleData.maxSaleSupply;
    }

    /**
     * @notice Override of the existing token URI for on-chain metadata.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory json = Base64.encode(
            bytes(
                string(
                    abi.encodePacked(
                        '{"name": "',
                        abi.encodePacked(
                            metadata.titleBase,
                            " #",
                            uint2str(tokenId)
                        ),
                        '","description":"',
                        metadata.description,
                        '","animation_url": "',
                        metadata.animationLocation,
                        '","image": "',
                        metadata.imageLocation,
                        '", "external_url": "',
                        metadata.website,
                        '", "attributes": [{"trait_type": "Generation","value": "0"},',
                        '{"trait_type": "Designer", "value": "Spongenuity"}',
                        "]}"
                    )
                )
            )
        );
        return string(abi.encodePacked("data:application/json;base64,", json));
    }

    /**
     * @notice toggles sale status
     */
    function _toggleSaleStatus(bool isOpen_) internal {
        privateSaleOpen = isOpen_;
    }

    /**
     * @notice checks a leaf node of an address against the active merkle root.
     */ 
    function _isAllowlisted(address wallet_, bytes32[] calldata proof_) internal view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(wallet_));
        return MerkleProof.verify(proof_, saleData.merkleRoot, leaf);
    }

    // ** - MISC - ** //
    function uint2str(uint256 _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint256 j = _i;
        uint256 len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint256 k = len;
        while (_i != 0) {
            k = k - 1;
            uint8 temp = (48 + uint8(_i - (_i / 10) * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 4 of 15 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

pragma solidity ^0.8.0;

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

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

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

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

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

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

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

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

File 6 of 15 : base64.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes  internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
                                            hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
                                            hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
                                            hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

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

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

                // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(        input,  0x3F))))
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, "invalid base64 decoder input");

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

        // add some extra buffer at the end required for the writing
        bytes memory result = new bytes(decodedLen + 32);

        assembly {
            // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

            // set the actual output length
            mstore(result, decodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

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

            // run over the input, 4 characters at a time
            for {} lt(dataPtr, endPtr) {}
            {
               // read 4 characters
               dataPtr := add(dataPtr, 4)
               let input := mload(dataPtr)

               // write 3 bytes
               let output := add(
                   add(
                       shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
                       shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
                   add(
                       shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
                               and(mload(add(tablePtr, and(        input , 0xFF))), 0xFF)
                    )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof_","type":"bytes32[]"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getActiveMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentMaxSaleSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"},{"internalType":"bytes32[]","name":"merkleProof_","type":"bytes32[]"}],"name":"getMintableTokensForWallet","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"loc_","type":"string"}],"name":"setAnimationLocation","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":"desc_","type":"string"}],"name":"setDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"loc_","type":"string"}],"name":"setImageLocation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max_","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"max_","type":"uint16"}],"name":"setMaxSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"},{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"},{"internalType":"uint16","name":"maxSaleSupply_","type":"uint16"}],"name":"setNewSaleData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"titleBase_","type":"string"}],"name":"setTitleBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"website_","type":"string"}],"name":"setWebsite","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":"bool","name":"isOpen_","type":"bool"}],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600960006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280601281526020017f50726f6261626c7920536f6d657468696e6700000000000000000000000000008152506040518060400160405280600981526020017f505347454e504153530000000000000000000000000000000000000000000000815250620000b9620000ad6200027860201b60201c565b6200028060201b60201c565b8160029080519060200190620000d192919062000344565b508060039080519060200190620000ea92919062000344565b50505060016008819055506040518060a001604052806040518060400160405280601f81526020017f50726f6261626c7920536f6d657468696e672047656e65736973205061737300815250815260200160405180610100016040528060c881526020016200628160c8913981526020016040518060400160405280601c81526020017f68747470733a2f2f70726f6261626c79736f6d657468696e672e696f000000008152508152602001604051806080016040528060428152602001620063496042913981526020016040518060800160405280604281526020016200623f60429139815250600e6000820151816000019080519060200190620001f292919062000344565b5060208201518160010190805190602001906200021192919062000344565b5060408201518160020190805190602001906200023092919062000344565b5060608201518160030190805190602001906200024f92919062000344565b5060808201518160040190805190602001906200026e92919062000344565b5090505062000459565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003529062000423565b90600052602060002090601f016020900481019282620003765760008555620003c2565b82601f106200039157805160ff1916838001178555620003c2565b82800160010185558215620003c2579182015b82811115620003c1578251825591602001919060010190620003a4565b5b509050620003d19190620003d5565b5090565b5b80821115620003f0576000816000905550600101620003d6565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200043c57607f821691505b60208210811415620004535762000452620003f4565b5b50919050565b615dd680620004696000396000f3fe6080604052600436106102305760003560e01c806367fe2fde1161012e578063a6d6559b116100ab578063e985e9c51161006f578063e985e9c514610838578063f19e75d414610875578063f2fde38b1461089e578063f87f44b9146108c7578063fac408e4146108f057610230565b8063a6d6559b14610757578063b88d4fde14610780578063c87b56dd146107a9578063cdbf7703146107e6578063e40929981461080f57610230565b80638da5cb5b116100f25780638da5cb5b1461068657806390c3f38f146106b157806395d89b41146106da57806397d064fa14610705578063a22cb4651461072e57610230565b806367fe2fde146105c257806370a08231146105ed578063715018a61461062a5780637bc9200e146106415780637cb647591461065d57610230565b806325b31afb116101bc57806342842e0e1161018057806342842e0e146104cd5780634f6ccce7146104f6578063522f681514610533578063547520fe1461055c5780636352211e1461058557610230565b806325b31afb146103e65780632f745c59146104115780632fbc0bf11461044e57806332cb6b0c14610479578063411470eb146104a457610230565b8063095ea7b311610203578063095ea7b31461030357806318160ddd1461032c5780631919fed7146103575780631c6f22c61461038057806323b872dd146103bd57610230565b806301e2aa3b1461023557806301ffc9a71461025e57806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613964565b61091b565b005b34801561026a57600080fd5b5061028560048036038101906102809190613a09565b6109b0565b6040516102929190613a51565b60405180910390f35b3480156102a757600080fd5b506102b0610afa565b6040516102bd9190613b05565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190613b5d565b610b8c565b6040516102fa9190613bcb565b60405180910390f35b34801561030f57600080fd5b5061032a60048036038101906103259190613c12565b610c11565b005b34801561033857600080fd5b50610341610d2a565b60405161034e9190613c61565b60405180910390f35b34801561036357600080fd5b5061037e60048036038101906103799190613b5d565b610d34565b005b34801561038c57600080fd5b506103a760048036038101906103a29190613cd2565b610dbd565b6040516103b49190613d51565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190613d6c565b610ed7565b005b3480156103f257600080fd5b506103fb610ee7565b6040516104089190613dd8565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190613c12565b610f43565b6040516104459190613c61565b60405180910390f35b34801561045a57600080fd5b50610463611135565b6040516104709190613c61565b60405180910390f35b34801561048557600080fd5b5061048e611191565b60405161049b9190613c61565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613964565b611197565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613d6c565b61122c565b005b34801561050257600080fd5b5061051d60048036038101906105189190613b5d565b61124c565b60405161052a9190613c61565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190613e31565b61129f565b005b34801561056857600080fd5b50610583600480360381019061057e9190613b5d565b6113bc565b005b34801561059157600080fd5b506105ac60048036038101906105a79190613b5d565b611445565b6040516105b99190613bcb565b60405180910390f35b3480156105ce57600080fd5b506105d761145b565b6040516105e49190613a51565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f9190613e71565b61146e565b6040516106219190613c61565b60405180910390f35b34801561063657600080fd5b5061063f611557565b005b61065b60048036038101906106569190613e9e565b6115df565b005b34801561066957600080fd5b50610684600480360381019061067f9190613f2a565b61197d565b005b34801561069257600080fd5b5061069b611a06565b6040516106a89190613bcb565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d39190613964565b611a2f565b005b3480156106e657600080fd5b506106ef611ac4565b6040516106fc9190613b05565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190613f91565b611b56565b005b34801561073a57600080fd5b5061075560048036038101906107509190614024565b611d20565b005b34801561076357600080fd5b5061077e60048036038101906107799190614064565b611ea1565b005b34801561078c57600080fd5b506107a760048036038101906107a291906141c1565b611f72565b005b3480156107b557600080fd5b506107d060048036038101906107cb9190613b5d565b611fce565b6040516107dd9190613b05565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190614244565b6120b1565b005b34801561081b57600080fd5b5061083660048036038101906108319190613964565b612150565b005b34801561084457600080fd5b5061085f600480360381019061085a9190614271565b6121e5565b60405161086c9190613a51565b60405180910390f35b34801561088157600080fd5b5061089c60048036038101906108979190613b5d565b612279565b005b3480156108aa57600080fd5b506108c560048036038101906108c09190613e71565b612372565b005b3480156108d357600080fd5b506108ee60048036038101906108e99190613964565b61246a565b005b3480156108fc57600080fd5b506109056124ff565b60405161091291906142c0565b60405180910390f35b610923612569565b73ffffffffffffffffffffffffffffffffffffffff16610941611a06565b73ffffffffffffffffffffffffffffffffffffffff1614610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90614327565b60405180910390fd5b8181600e60040191906109ab92919061380e565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ae357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af35750610af282612571565b5b9050919050565b606060028054610b0990614376565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3590614376565b8015610b825780601f10610b5757610100808354040283529160200191610b82565b820191906000526020600020905b815481529060010190602001808311610b6557829003601f168201915b5050505050905090565b6000610b97826125db565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd9061441a565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1c82611445565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906144ac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cac612569565b73ffffffffffffffffffffffffffffffffffffffff161480610cdb5750610cda81610cd5612569565b6121e5565b5b610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d119061453e565b60405180910390fd5b610d258383836125e9565b505050565b6000600154905090565b610d3c612569565b73ffffffffffffffffffffffffffffffffffffffff16610d5a611a06565b73ffffffffffffffffffffffffffffffffffffffff1614610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790614327565b60405180910390fd5b80600a6000018190555050565b6000610dca84848461269b565b610dd75760009050610ed0565b600a6002015460156000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610ecb5760156000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600a60020154610ec4919061458d565b9050610ed0565b600090505b9392505050565b610ee2838383612722565b505050565b6000600960009054906101000a900460ff16610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f9061460d565b60405180910390fd5b600a60010154905090565b6000610f4e8361146e565b8210610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f869061469f565b60405180910390fd5b6000610f99610d2a565b905060008060005b838110156110f3576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461109357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110e557868414156110dc57819550505050505061112f565b83806001019450505b508080600101915050610fa1565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690614731565b60405180910390fd5b92915050565b6000600960009054906101000a900460ff16611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d9061460d565b60405180910390fd5b600a60000154905090565b61022b81565b61119f612569565b73ffffffffffffffffffffffffffffffffffffffff166111bd611a06565b73ffffffffffffffffffffffffffffffffffffffff1614611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a90614327565b60405180910390fd5b8181600e600301919061122792919061380e565b505050565b61124783838360405180602001604052806000815250611f72565b505050565b6000611256610d2a565b8210611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e906147c3565b60405180910390fd5b819050919050565b6112a7612569565b73ffffffffffffffffffffffffffffffffffffffff166112c5611a06565b73ffffffffffffffffffffffffffffffffffffffff161461131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290614327565b60405180910390fd5b60026008541415611361576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113589061482f565b60405180910390fd5b60026008819055508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113af573d6000803e3d6000fd5b5060016008819055505050565b6113c4612569565b73ffffffffffffffffffffffffffffffffffffffff166113e2611a06565b73ffffffffffffffffffffffffffffffffffffffff1614611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90614327565b60405180910390fd5b80600a6002018190555050565b600061145082612c62565b600001519050919050565b600960009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d6906148c1565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61155f612569565b73ffffffffffffffffffffffffffffffffffffffff1661157d611a06565b73ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90614327565b60405180910390fd5b6115dd6000612dfc565b565b600960009054906101000a900460ff1661162e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116259061492d565b60405180910390fd5b600a60030160009054906101000a900461ffff1661ffff1683601354611652610d2a565b61165c919061458d565b611666919061494d565b11156116a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169e90614a3b565b60405180910390fd5b61022b836116b3610d2a565b6116bd919061494d565b11156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f590614acd565b60405180910390fd5b600a600201548360156000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611778919061494d565b11156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090614b39565b60405180910390fd5b82600a600001546117ca9190614b59565b341461180b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180290614bff565b60405180910390fd5b61181633838361269b565b611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90614c91565b60405180910390fd5b8260156000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118c9919061494d565b60156000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061193f3384612ec0565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3384604051611970929190614cb1565b60405180910390a1505050565b611985612569565b73ffffffffffffffffffffffffffffffffffffffff166119a3611a06565b73ffffffffffffffffffffffffffffffffffffffff16146119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f090614327565b60405180910390fd5b80600a6001018190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a37612569565b73ffffffffffffffffffffffffffffffffffffffff16611a55611a06565b73ffffffffffffffffffffffffffffffffffffffff1614611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290614327565b60405180910390fd5b8181600e6001019190611abf92919061380e565b505050565b606060038054611ad390614376565b80601f0160208091040260200160405190810160405280929190818152602001828054611aff90614376565b8015611b4c5780601f10611b2157610100808354040283529160200191611b4c565b820191906000526020600020905b815481529060010190602001808311611b2f57829003601f168201915b5050505050905090565b611b5e612569565b73ffffffffffffffffffffffffffffffffffffffff16611b7c611a06565b73ffffffffffffffffffffffffffffffffffffffff1614611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc990614327565b60405180910390fd5b61022b611bdd610d2a565b1115611c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1590614d4c565b60405180910390fd5b61022b6013548261ffff16611c33919061494d565b1115611c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6b90614e04565b60405180910390fd5b60405180608001604052808581526020018481526020018381526020018261ffff16815250600a60008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548161ffff021916908361ffff1602179055509050506014600081819054906101000a900461ffff1680929190611cff90614e24565b91906101000a81548161ffff021916908361ffff1602179055505050505050565b611d28612569565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d90614e9b565b60405180910390fd5b8060076000611da3612569565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e50612569565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e959190613a51565b60405180910390a35050565b611ea9612569565b73ffffffffffffffffffffffffffffffffffffffff16611ec7611a06565b73ffffffffffffffffffffffffffffffffffffffff1614611f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1490614327565b60405180910390fd5b6000600a600001541415611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90614f07565b60405180910390fd5b611f6f81612ede565b50565b611f7d848484612722565b611f8984848484612efb565b611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf90614f99565b60405180910390fd5b50505050565b6060611fd9826125db565b612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f9061502b565b60405180910390fd5b6000612087600e60000161202b85613092565b60405160200161203c929190615167565b604051602081830303815290604052600e600101600e600301600e600401600e600201604051602001612073959493929190615489565b60405160208183030381529060405261321b565b90508060405160200161209a9190615578565b604051602081830303815290604052915050919050565b6120b9612569565b73ffffffffffffffffffffffffffffffffffffffff166120d7611a06565b73ffffffffffffffffffffffffffffffffffffffff161461212d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212490614327565b60405180910390fd5b80600a60030160006101000a81548161ffff021916908361ffff16021790555050565b612158612569565b73ffffffffffffffffffffffffffffffffffffffff16612176611a06565b73ffffffffffffffffffffffffffffffffffffffff16146121cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c390614327565b60405180910390fd5b8181600e60000191906121e092919061380e565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612281612569565b73ffffffffffffffffffffffffffffffffffffffff1661229f611a06565b73ffffffffffffffffffffffffffffffffffffffff16146122f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ec90614327565b60405180910390fd5b61022b81612301610d2a565b61230b919061494d565b111561234c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123439061560c565b60405180910390fd5b806013600082825461235e919061494d565b9250508190555061236f3382612ec0565b50565b61237a612569565b73ffffffffffffffffffffffffffffffffffffffff16612398611a06565b73ffffffffffffffffffffffffffffffffffffffff16146123ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e590614327565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561245e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124559061569e565b60405180910390fd5b61246781612dfc565b50565b612472612569565b73ffffffffffffffffffffffffffffffffffffffff16612490611a06565b73ffffffffffffffffffffffffffffffffffffffff16146124e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dd90614327565b60405180910390fd5b8181600e60020191906124fa92919061380e565b505050565b6000600960009054906101000a900460ff16612550576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125479061460d565b60405180910390fd5b600a60030160009054906101000a900461ffff16905090565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080846040516020016126af9190615706565b604051602081830303815290604052805190602001209050612718848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a6001015483613394565b9150509392505050565b600061272d82612c62565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612754612569565b73ffffffffffffffffffffffffffffffffffffffff1614806127b05750612779612569565b73ffffffffffffffffffffffffffffffffffffffff1661279884610b8c565b73ffffffffffffffffffffffffffffffffffffffff16145b806127cc57506127cb82600001516127c6612569565b6121e5565b5b90508061280e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280590615793565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287790615825565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e7906158b7565b60405180910390fd5b6128fd85858560016133ab565b61290d60008484600001516125e9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612bf257612b51816125db565b15612bf15782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c5b85858560016133b1565b5050505050565b612c6a613894565b612c73826125db565b612cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca990615949565b60405180910390fd5b60008290505b60008110612dbb576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dac578092505050612df7565b50808060019003915050612cb8565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dee906159db565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612eda8282604051806020016040528060008152506133b7565b5050565b80600960006101000a81548160ff02191690831515021790555050565b6000612f1c8473ffffffffffffffffffffffffffffffffffffffff166133c9565b15613085578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f45612569565b8786866040518563ffffffff1660e01b8152600401612f679493929190615a45565b602060405180830381600087803b158015612f8157600080fd5b505af1925050508015612fb257506040513d601f19601f82011682018060405250810190612faf9190615aa6565b60015b613035573d8060008114612fe2576040519150601f19603f3d011682016040523d82523d6000602084013e612fe7565b606091505b5060008151141561302d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302490614f99565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061308a565b600190505b949350505050565b606060008214156130da576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613216565b600082905060005b6000821461310c5780806130f590615ad3565b915050600a826131059190615b4b565b91506130e2565b60008167ffffffffffffffff81111561312857613127614096565b5b6040519080825280601f01601f19166020018201604052801561315a5781602001600182028036833780820191505090505b50905060008290505b6000861461320e57600181613178919061458d565b90506000600a808861318a9190615b4b565b6131949190614b59565b8761319f919061458d565b60306131ab9190615b89565b905060008160f81b9050808484815181106131c9576131c8615bc0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a886132059190615b4b565b97505050613163565b819450505050505b919050565b606060008251141561323e5760405180602001604052806000815250905061338f565b6000604051806060016040528060408152602001615d61604091399050600060036002855161326d919061494d565b6132779190615b4b565b60046132839190614b59565b90506000602082613294919061494d565b67ffffffffffffffff8111156132ad576132ac614096565b5b6040519080825280601f01601f1916602001820160405280156132df5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b8183101561334e576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f81168501518253600182019150506132f3565b600389510660018114613368576002811461337857613383565b613d3d60f01b6002830352613383565b603d60f81b60018303525b50505050508093505050505b919050565b6000826133a185846133dc565b1490509392505050565b50505050565b50505050565b6133c4838383600161348f565b505050565b600080823b905060008111915050919050565b60008082905060005b845181101561348457600085828151811061340357613402615bc0565b5b60200260200101519050808311613444578281604051602001613427929190615c10565b604051602081830303815290604052805190602001209250613470565b8083604051602001613457929190615c10565b6040516020818303038152906040528051906020012092505b50808061347c90615ad3565b9150506133e5565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134fd90615cae565b60405180910390fd5b600084141561354a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354190615d40565b60405180910390fd5b61355760008683876133ab565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156137f157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156137dc5761379c6000888488612efb565b6137db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d290614f99565b60405180910390fd5b5b81806001019250508080600101915050613725565b50806001819055505061380760008683876133b1565b5050505050565b82805461381a90614376565b90600052602060002090601f01602090048101928261383c5760008555613883565b82601f1061385557803560ff1916838001178555613883565b82800160010185558215613883579182015b82811115613882578235825591602001919060010190613867565b5b50905061389091906138ce565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156138e75760008160009055506001016138cf565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f840112613924576139236138ff565b5b8235905067ffffffffffffffff81111561394157613940613904565b5b60208301915083600182028301111561395d5761395c613909565b5b9250929050565b6000806020838503121561397b5761397a6138f5565b5b600083013567ffffffffffffffff811115613999576139986138fa565b5b6139a58582860161390e565b92509250509250929050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139e6816139b1565b81146139f157600080fd5b50565b600081359050613a03816139dd565b92915050565b600060208284031215613a1f57613a1e6138f5565b5b6000613a2d848285016139f4565b91505092915050565b60008115159050919050565b613a4b81613a36565b82525050565b6000602082019050613a666000830184613a42565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613aa6578082015181840152602081019050613a8b565b83811115613ab5576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ad782613a6c565b613ae18185613a77565b9350613af1818560208601613a88565b613afa81613abb565b840191505092915050565b60006020820190508181036000830152613b1f8184613acc565b905092915050565b6000819050919050565b613b3a81613b27565b8114613b4557600080fd5b50565b600081359050613b5781613b31565b92915050565b600060208284031215613b7357613b726138f5565b5b6000613b8184828501613b48565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bb582613b8a565b9050919050565b613bc581613baa565b82525050565b6000602082019050613be06000830184613bbc565b92915050565b613bef81613baa565b8114613bfa57600080fd5b50565b600081359050613c0c81613be6565b92915050565b60008060408385031215613c2957613c286138f5565b5b6000613c3785828601613bfd565b9250506020613c4885828601613b48565b9150509250929050565b613c5b81613b27565b82525050565b6000602082019050613c766000830184613c52565b92915050565b60008083601f840112613c9257613c916138ff565b5b8235905067ffffffffffffffff811115613caf57613cae613904565b5b602083019150836020820283011115613ccb57613cca613909565b5b9250929050565b600080600060408486031215613ceb57613cea6138f5565b5b6000613cf986828701613bfd565b935050602084013567ffffffffffffffff811115613d1a57613d196138fa565b5b613d2686828701613c7c565b92509250509250925092565b600063ffffffff82169050919050565b613d4b81613d32565b82525050565b6000602082019050613d666000830184613d42565b92915050565b600080600060608486031215613d8557613d846138f5565b5b6000613d9386828701613bfd565b9350506020613da486828701613bfd565b9250506040613db586828701613b48565b9150509250925092565b6000819050919050565b613dd281613dbf565b82525050565b6000602082019050613ded6000830184613dc9565b92915050565b6000613dfe82613b8a565b9050919050565b613e0e81613df3565b8114613e1957600080fd5b50565b600081359050613e2b81613e05565b92915050565b60008060408385031215613e4857613e476138f5565b5b6000613e5685828601613e1c565b9250506020613e6785828601613b48565b9150509250929050565b600060208284031215613e8757613e866138f5565b5b6000613e9584828501613bfd565b91505092915050565b600080600060408486031215613eb757613eb66138f5565b5b6000613ec586828701613b48565b935050602084013567ffffffffffffffff811115613ee657613ee56138fa565b5b613ef286828701613c7c565b92509250509250925092565b613f0781613dbf565b8114613f1257600080fd5b50565b600081359050613f2481613efe565b92915050565b600060208284031215613f4057613f3f6138f5565b5b6000613f4e84828501613f15565b91505092915050565b600061ffff82169050919050565b613f6e81613f57565b8114613f7957600080fd5b50565b600081359050613f8b81613f65565b92915050565b60008060008060808587031215613fab57613faa6138f5565b5b6000613fb987828801613b48565b9450506020613fca87828801613f15565b9350506040613fdb87828801613b48565b9250506060613fec87828801613f7c565b91505092959194509250565b61400181613a36565b811461400c57600080fd5b50565b60008135905061401e81613ff8565b92915050565b6000806040838503121561403b5761403a6138f5565b5b600061404985828601613bfd565b925050602061405a8582860161400f565b9150509250929050565b60006020828403121561407a576140796138f5565b5b60006140888482850161400f565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6140ce82613abb565b810181811067ffffffffffffffff821117156140ed576140ec614096565b5b80604052505050565b60006141006138eb565b905061410c82826140c5565b919050565b600067ffffffffffffffff82111561412c5761412b614096565b5b61413582613abb565b9050602081019050919050565b82818337600083830152505050565b600061416461415f84614111565b6140f6565b9050828152602081018484840111156141805761417f614091565b5b61418b848285614142565b509392505050565b600082601f8301126141a8576141a76138ff565b5b81356141b8848260208601614151565b91505092915050565b600080600080608085870312156141db576141da6138f5565b5b60006141e987828801613bfd565b94505060206141fa87828801613bfd565b935050604061420b87828801613b48565b925050606085013567ffffffffffffffff81111561422c5761422b6138fa565b5b61423887828801614193565b91505092959194509250565b60006020828403121561425a576142596138f5565b5b600061426884828501613f7c565b91505092915050565b60008060408385031215614288576142876138f5565b5b600061429685828601613bfd565b92505060206142a785828601613bfd565b9150509250929050565b6142ba81613f57565b82525050565b60006020820190506142d560008301846142b1565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614311602083613a77565b915061431c826142db565b602082019050919050565b6000602082019050818103600083015261434081614304565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061438e57607f821691505b602082108114156143a2576143a1614347565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614404602d83613a77565b915061440f826143a8565b604082019050919050565b60006020820190508181036000830152614433816143f7565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614496602283613a77565b91506144a18261443a565b604082019050919050565b600060208201905081810360008301526144c581614489565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614528603983613a77565b9150614533826144cc565b604082019050919050565b600060208201905081810360008301526145578161451b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061459882613b27565b91506145a383613b27565b9250828210156145b6576145b561455e565b5b828203905092915050565b7f53616c65206973206e6f74206f70656e2e000000000000000000000000000000600082015250565b60006145f7601183613a77565b9150614602826145c1565b602082019050919050565b60006020820190508181036000830152614626816145ea565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614689602283613a77565b91506146948261462d565b604082019050919050565b600060208201905081810360008301526146b88161467c565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061471b602e83613a77565b9150614726826146bf565b604082019050919050565b6000602082019050818103600083015261474a8161470e565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006147ad602383613a77565b91506147b882614751565b604082019050919050565b600060208201905081810360008301526147dc816147a0565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614819601f83613a77565b9150614824826147e3565b602082019050919050565b600060208201905081810360008301526148488161480c565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006148ab602b83613a77565b91506148b68261484f565b604082019050919050565b600060208201905081810360008301526148da8161489e565b9050919050565b7f4d696e743a2073616c65206973206e6f74206f70656e00000000000000000000600082015250565b6000614917601683613a77565b9150614922826148e1565b602082019050919050565b600060208201905081810360008301526149468161490a565b9050919050565b600061495882613b27565b915061496383613b27565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149985761499761455e565b5b828201905092915050565b7f4d696e743a2043616e6e6f74206d696e74206d6f7265207468616e207468652060008201527f6d617820737570706c7920666f72207468652063757272656e742073616c652060208201527f706572696f642e00000000000000000000000000000000000000000000000000604082015250565b6000614a25604783613a77565b9150614a30826149a3565b606082019050919050565b60006020820190508181036000830152614a5481614a18565b9050919050565b7f4d696e743a2052656163686564206d6178207061737320737570706c79206f6660008201527f2067656e65736973207061737365732e00000000000000000000000000000000602082015250565b6000614ab7603083613a77565b9150614ac282614a5b565b604082019050919050565b60006020820190508181036000830152614ae681614aaa565b9050919050565b7f4d696e743a20416d6f756e742065786365656465642e00000000000000000000600082015250565b6000614b23601683613a77565b9150614b2e82614aed565b602082019050919050565b60006020820190508181036000830152614b5281614b16565b9050919050565b6000614b6482613b27565b9150614b6f83613b27565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ba857614ba761455e565b5b828202905092915050565b7f4d696e743a205061796d656e7420696e636f7272656374000000000000000000600082015250565b6000614be9601783613a77565b9150614bf482614bb3565b602082019050919050565b60006020820190508181036000830152614c1881614bdc565b9050919050565b7f4d696e743a2055736572206973206e6f7420617574686f72697a656420746f2060008201527f6d696e7420612067656e6573697320706173732e000000000000000000000000602082015250565b6000614c7b603483613a77565b9150614c8682614c1f565b604082019050919050565b60006020820190508181036000830152614caa81614c6e565b9050919050565b6000604082019050614cc66000830185613bbc565b614cd36020830184613c52565b9392505050565b7f416c6c20706173736573206861766520616c7265616479206265656e20736f6c60008201527f642e000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d36602283613a77565b9150614d4182614cda565b604082019050919050565b60006020820190508181036000830152614d6581614d29565b9050919050565b7f4d617820737570706c7920666f72207468652073616c652077697468206f776e60008201527f6572206d696e7473206578636565647320746f74616c20746f6b656e2073757060208201527f706c792e00000000000000000000000000000000000000000000000000000000604082015250565b6000614dee604483613a77565b9150614df982614d6c565b606082019050919050565b60006020820190508181036000830152614e1d81614de1565b9050919050565b6000614e2f82613f57565b915061ffff821415614e4457614e4361455e565b5b600182019050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614e85601a83613a77565b9150614e9082614e4f565b602082019050919050565b60006020820190508181036000830152614eb481614e78565b9050919050565b7f53616c652064617461206d757374206265207365742066697273740000000000600082015250565b6000614ef1601b83613a77565b9150614efc82614ebb565b602082019050919050565b60006020820190508181036000830152614f2081614ee4565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614f83603383613a77565b9150614f8e82614f27565b604082019050919050565b60006020820190508181036000830152614fb281614f76565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615015602f83613a77565b915061502082614fb9565b604082019050919050565b6000602082019050818103600083015261504481615008565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461507881614376565b615082818661504b565b9450600182166000811461509d57600181146150ae576150e1565b60ff198316865281860193506150e1565b6150b785615056565b60005b838110156150d9578154818901526001820191506020810190506150ba565b838801955050505b50505092915050565b7f2023000000000000000000000000000000000000000000000000000000000000600082015250565b600061512060028361504b565b915061512b826150ea565b600282019050919050565b600061514182613a6c565b61514b818561504b565b935061515b818560208601613a88565b80840191505092915050565b6000615173828561506b565b915061517e82615113565b915061518a8284615136565b91508190509392505050565b7f7b226e616d65223a202200000000000000000000000000000000000000000000600082015250565b60006151cc600a8361504b565b91506151d782615196565b600a82019050919050565b600081519050919050565b600081905092915050565b6000615203826151e2565b61520d81856151ed565b935061521d818560208601613a88565b80840191505092915050565b7f222c226465736372697074696f6e223a22000000000000000000000000000000600082015250565b600061525f60118361504b565b915061526a82615229565b601182019050919050565b7f222c22616e696d6174696f6e5f75726c223a2022000000000000000000000000600082015250565b60006152ab60148361504b565b91506152b682615275565b601482019050919050565b7f222c22696d616765223a20220000000000000000000000000000000000000000600082015250565b60006152f7600c8361504b565b9150615302826152c1565b600c82019050919050565b7f222c202265787465726e616c5f75726c223a2022000000000000000000000000600082015250565b600061534360148361504b565b915061534e8261530d565b601482019050919050565b7f222c202261747472696275746573223a205b7b2274726169745f74797065223a60008201527f202247656e65726174696f6e222c2276616c7565223a202230227d2c00000000602082015250565b60006153b5603c8361504b565b91506153c082615359565b603c82019050919050565b7f7b2274726169745f74797065223a202244657369676e6572222c202276616c7560008201527f65223a202253706f6e67656e75697479227d0000000000000000000000000000602082015250565b600061542760328361504b565b9150615432826153cb565b603282019050919050565b7f5d7d000000000000000000000000000000000000000000000000000000000000600082015250565b600061547360028361504b565b915061547e8261543d565b600282019050919050565b6000615494826151bf565b91506154a082886151f8565b91506154ab82615252565b91506154b7828761506b565b91506154c28261529e565b91506154ce828661506b565b91506154d9826152ea565b91506154e5828561506b565b91506154f082615336565b91506154fc828461506b565b9150615507826153a8565b91506155128261541a565b915061551d82615466565b91508190509695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000615562601d8361504b565b915061556d8261552c565b601d82019050919050565b600061558382615555565b915061558f8284615136565b915081905092915050565b7f52656163686564206d6178207061737320737570706c79206f662067656e657360008201527f6973207061737365732e00000000000000000000000000000000000000000000602082015250565b60006155f6602a83613a77565b91506156018261559a565b604082019050919050565b60006020820190508181036000830152615625816155e9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615688602683613a77565b91506156938261562c565b604082019050919050565b600060208201905081810360008301526156b78161567b565b9050919050565b60008160601b9050919050565b60006156d6826156be565b9050919050565b60006156e8826156cb565b9050919050565b6157006156fb82613baa565b6156dd565b82525050565b600061571282846156ef565b60148201915081905092915050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061577d603283613a77565b915061578882615721565b604082019050919050565b600060208201905081810360008301526157ac81615770565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061580f602683613a77565b915061581a826157b3565b604082019050919050565b6000602082019050818103600083015261583e81615802565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006158a1602583613a77565b91506158ac82615845565b604082019050919050565b600060208201905081810360008301526158d081615894565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000615933602a83613a77565b915061593e826158d7565b604082019050919050565b6000602082019050818103600083015261596281615926565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006159c5602f83613a77565b91506159d082615969565b604082019050919050565b600060208201905081810360008301526159f4816159b8565b9050919050565b600082825260208201905092915050565b6000615a17826151e2565b615a2181856159fb565b9350615a31818560208601613a88565b615a3a81613abb565b840191505092915050565b6000608082019050615a5a6000830187613bbc565b615a676020830186613bbc565b615a746040830185613c52565b8181036060830152615a868184615a0c565b905095945050505050565b600081519050615aa0816139dd565b92915050565b600060208284031215615abc57615abb6138f5565b5b6000615aca84828501615a91565b91505092915050565b6000615ade82613b27565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615b1157615b1061455e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615b5682613b27565b9150615b6183613b27565b925082615b7157615b70615b1c565b5b828204905092915050565b600060ff82169050919050565b6000615b9482615b7c565b9150615b9f83615b7c565b92508260ff03821115615bb557615bb461455e565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b615c0a615c0582613dbf565b615bef565b82525050565b6000615c1c8285615bf9565b602082019150615c2c8284615bf9565b6020820191508190509392505050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615c98602183613a77565b9150615ca382615c3c565b604082019050919050565b60006020820190508181036000830152615cc781615c8b565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000615d2a602883613a77565b9150615d3582615cce565b604082019050919050565b60006020820190508181036000830152615d5981615d1d565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220e52fb29773bd2b023698b3ae1500efe9fea58919f902fa67c5c046c27f6ef52564736f6c63430008090033697066733a2f2f6261667962656965736b34753676747466326362626b776c636f75366b36366e7862696461373376647537347776736c7a783670696b656873756541207072697661746520636f6d6d756e697479206f6620353535204e465420636f6c6c6563746f727320616e642063726561746f72732e20456163682047656e657369732050617373206772616e747320746f74616c2061636365737320746f2050726f6261626c7920536f6d657468696e67202d207468652070726f64756374732c2074686520636f6d6d756e6974792c20616e6420706172746e65722070726f6a65637473202d20616e64206120766f69636520696e2077686174207765206372656174652e697066733a2f2f6261667962656966696c756e343465346c657564356a716437716c64336e6f626673697a35766a7a617274367777636e7a72676234353737626f71

Deployed Bytecode

0x6080604052600436106102305760003560e01c806367fe2fde1161012e578063a6d6559b116100ab578063e985e9c51161006f578063e985e9c514610838578063f19e75d414610875578063f2fde38b1461089e578063f87f44b9146108c7578063fac408e4146108f057610230565b8063a6d6559b14610757578063b88d4fde14610780578063c87b56dd146107a9578063cdbf7703146107e6578063e40929981461080f57610230565b80638da5cb5b116100f25780638da5cb5b1461068657806390c3f38f146106b157806395d89b41146106da57806397d064fa14610705578063a22cb4651461072e57610230565b806367fe2fde146105c257806370a08231146105ed578063715018a61461062a5780637bc9200e146106415780637cb647591461065d57610230565b806325b31afb116101bc57806342842e0e1161018057806342842e0e146104cd5780634f6ccce7146104f6578063522f681514610533578063547520fe1461055c5780636352211e1461058557610230565b806325b31afb146103e65780632f745c59146104115780632fbc0bf11461044e57806332cb6b0c14610479578063411470eb146104a457610230565b8063095ea7b311610203578063095ea7b31461030357806318160ddd1461032c5780631919fed7146103575780631c6f22c61461038057806323b872dd146103bd57610230565b806301e2aa3b1461023557806301ffc9a71461025e57806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613964565b61091b565b005b34801561026a57600080fd5b5061028560048036038101906102809190613a09565b6109b0565b6040516102929190613a51565b60405180910390f35b3480156102a757600080fd5b506102b0610afa565b6040516102bd9190613b05565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190613b5d565b610b8c565b6040516102fa9190613bcb565b60405180910390f35b34801561030f57600080fd5b5061032a60048036038101906103259190613c12565b610c11565b005b34801561033857600080fd5b50610341610d2a565b60405161034e9190613c61565b60405180910390f35b34801561036357600080fd5b5061037e60048036038101906103799190613b5d565b610d34565b005b34801561038c57600080fd5b506103a760048036038101906103a29190613cd2565b610dbd565b6040516103b49190613d51565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190613d6c565b610ed7565b005b3480156103f257600080fd5b506103fb610ee7565b6040516104089190613dd8565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190613c12565b610f43565b6040516104459190613c61565b60405180910390f35b34801561045a57600080fd5b50610463611135565b6040516104709190613c61565b60405180910390f35b34801561048557600080fd5b5061048e611191565b60405161049b9190613c61565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613964565b611197565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613d6c565b61122c565b005b34801561050257600080fd5b5061051d60048036038101906105189190613b5d565b61124c565b60405161052a9190613c61565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190613e31565b61129f565b005b34801561056857600080fd5b50610583600480360381019061057e9190613b5d565b6113bc565b005b34801561059157600080fd5b506105ac60048036038101906105a79190613b5d565b611445565b6040516105b99190613bcb565b60405180910390f35b3480156105ce57600080fd5b506105d761145b565b6040516105e49190613a51565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f9190613e71565b61146e565b6040516106219190613c61565b60405180910390f35b34801561063657600080fd5b5061063f611557565b005b61065b60048036038101906106569190613e9e565b6115df565b005b34801561066957600080fd5b50610684600480360381019061067f9190613f2a565b61197d565b005b34801561069257600080fd5b5061069b611a06565b6040516106a89190613bcb565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d39190613964565b611a2f565b005b3480156106e657600080fd5b506106ef611ac4565b6040516106fc9190613b05565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190613f91565b611b56565b005b34801561073a57600080fd5b5061075560048036038101906107509190614024565b611d20565b005b34801561076357600080fd5b5061077e60048036038101906107799190614064565b611ea1565b005b34801561078c57600080fd5b506107a760048036038101906107a291906141c1565b611f72565b005b3480156107b557600080fd5b506107d060048036038101906107cb9190613b5d565b611fce565b6040516107dd9190613b05565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190614244565b6120b1565b005b34801561081b57600080fd5b5061083660048036038101906108319190613964565b612150565b005b34801561084457600080fd5b5061085f600480360381019061085a9190614271565b6121e5565b60405161086c9190613a51565b60405180910390f35b34801561088157600080fd5b5061089c60048036038101906108979190613b5d565b612279565b005b3480156108aa57600080fd5b506108c560048036038101906108c09190613e71565b612372565b005b3480156108d357600080fd5b506108ee60048036038101906108e99190613964565b61246a565b005b3480156108fc57600080fd5b506109056124ff565b60405161091291906142c0565b60405180910390f35b610923612569565b73ffffffffffffffffffffffffffffffffffffffff16610941611a06565b73ffffffffffffffffffffffffffffffffffffffff1614610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90614327565b60405180910390fd5b8181600e60040191906109ab92919061380e565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ae357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af35750610af282612571565b5b9050919050565b606060028054610b0990614376565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3590614376565b8015610b825780601f10610b5757610100808354040283529160200191610b82565b820191906000526020600020905b815481529060010190602001808311610b6557829003601f168201915b5050505050905090565b6000610b97826125db565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd9061441a565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1c82611445565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906144ac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cac612569565b73ffffffffffffffffffffffffffffffffffffffff161480610cdb5750610cda81610cd5612569565b6121e5565b5b610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d119061453e565b60405180910390fd5b610d258383836125e9565b505050565b6000600154905090565b610d3c612569565b73ffffffffffffffffffffffffffffffffffffffff16610d5a611a06565b73ffffffffffffffffffffffffffffffffffffffff1614610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790614327565b60405180910390fd5b80600a6000018190555050565b6000610dca84848461269b565b610dd75760009050610ed0565b600a6002015460156000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610ecb5760156000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600a60020154610ec4919061458d565b9050610ed0565b600090505b9392505050565b610ee2838383612722565b505050565b6000600960009054906101000a900460ff16610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f9061460d565b60405180910390fd5b600a60010154905090565b6000610f4e8361146e565b8210610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f869061469f565b60405180910390fd5b6000610f99610d2a565b905060008060005b838110156110f3576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461109357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110e557868414156110dc57819550505050505061112f565b83806001019450505b508080600101915050610fa1565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690614731565b60405180910390fd5b92915050565b6000600960009054906101000a900460ff16611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d9061460d565b60405180910390fd5b600a60000154905090565b61022b81565b61119f612569565b73ffffffffffffffffffffffffffffffffffffffff166111bd611a06565b73ffffffffffffffffffffffffffffffffffffffff1614611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a90614327565b60405180910390fd5b8181600e600301919061122792919061380e565b505050565b61124783838360405180602001604052806000815250611f72565b505050565b6000611256610d2a565b8210611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e906147c3565b60405180910390fd5b819050919050565b6112a7612569565b73ffffffffffffffffffffffffffffffffffffffff166112c5611a06565b73ffffffffffffffffffffffffffffffffffffffff161461131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290614327565b60405180910390fd5b60026008541415611361576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113589061482f565b60405180910390fd5b60026008819055508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113af573d6000803e3d6000fd5b5060016008819055505050565b6113c4612569565b73ffffffffffffffffffffffffffffffffffffffff166113e2611a06565b73ffffffffffffffffffffffffffffffffffffffff1614611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90614327565b60405180910390fd5b80600a6002018190555050565b600061145082612c62565b600001519050919050565b600960009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d6906148c1565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61155f612569565b73ffffffffffffffffffffffffffffffffffffffff1661157d611a06565b73ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90614327565b60405180910390fd5b6115dd6000612dfc565b565b600960009054906101000a900460ff1661162e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116259061492d565b60405180910390fd5b600a60030160009054906101000a900461ffff1661ffff1683601354611652610d2a565b61165c919061458d565b611666919061494d565b11156116a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169e90614a3b565b60405180910390fd5b61022b836116b3610d2a565b6116bd919061494d565b11156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f590614acd565b60405180910390fd5b600a600201548360156000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611778919061494d565b11156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090614b39565b60405180910390fd5b82600a600001546117ca9190614b59565b341461180b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180290614bff565b60405180910390fd5b61181633838361269b565b611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90614c91565b60405180910390fd5b8260156000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118c9919061494d565b60156000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061193f3384612ec0565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3384604051611970929190614cb1565b60405180910390a1505050565b611985612569565b73ffffffffffffffffffffffffffffffffffffffff166119a3611a06565b73ffffffffffffffffffffffffffffffffffffffff16146119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f090614327565b60405180910390fd5b80600a6001018190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a37612569565b73ffffffffffffffffffffffffffffffffffffffff16611a55611a06565b73ffffffffffffffffffffffffffffffffffffffff1614611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290614327565b60405180910390fd5b8181600e6001019190611abf92919061380e565b505050565b606060038054611ad390614376565b80601f0160208091040260200160405190810160405280929190818152602001828054611aff90614376565b8015611b4c5780601f10611b2157610100808354040283529160200191611b4c565b820191906000526020600020905b815481529060010190602001808311611b2f57829003601f168201915b5050505050905090565b611b5e612569565b73ffffffffffffffffffffffffffffffffffffffff16611b7c611a06565b73ffffffffffffffffffffffffffffffffffffffff1614611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc990614327565b60405180910390fd5b61022b611bdd610d2a565b1115611c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1590614d4c565b60405180910390fd5b61022b6013548261ffff16611c33919061494d565b1115611c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6b90614e04565b60405180910390fd5b60405180608001604052808581526020018481526020018381526020018261ffff16815250600a60008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548161ffff021916908361ffff1602179055509050506014600081819054906101000a900461ffff1680929190611cff90614e24565b91906101000a81548161ffff021916908361ffff1602179055505050505050565b611d28612569565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d90614e9b565b60405180910390fd5b8060076000611da3612569565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e50612569565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e959190613a51565b60405180910390a35050565b611ea9612569565b73ffffffffffffffffffffffffffffffffffffffff16611ec7611a06565b73ffffffffffffffffffffffffffffffffffffffff1614611f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1490614327565b60405180910390fd5b6000600a600001541415611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90614f07565b60405180910390fd5b611f6f81612ede565b50565b611f7d848484612722565b611f8984848484612efb565b611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf90614f99565b60405180910390fd5b50505050565b6060611fd9826125db565b612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f9061502b565b60405180910390fd5b6000612087600e60000161202b85613092565b60405160200161203c929190615167565b604051602081830303815290604052600e600101600e600301600e600401600e600201604051602001612073959493929190615489565b60405160208183030381529060405261321b565b90508060405160200161209a9190615578565b604051602081830303815290604052915050919050565b6120b9612569565b73ffffffffffffffffffffffffffffffffffffffff166120d7611a06565b73ffffffffffffffffffffffffffffffffffffffff161461212d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212490614327565b60405180910390fd5b80600a60030160006101000a81548161ffff021916908361ffff16021790555050565b612158612569565b73ffffffffffffffffffffffffffffffffffffffff16612176611a06565b73ffffffffffffffffffffffffffffffffffffffff16146121cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c390614327565b60405180910390fd5b8181600e60000191906121e092919061380e565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612281612569565b73ffffffffffffffffffffffffffffffffffffffff1661229f611a06565b73ffffffffffffffffffffffffffffffffffffffff16146122f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ec90614327565b60405180910390fd5b61022b81612301610d2a565b61230b919061494d565b111561234c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123439061560c565b60405180910390fd5b806013600082825461235e919061494d565b9250508190555061236f3382612ec0565b50565b61237a612569565b73ffffffffffffffffffffffffffffffffffffffff16612398611a06565b73ffffffffffffffffffffffffffffffffffffffff16146123ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e590614327565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561245e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124559061569e565b60405180910390fd5b61246781612dfc565b50565b612472612569565b73ffffffffffffffffffffffffffffffffffffffff16612490611a06565b73ffffffffffffffffffffffffffffffffffffffff16146124e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dd90614327565b60405180910390fd5b8181600e60020191906124fa92919061380e565b505050565b6000600960009054906101000a900460ff16612550576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125479061460d565b60405180910390fd5b600a60030160009054906101000a900461ffff16905090565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080846040516020016126af9190615706565b604051602081830303815290604052805190602001209050612718848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a6001015483613394565b9150509392505050565b600061272d82612c62565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612754612569565b73ffffffffffffffffffffffffffffffffffffffff1614806127b05750612779612569565b73ffffffffffffffffffffffffffffffffffffffff1661279884610b8c565b73ffffffffffffffffffffffffffffffffffffffff16145b806127cc57506127cb82600001516127c6612569565b6121e5565b5b90508061280e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280590615793565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287790615825565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e7906158b7565b60405180910390fd5b6128fd85858560016133ab565b61290d60008484600001516125e9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612bf257612b51816125db565b15612bf15782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c5b85858560016133b1565b5050505050565b612c6a613894565b612c73826125db565b612cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca990615949565b60405180910390fd5b60008290505b60008110612dbb576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dac578092505050612df7565b50808060019003915050612cb8565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dee906159db565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612eda8282604051806020016040528060008152506133b7565b5050565b80600960006101000a81548160ff02191690831515021790555050565b6000612f1c8473ffffffffffffffffffffffffffffffffffffffff166133c9565b15613085578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f45612569565b8786866040518563ffffffff1660e01b8152600401612f679493929190615a45565b602060405180830381600087803b158015612f8157600080fd5b505af1925050508015612fb257506040513d601f19601f82011682018060405250810190612faf9190615aa6565b60015b613035573d8060008114612fe2576040519150601f19603f3d011682016040523d82523d6000602084013e612fe7565b606091505b5060008151141561302d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302490614f99565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061308a565b600190505b949350505050565b606060008214156130da576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613216565b600082905060005b6000821461310c5780806130f590615ad3565b915050600a826131059190615b4b565b91506130e2565b60008167ffffffffffffffff81111561312857613127614096565b5b6040519080825280601f01601f19166020018201604052801561315a5781602001600182028036833780820191505090505b50905060008290505b6000861461320e57600181613178919061458d565b90506000600a808861318a9190615b4b565b6131949190614b59565b8761319f919061458d565b60306131ab9190615b89565b905060008160f81b9050808484815181106131c9576131c8615bc0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a886132059190615b4b565b97505050613163565b819450505050505b919050565b606060008251141561323e5760405180602001604052806000815250905061338f565b6000604051806060016040528060408152602001615d61604091399050600060036002855161326d919061494d565b6132779190615b4b565b60046132839190614b59565b90506000602082613294919061494d565b67ffffffffffffffff8111156132ad576132ac614096565b5b6040519080825280601f01601f1916602001820160405280156132df5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b8183101561334e576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f81168501518253600182019150506132f3565b600389510660018114613368576002811461337857613383565b613d3d60f01b6002830352613383565b603d60f81b60018303525b50505050508093505050505b919050565b6000826133a185846133dc565b1490509392505050565b50505050565b50505050565b6133c4838383600161348f565b505050565b600080823b905060008111915050919050565b60008082905060005b845181101561348457600085828151811061340357613402615bc0565b5b60200260200101519050808311613444578281604051602001613427929190615c10565b604051602081830303815290604052805190602001209250613470565b8083604051602001613457929190615c10565b6040516020818303038152906040528051906020012092505b50808061347c90615ad3565b9150506133e5565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134fd90615cae565b60405180910390fd5b600084141561354a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354190615d40565b60405180910390fd5b61355760008683876133ab565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156137f157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156137dc5761379c6000888488612efb565b6137db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d290614f99565b60405180910390fd5b5b81806001019250508080600101915050613725565b50806001819055505061380760008683876133b1565b5050505050565b82805461381a90614376565b90600052602060002090601f01602090048101928261383c5760008555613883565b82601f1061385557803560ff1916838001178555613883565b82800160010185558215613883579182015b82811115613882578235825591602001919060010190613867565b5b50905061389091906138ce565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156138e75760008160009055506001016138cf565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f840112613924576139236138ff565b5b8235905067ffffffffffffffff81111561394157613940613904565b5b60208301915083600182028301111561395d5761395c613909565b5b9250929050565b6000806020838503121561397b5761397a6138f5565b5b600083013567ffffffffffffffff811115613999576139986138fa565b5b6139a58582860161390e565b92509250509250929050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139e6816139b1565b81146139f157600080fd5b50565b600081359050613a03816139dd565b92915050565b600060208284031215613a1f57613a1e6138f5565b5b6000613a2d848285016139f4565b91505092915050565b60008115159050919050565b613a4b81613a36565b82525050565b6000602082019050613a666000830184613a42565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613aa6578082015181840152602081019050613a8b565b83811115613ab5576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ad782613a6c565b613ae18185613a77565b9350613af1818560208601613a88565b613afa81613abb565b840191505092915050565b60006020820190508181036000830152613b1f8184613acc565b905092915050565b6000819050919050565b613b3a81613b27565b8114613b4557600080fd5b50565b600081359050613b5781613b31565b92915050565b600060208284031215613b7357613b726138f5565b5b6000613b8184828501613b48565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bb582613b8a565b9050919050565b613bc581613baa565b82525050565b6000602082019050613be06000830184613bbc565b92915050565b613bef81613baa565b8114613bfa57600080fd5b50565b600081359050613c0c81613be6565b92915050565b60008060408385031215613c2957613c286138f5565b5b6000613c3785828601613bfd565b9250506020613c4885828601613b48565b9150509250929050565b613c5b81613b27565b82525050565b6000602082019050613c766000830184613c52565b92915050565b60008083601f840112613c9257613c916138ff565b5b8235905067ffffffffffffffff811115613caf57613cae613904565b5b602083019150836020820283011115613ccb57613cca613909565b5b9250929050565b600080600060408486031215613ceb57613cea6138f5565b5b6000613cf986828701613bfd565b935050602084013567ffffffffffffffff811115613d1a57613d196138fa565b5b613d2686828701613c7c565b92509250509250925092565b600063ffffffff82169050919050565b613d4b81613d32565b82525050565b6000602082019050613d666000830184613d42565b92915050565b600080600060608486031215613d8557613d846138f5565b5b6000613d9386828701613bfd565b9350506020613da486828701613bfd565b9250506040613db586828701613b48565b9150509250925092565b6000819050919050565b613dd281613dbf565b82525050565b6000602082019050613ded6000830184613dc9565b92915050565b6000613dfe82613b8a565b9050919050565b613e0e81613df3565b8114613e1957600080fd5b50565b600081359050613e2b81613e05565b92915050565b60008060408385031215613e4857613e476138f5565b5b6000613e5685828601613e1c565b9250506020613e6785828601613b48565b9150509250929050565b600060208284031215613e8757613e866138f5565b5b6000613e9584828501613bfd565b91505092915050565b600080600060408486031215613eb757613eb66138f5565b5b6000613ec586828701613b48565b935050602084013567ffffffffffffffff811115613ee657613ee56138fa565b5b613ef286828701613c7c565b92509250509250925092565b613f0781613dbf565b8114613f1257600080fd5b50565b600081359050613f2481613efe565b92915050565b600060208284031215613f4057613f3f6138f5565b5b6000613f4e84828501613f15565b91505092915050565b600061ffff82169050919050565b613f6e81613f57565b8114613f7957600080fd5b50565b600081359050613f8b81613f65565b92915050565b60008060008060808587031215613fab57613faa6138f5565b5b6000613fb987828801613b48565b9450506020613fca87828801613f15565b9350506040613fdb87828801613b48565b9250506060613fec87828801613f7c565b91505092959194509250565b61400181613a36565b811461400c57600080fd5b50565b60008135905061401e81613ff8565b92915050565b6000806040838503121561403b5761403a6138f5565b5b600061404985828601613bfd565b925050602061405a8582860161400f565b9150509250929050565b60006020828403121561407a576140796138f5565b5b60006140888482850161400f565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6140ce82613abb565b810181811067ffffffffffffffff821117156140ed576140ec614096565b5b80604052505050565b60006141006138eb565b905061410c82826140c5565b919050565b600067ffffffffffffffff82111561412c5761412b614096565b5b61413582613abb565b9050602081019050919050565b82818337600083830152505050565b600061416461415f84614111565b6140f6565b9050828152602081018484840111156141805761417f614091565b5b61418b848285614142565b509392505050565b600082601f8301126141a8576141a76138ff565b5b81356141b8848260208601614151565b91505092915050565b600080600080608085870312156141db576141da6138f5565b5b60006141e987828801613bfd565b94505060206141fa87828801613bfd565b935050604061420b87828801613b48565b925050606085013567ffffffffffffffff81111561422c5761422b6138fa565b5b61423887828801614193565b91505092959194509250565b60006020828403121561425a576142596138f5565b5b600061426884828501613f7c565b91505092915050565b60008060408385031215614288576142876138f5565b5b600061429685828601613bfd565b92505060206142a785828601613bfd565b9150509250929050565b6142ba81613f57565b82525050565b60006020820190506142d560008301846142b1565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614311602083613a77565b915061431c826142db565b602082019050919050565b6000602082019050818103600083015261434081614304565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061438e57607f821691505b602082108114156143a2576143a1614347565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614404602d83613a77565b915061440f826143a8565b604082019050919050565b60006020820190508181036000830152614433816143f7565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614496602283613a77565b91506144a18261443a565b604082019050919050565b600060208201905081810360008301526144c581614489565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614528603983613a77565b9150614533826144cc565b604082019050919050565b600060208201905081810360008301526145578161451b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061459882613b27565b91506145a383613b27565b9250828210156145b6576145b561455e565b5b828203905092915050565b7f53616c65206973206e6f74206f70656e2e000000000000000000000000000000600082015250565b60006145f7601183613a77565b9150614602826145c1565b602082019050919050565b60006020820190508181036000830152614626816145ea565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614689602283613a77565b91506146948261462d565b604082019050919050565b600060208201905081810360008301526146b88161467c565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061471b602e83613a77565b9150614726826146bf565b604082019050919050565b6000602082019050818103600083015261474a8161470e565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006147ad602383613a77565b91506147b882614751565b604082019050919050565b600060208201905081810360008301526147dc816147a0565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614819601f83613a77565b9150614824826147e3565b602082019050919050565b600060208201905081810360008301526148488161480c565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006148ab602b83613a77565b91506148b68261484f565b604082019050919050565b600060208201905081810360008301526148da8161489e565b9050919050565b7f4d696e743a2073616c65206973206e6f74206f70656e00000000000000000000600082015250565b6000614917601683613a77565b9150614922826148e1565b602082019050919050565b600060208201905081810360008301526149468161490a565b9050919050565b600061495882613b27565b915061496383613b27565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149985761499761455e565b5b828201905092915050565b7f4d696e743a2043616e6e6f74206d696e74206d6f7265207468616e207468652060008201527f6d617820737570706c7920666f72207468652063757272656e742073616c652060208201527f706572696f642e00000000000000000000000000000000000000000000000000604082015250565b6000614a25604783613a77565b9150614a30826149a3565b606082019050919050565b60006020820190508181036000830152614a5481614a18565b9050919050565b7f4d696e743a2052656163686564206d6178207061737320737570706c79206f6660008201527f2067656e65736973207061737365732e00000000000000000000000000000000602082015250565b6000614ab7603083613a77565b9150614ac282614a5b565b604082019050919050565b60006020820190508181036000830152614ae681614aaa565b9050919050565b7f4d696e743a20416d6f756e742065786365656465642e00000000000000000000600082015250565b6000614b23601683613a77565b9150614b2e82614aed565b602082019050919050565b60006020820190508181036000830152614b5281614b16565b9050919050565b6000614b6482613b27565b9150614b6f83613b27565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ba857614ba761455e565b5b828202905092915050565b7f4d696e743a205061796d656e7420696e636f7272656374000000000000000000600082015250565b6000614be9601783613a77565b9150614bf482614bb3565b602082019050919050565b60006020820190508181036000830152614c1881614bdc565b9050919050565b7f4d696e743a2055736572206973206e6f7420617574686f72697a656420746f2060008201527f6d696e7420612067656e6573697320706173732e000000000000000000000000602082015250565b6000614c7b603483613a77565b9150614c8682614c1f565b604082019050919050565b60006020820190508181036000830152614caa81614c6e565b9050919050565b6000604082019050614cc66000830185613bbc565b614cd36020830184613c52565b9392505050565b7f416c6c20706173736573206861766520616c7265616479206265656e20736f6c60008201527f642e000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d36602283613a77565b9150614d4182614cda565b604082019050919050565b60006020820190508181036000830152614d6581614d29565b9050919050565b7f4d617820737570706c7920666f72207468652073616c652077697468206f776e60008201527f6572206d696e7473206578636565647320746f74616c20746f6b656e2073757060208201527f706c792e00000000000000000000000000000000000000000000000000000000604082015250565b6000614dee604483613a77565b9150614df982614d6c565b606082019050919050565b60006020820190508181036000830152614e1d81614de1565b9050919050565b6000614e2f82613f57565b915061ffff821415614e4457614e4361455e565b5b600182019050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614e85601a83613a77565b9150614e9082614e4f565b602082019050919050565b60006020820190508181036000830152614eb481614e78565b9050919050565b7f53616c652064617461206d757374206265207365742066697273740000000000600082015250565b6000614ef1601b83613a77565b9150614efc82614ebb565b602082019050919050565b60006020820190508181036000830152614f2081614ee4565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614f83603383613a77565b9150614f8e82614f27565b604082019050919050565b60006020820190508181036000830152614fb281614f76565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615015602f83613a77565b915061502082614fb9565b604082019050919050565b6000602082019050818103600083015261504481615008565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461507881614376565b615082818661504b565b9450600182166000811461509d57600181146150ae576150e1565b60ff198316865281860193506150e1565b6150b785615056565b60005b838110156150d9578154818901526001820191506020810190506150ba565b838801955050505b50505092915050565b7f2023000000000000000000000000000000000000000000000000000000000000600082015250565b600061512060028361504b565b915061512b826150ea565b600282019050919050565b600061514182613a6c565b61514b818561504b565b935061515b818560208601613a88565b80840191505092915050565b6000615173828561506b565b915061517e82615113565b915061518a8284615136565b91508190509392505050565b7f7b226e616d65223a202200000000000000000000000000000000000000000000600082015250565b60006151cc600a8361504b565b91506151d782615196565b600a82019050919050565b600081519050919050565b600081905092915050565b6000615203826151e2565b61520d81856151ed565b935061521d818560208601613a88565b80840191505092915050565b7f222c226465736372697074696f6e223a22000000000000000000000000000000600082015250565b600061525f60118361504b565b915061526a82615229565b601182019050919050565b7f222c22616e696d6174696f6e5f75726c223a2022000000000000000000000000600082015250565b60006152ab60148361504b565b91506152b682615275565b601482019050919050565b7f222c22696d616765223a20220000000000000000000000000000000000000000600082015250565b60006152f7600c8361504b565b9150615302826152c1565b600c82019050919050565b7f222c202265787465726e616c5f75726c223a2022000000000000000000000000600082015250565b600061534360148361504b565b915061534e8261530d565b601482019050919050565b7f222c202261747472696275746573223a205b7b2274726169745f74797065223a60008201527f202247656e65726174696f6e222c2276616c7565223a202230227d2c00000000602082015250565b60006153b5603c8361504b565b91506153c082615359565b603c82019050919050565b7f7b2274726169745f74797065223a202244657369676e6572222c202276616c7560008201527f65223a202253706f6e67656e75697479227d0000000000000000000000000000602082015250565b600061542760328361504b565b9150615432826153cb565b603282019050919050565b7f5d7d000000000000000000000000000000000000000000000000000000000000600082015250565b600061547360028361504b565b915061547e8261543d565b600282019050919050565b6000615494826151bf565b91506154a082886151f8565b91506154ab82615252565b91506154b7828761506b565b91506154c28261529e565b91506154ce828661506b565b91506154d9826152ea565b91506154e5828561506b565b91506154f082615336565b91506154fc828461506b565b9150615507826153a8565b91506155128261541a565b915061551d82615466565b91508190509695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000615562601d8361504b565b915061556d8261552c565b601d82019050919050565b600061558382615555565b915061558f8284615136565b915081905092915050565b7f52656163686564206d6178207061737320737570706c79206f662067656e657360008201527f6973207061737365732e00000000000000000000000000000000000000000000602082015250565b60006155f6602a83613a77565b91506156018261559a565b604082019050919050565b60006020820190508181036000830152615625816155e9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615688602683613a77565b91506156938261562c565b604082019050919050565b600060208201905081810360008301526156b78161567b565b9050919050565b60008160601b9050919050565b60006156d6826156be565b9050919050565b60006156e8826156cb565b9050919050565b6157006156fb82613baa565b6156dd565b82525050565b600061571282846156ef565b60148201915081905092915050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061577d603283613a77565b915061578882615721565b604082019050919050565b600060208201905081810360008301526157ac81615770565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061580f602683613a77565b915061581a826157b3565b604082019050919050565b6000602082019050818103600083015261583e81615802565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006158a1602583613a77565b91506158ac82615845565b604082019050919050565b600060208201905081810360008301526158d081615894565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000615933602a83613a77565b915061593e826158d7565b604082019050919050565b6000602082019050818103600083015261596281615926565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006159c5602f83613a77565b91506159d082615969565b604082019050919050565b600060208201905081810360008301526159f4816159b8565b9050919050565b600082825260208201905092915050565b6000615a17826151e2565b615a2181856159fb565b9350615a31818560208601613a88565b615a3a81613abb565b840191505092915050565b6000608082019050615a5a6000830187613bbc565b615a676020830186613bbc565b615a746040830185613c52565b8181036060830152615a868184615a0c565b905095945050505050565b600081519050615aa0816139dd565b92915050565b600060208284031215615abc57615abb6138f5565b5b6000615aca84828501615a91565b91505092915050565b6000615ade82613b27565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615b1157615b1061455e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615b5682613b27565b9150615b6183613b27565b925082615b7157615b70615b1c565b5b828204905092915050565b600060ff82169050919050565b6000615b9482615b7c565b9150615b9f83615b7c565b92508260ff03821115615bb557615bb461455e565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b615c0a615c0582613dbf565b615bef565b82525050565b6000615c1c8285615bf9565b602082019150615c2c8284615bf9565b6020820191508190509392505050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615c98602183613a77565b9150615ca382615c3c565b604082019050919050565b60006020820190508181036000830152615cc781615c8b565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000615d2a602883613a77565b9150615d3582615cce565b604082019050919050565b60006020820190508181036000830152615d5981615d1d565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220e52fb29773bd2b023698b3ae1500efe9fea58919f902fa67c5c046c27f6ef52564736f6c63430008090033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.