ETH Price: $2,367.41 (-0.95%)

Token

Phto Innovation of Influence ()
 

Overview

Max Total Supply

436

Holders

162

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
computerlove.eth
0xad193fc2a430f999498b5ab7457d6bec11d4b571
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:
PhtoInnovationOfInfluence

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 23 : PhtoInnovationOfInfluence.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "./SaleManager.sol";
import "./VRFManager.sol";
import "./ProbabilityMap.sol";
import "./Tag.sol";
import "./TermsAndConditions.sol";

//  ________  ___  ___  _________  ________
// |\   __  \|\  \|\  \|\___   ___\\   __  \
// \ \  \|\  \ \  \\\  \|___ \  \_\ \  \|\  \
//  \ \   ____\ \   __  \   \ \  \ \ \  \\\  \
//   \ \  \___|\ \  \ \  \   \ \  \ \ \  \\\  \
//    \ \__\    \ \__\ \__\   \ \__\ \ \_______\
//     \|__|     \|__|\|__|    \|__|  \|_______|

/// @title Phto Innovation of Influence
/// @author Atlas C.O.R.P.
contract PhtoInnovationOfInfluence is
    ERC1155Supply,
    SaleManager,
    VRFManager,
    ProbabilityMap,
    Ownable,
    PaymentSplitter
{
    using MerkleProof for bytes32[];

    mapping(uint256 => uint256) public deckCache;

    bytes32 public merkleroot;

    string public name = "Phto Innovation of Influence";

    string public COAdocuments;

    modifier whenAddressOnWhitelist(
        bytes32[] calldata _merkleproof,
        uint256 _maxItems
    ) {
        require(
            MerkleProof.verify(
                _merkleproof,
                merkleroot,
                keccak256(abi.encodePacked(msg.sender, _maxItems))
            ),
            "whenAddressOnWhitelist: invalid merkle verfication"
        );
        _;
    }

    constructor(
        string memory _URI,
        string memory _coaDocuments,
        uint256[] memory reserveTokenIds,
        uint256[] memory reserveTokenAmounts,
        SaleManagerConstructorArgs memory _saleManagerConstructorArgs,
        VRFManagerConstructorArgs memory _VRFManagerConstructorArgs,
        address[] memory _payees,
        uint256[] memory _shares
    )
        ERC1155(_URI)
        SaleManager(_saleManagerConstructorArgs)
        VRFManager(_VRFManagerConstructorArgs)
        PaymentSplitter(_payees, _shares)
    {
        _mintBatch(msg.sender, reserveTokenIds, reserveTokenAmounts, "");
        counter = 55;
        supply = 55;

        COAdocuments = _coaDocuments;
    }

    /// @param _numTokens is the number of tokens caller wants to purchase
    function purchase(uint32 _numTokens) external payable {
        require(
            saleState == SaleState.ACTIVE,
            "mint: sale state must be active"
        );

        require(_numTokens > 0, "claim: Must input a number greater than 0");

        require(
            msg.value >= _numTokens * PRICE,
            "mint: caller sent incorrect value"
        );
        require(
            _numTokens + counter <= MAX_TOKENS_IN_SALE,
            "mint: insufficient supply remaining for purchase"
        );
        require(
            _numTokens <= MAX_PER_TRANSACTION,
            "mint: caller cannot mint more than xxxx per transactions"
        );

        uint256 requestId = requestRandomWords(_numTokens);
        callerByRequestId[requestId] = msg.sender;

        unchecked {
            counter += _numTokens;
        }
    }

    /// @param _numTokens is the number of tokens caller wants to purchase
    /// @param _maxItems is the max amount of items you can claim
    /// @param _merkleproof is the value to prove you are on whitelist
    function claim(
        uint32 _numTokens,
        uint256 _maxItems,
        bytes32[] calldata _merkleproof
    ) external whenAddressOnWhitelist(_merkleproof, _maxItems) {
        require(
            saleState == SaleState.CLAIM,
            "claim: sale state must be active"
        );

        require(_numTokens > 0, "claim: Must input a number greater than 0");

        // Is it possible to hit this condition given amount allowed in whitelist
        require(
            _numTokens + counter <= MAX_TOKENS_IN_SALE,
            "claim: insufficient supply remaining for purchase"
        );

        require(
            _numTokens + tokensClaimedByAddress[msg.sender] <= _maxItems,
            "claim: insufficient supply remaining for purchase"
        );

        require(
            _numTokens <= MAX_PER_TRANSACTION,
            "claim: caller cannot mint more than xxxx per transactions"
        );

        uint256 requestId = requestRandomWords(_numTokens);
        callerByRequestId[requestId] = msg.sender;

        unchecked {
            counter += _numTokens;
            tokensClaimedByAddress[msg.sender] += _numTokens;
        }
    }

    /// @param _numTokens is the number of tokens caller wants to purchase
    function requestRandomWords(uint32 _numTokens) private returns (uint256) {
        return
            COORDINATOR.requestRandomWords(
                keyHash,
                subscriptionId,
                requestConfirmations,
                (callbackGasLimitMultiplier * _numTokens) +
                    callbackGasLimitBase,
                _numTokens
            );
    }

    /// @param requestId the Id matching contract call to chainlink
    /// @param randomWords is the random numbers from VRF
    function fulfillRandomWords(uint256 requestId, uint256[] memory randomWords)
        internal
        override
    {
        // deck deal for serial numbers
        uint256[] memory serialNumbers = dealTokens(randomWords);
        // identify collections based on serial numbers using probability map
        uint256 i;
        for (; i < randomWords.length; ) {
            _mint(callerByRequestId[requestId], serialNumbers[i], 1, "");
            unchecked {
                ++i;
                ++supply;
            }
        }
    }

    /// @param _saleState is the state in which the contract is in
    function setSaleState(SaleState _saleState) public override onlyOwner {
        super.setSaleState(_saleState);
    }

    /// @param _subscriptionId is the Id from the Chainlink subscription manager
    function updateSubscriptionId(uint64 _subscriptionId)
        public
        override
        onlyOwner
    {
        super.updateSubscriptionId(_subscriptionId);
    }

    /// @param _keyHash is the keyhash from the Chainlink subscription manager
    function updateKeyHash(bytes32 _keyHash) public override onlyOwner {
        super.updateKeyHash(_keyHash);
    }

    /// @param _callbackGasLimitMultiplier is the maximum gas for a callback function
    function updateCallbackGasLimits(
        uint32 _callbackGasLimitMultiplier,
        uint32 _callbackGasLimitBase
    ) public override onlyOwner {
        super.updateCallbackGasLimits(
            _callbackGasLimitMultiplier,
            _callbackGasLimitBase
        );
    }

    /// @param _requestConfirmations the confirmation number from the request
    function updateRequestConfirmations(uint16 _requestConfirmations)
        public
        override
        onlyOwner
    {
        super.updateRequestConfirmations(_requestConfirmations);
    }

    /// @notice used to randomly assign tokenId's to the NFT mint
    /// @param _randomWords is assigning a random number to a tokenId from Chainlink
    /// @return tokenIds returns an array of random tokenId's
    function dealTokens(uint256[] memory _randomWords)
        private
        returns (uint256[] memory)
    {
        uint256 tokensRemaining = MAX_TOKENS_IN_SALE - supply;

        uint256 numberOfTokens = _randomWords.length;
        uint256[] memory tokenIds = new uint256[](numberOfTokens);

        uint256 i;
        for (; i < numberOfTokens; ) {
            uint256 randomNum = _randomWords[i] % tokensRemaining;

            uint256 index = deckCache[randomNum] == 0
                ? randomNum
                : deckCache[randomNum];

            deckCache[randomNum] = deckCache[tokensRemaining] == 0
                ? --tokensRemaining
                : deckCache[--tokensRemaining];

            tokenIds[i] = _mapCollectionId(index);

            unchecked {
                ++i;
            }
        }

        return tokenIds;
    }

    /// @param _merkleRoot is the whitelist
    function setMerkleroot(bytes32 _merkleRoot) external onlyOwner {
        merkleroot = _merkleRoot;
    }

    /// @param _baseURI is an IPFS link
    function setBaseURI(string memory _baseURI) external onlyOwner {
        _setURI(_baseURI);
    }

    /// @param _coaDocuments is an IPFS link
    function setCOADocuments(string memory _coaDocuments) external onlyOwner {
        COAdocuments = _coaDocuments;
    }

    /// @dev used for convenience
    function getTotalBalance(address _address) public view returns (uint256) {
        uint256 i = 1;
        uint256 total;
        for (; i < 103; ) {
            total += balanceOf(_address, i);
            unchecked {
                ++i;
            }
        }
        return total;
    }
}

File 2 of 23 : VRFManager.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;

import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol";
import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

struct VRFManagerConstructorArgs {
    uint64 subscriptionId;
    address vrfCoordinator;
    bytes32 keyHash;
    uint32 callbackGasLimitMultiplier;
    uint32 callbackGasLimitBase;
    uint16 requestConfirmations;
}

contract VRFManager is VRFConsumerBaseV2 {
    VRFCoordinatorV2Interface public COORDINATOR;
    uint64 public subscriptionId;
    bytes32 public keyHash;
    uint32 public callbackGasLimitMultiplier;
    uint32 public callbackGasLimitBase;
    uint16 public requestConfirmations;

    constructor(VRFManagerConstructorArgs memory _VRFManagerConstructorArgs)
        VRFConsumerBaseV2(_VRFManagerConstructorArgs.vrfCoordinator)
    {
        COORDINATOR = VRFCoordinatorV2Interface(
            _VRFManagerConstructorArgs.vrfCoordinator
        );
        subscriptionId = _VRFManagerConstructorArgs.subscriptionId;
        keyHash = _VRFManagerConstructorArgs.keyHash;
        callbackGasLimitMultiplier = _VRFManagerConstructorArgs
            .callbackGasLimitMultiplier;
        callbackGasLimitBase = _VRFManagerConstructorArgs.callbackGasLimitBase;
        requestConfirmations = _VRFManagerConstructorArgs.requestConfirmations;
    }

    function fulfillRandomWords(uint256 requestId, uint256[] memory randomWords)
        internal
        virtual
        override
    {}

    function updateSubscriptionId(uint64 _subscriptionId) public virtual {
        subscriptionId = _subscriptionId;
    }

    function updateKeyHash(bytes32 _keyHash) public virtual {
        keyHash = _keyHash;
    }

    function updateCallbackGasLimits(
        uint32 _callbackGasLimitMultiplier,
        uint32 _callbackGasLimitBase
    ) public virtual {
        callbackGasLimitMultiplier = _callbackGasLimitMultiplier;
        callbackGasLimitBase = _callbackGasLimitBase;
    }

    function updateRequestConfirmations(uint16 _requestConfirmations)
        public
        virtual
    {
        require(
            _requestConfirmations >= 3,
            "updateRequestConfirmations: request confirmations must be at least 3"
        );
        requestConfirmations = _requestConfirmations;
    }
}

File 3 of 23 : TermsAndConditions.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;

/**
    Collector Terms & Conditions are available on Phto.io. 
    The purchase of this Phto. NFT is a purchase of the asset, not of the copyright.
 */

File 4 of 23 : Tag.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;

//                      ---------------[ ]---------------
//                      -------[ ]-------------[ ]-------
//                      ---------------------------------
//                      ----[ ]--------[ ]--------[ ]----
//                      ---------------------------------
//                      -------[ ]-------------[ ]-------
//                      ---------------[ ]---------------

File 5 of 23 : SaleManager.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;

struct SaleManagerConstructorArgs {
    uint256 price;
    uint256 maxTokensInSale;
    uint256 maxPerTransaction;
}

enum SaleState {
    OFF,
    CLAIM,
    ACTIVE
}

contract SaleManager {
    uint256 public PRICE;
    uint256 public MAX_TOKENS_IN_SALE;
    uint256 public MAX_PER_TRANSACTION;

    SaleState public saleState;
    mapping(uint256 => address) public callerByRequestId;
    mapping(address => uint256) public tokensClaimedByAddress;

    uint256 public counter;
    uint256 public supply;

    constructor(SaleManagerConstructorArgs memory _saleManagerConstructorArgs) {
        PRICE = _saleManagerConstructorArgs.price;
        MAX_TOKENS_IN_SALE = _saleManagerConstructorArgs.maxTokensInSale;
        MAX_PER_TRANSACTION = _saleManagerConstructorArgs.maxPerTransaction;
    }

    function setSaleState(SaleState _saleState) public virtual {
        saleState = _saleState;
    }
}

File 6 of 23 : ProbabilityMap.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;

contract ProbabilityMap {
    function _mapCollectionId(uint256 _serialNumber)
        internal
        pure
        returns (uint256)
    {
        if (_serialNumber > 645) {
            if (_serialNumber > 1125) {
                if (_serialNumber > 1424) {
                    if (_serialNumber > 1525) {
                        if (_serialNumber > 1575) {
                            if (_serialNumber > 1625) {
                                return 102;
                            } else {
                                return 101;
                            }
                        } else {
                            return 100;
                        }
                    } else {
                        if (_serialNumber > 1475) {
                            return 99;
                        } else {
                            return 98;
                        }
                    }
                } else {
                    if (_serialNumber > 1275) {
                        if (_serialNumber > 1325) {
                            if (_serialNumber > 1375) {
                                return 97;
                            } else {
                                return 96;
                            }
                        } else {
                            return 95;
                        }
                    } else {
                        if (_serialNumber > 1175) {
                            if (_serialNumber > 1225) {
                                return 94;
                            } else {
                                return 93;
                            }
                        } else {
                            return 92;
                        }
                    }
                }
            } else {
                if (_serialNumber > 855) {
                    if (_serialNumber > 975) {
                        if (_serialNumber > 1025) {
                            if (_serialNumber > 1075) {
                                return 91;
                            } else {
                                return 90;
                            }
                        } else {
                            return 89;
                        }
                    } else {
                        if (_serialNumber > 890) {
                            if (_serialNumber > 925) {
                                return 88;
                            } else {
                                return 87;
                            }
                        } else {
                            return 86;
                        }
                    }
                } else {
                    if (_serialNumber > 750) {
                        if (_serialNumber > 785) {
                            if (_serialNumber > 820) {
                                return 85;
                            } else {
                                return 84;
                            }
                        } else {
                            return 83;
                        }
                    } else {
                        if (_serialNumber > 680) {
                            if (_serialNumber > 715) {
                                return 82;
                            } else {
                                return 81;
                            }
                        } else {
                            return 80;
                        }
                    }
                }
            }
        } else {
            if (_serialNumber > 275) {
                if (_serialNumber > 435) {
                    if (_serialNumber > 540) {
                        if (_serialNumber > 575) {
                            if (_serialNumber > 610) {
                                return 79;
                            } else {
                                return 78;
                            }
                        } else {
                            return 77;
                        }
                    } else {
                        if (_serialNumber > 470) {
                            if (_serialNumber > 505) {
                                return 76;
                            } else {
                                return 75;
                            }
                        } else {
                            return 74;
                        }
                    }
                } else {
                    if (_serialNumber > 350) {
                        if (_serialNumber > 375) {
                            if (_serialNumber > 400) {
                                return 73;
                            } else {
                                return 72;
                            }
                        } else {
                            return 71;
                        }
                    } else {
                        if (_serialNumber > 300) {
                            if (_serialNumber > 325) {
                                return 70;
                            } else {
                                return 69;
                            }
                        } else {
                            return 68;
                        }
                    }
                }
            } else {
                if (_serialNumber > 130) {
                    if (_serialNumber > 200) {
                        if (_serialNumber > 225) {
                            if (_serialNumber > 250) {
                                return 67;
                            } else {
                                return 66;
                            }
                        } else {
                            return 65;
                        }
                    } else {
                        if (_serialNumber > 150) {
                            if (_serialNumber > 175) {
                                return 64;
                            } else {
                                return 63;
                            }
                        } else {
                            return 62;
                        }
                    }
                } else {
                    if (_serialNumber > 70) {
                        if (_serialNumber > 90) {
                            if (_serialNumber > 110) {
                                return 61;
                            } else {
                                return 60;
                            }
                        } else {
                            return 59;
                        }
                    } else {
                        if (_serialNumber > 45) {
                            if (_serialNumber > 50) {
                                return 58;
                            } else {
                                return 57;
                            }
                        } else {
                            return _serialNumber + 11;
                        }
                    }
                }
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

File 8 of 23 : 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 9 of 23 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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

File 10 of 23 : 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 11 of 23 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 23 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 13 of 23 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 15 of 23 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 16 of 23 : ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

File 17 of 23 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 18 of 23 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 19 of 23 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 20 of 23 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the
 * time of contract deployment and can't be updated thereafter.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Getter for the amount of payee's releasable Ether.
     */
    function releasable(address account) public view returns (uint256) {
        uint256 totalReceived = address(this).balance + totalReleased();
        return _pendingPayment(account, totalReceived, released(account));
    }

    /**
     * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an
     * IERC20 contract.
     */
    function releasable(IERC20 token, address account) public view returns (uint256) {
        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        return _pendingPayment(account, totalReceived, released(token, account));
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(token, account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 22 of 23 : VRFCoordinatorV2Interface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface VRFCoordinatorV2Interface {
  /**
   * @notice Get configuration relevant for making requests
   * @return minimumRequestConfirmations global min for request confirmations
   * @return maxGasLimit global max for request gas limit
   * @return s_provingKeyHashes list of registered key hashes
   */
  function getRequestConfig()
    external
    view
    returns (
      uint16,
      uint32,
      bytes32[] memory
    );

  /**
   * @notice Request a set of random words.
   * @param keyHash - Corresponds to a particular oracle job which uses
   * that key for generating the VRF proof. Different keyHash's have different gas price
   * ceilings, so you can select a specific one to bound your maximum per request cost.
   * @param subId  - The ID of the VRF subscription. Must be funded
   * with the minimum subscription balance required for the selected keyHash.
   * @param minimumRequestConfirmations - How many blocks you'd like the
   * oracle to wait before responding to the request. See SECURITY CONSIDERATIONS
   * for why you may want to request more. The acceptable range is
   * [minimumRequestBlockConfirmations, 200].
   * @param callbackGasLimit - How much gas you'd like to receive in your
   * fulfillRandomWords callback. Note that gasleft() inside fulfillRandomWords
   * may be slightly less than this amount because of gas used calling the function
   * (argument decoding etc.), so you may need to request slightly more than you expect
   * to have inside fulfillRandomWords. The acceptable range is
   * [0, maxGasLimit]
   * @param numWords - The number of uint256 random values you'd like to receive
   * in your fulfillRandomWords callback. Note these numbers are expanded in a
   * secure way by the VRFCoordinator from a single random value supplied by the oracle.
   * @return requestId - A unique identifier of the request. Can be used to match
   * a request to a response in fulfillRandomWords.
   */
  function requestRandomWords(
    bytes32 keyHash,
    uint64 subId,
    uint16 minimumRequestConfirmations,
    uint32 callbackGasLimit,
    uint32 numWords
  ) external returns (uint256 requestId);

  /**
   * @notice Create a VRF subscription.
   * @return subId - A unique subscription id.
   * @dev You can manage the consumer set dynamically with addConsumer/removeConsumer.
   * @dev Note to fund the subscription, use transferAndCall. For example
   * @dev  LINKTOKEN.transferAndCall(
   * @dev    address(COORDINATOR),
   * @dev    amount,
   * @dev    abi.encode(subId));
   */
  function createSubscription() external returns (uint64 subId);

  /**
   * @notice Get a VRF subscription.
   * @param subId - ID of the subscription
   * @return balance - LINK balance of the subscription in juels.
   * @return reqCount - number of requests for this subscription, determines fee tier.
   * @return owner - owner of the subscription.
   * @return consumers - list of consumer address which are able to use this subscription.
   */
  function getSubscription(uint64 subId)
    external
    view
    returns (
      uint96 balance,
      uint64 reqCount,
      address owner,
      address[] memory consumers
    );

  /**
   * @notice Request subscription owner transfer.
   * @param subId - ID of the subscription
   * @param newOwner - proposed new owner of the subscription
   */
  function requestSubscriptionOwnerTransfer(uint64 subId, address newOwner) external;

  /**
   * @notice Request subscription owner transfer.
   * @param subId - ID of the subscription
   * @dev will revert if original owner of subId has
   * not requested that msg.sender become the new owner.
   */
  function acceptSubscriptionOwnerTransfer(uint64 subId) external;

  /**
   * @notice Add a consumer to a VRF subscription.
   * @param subId - ID of the subscription
   * @param consumer - New consumer which can use the subscription
   */
  function addConsumer(uint64 subId, address consumer) external;

  /**
   * @notice Remove a consumer from a VRF subscription.
   * @param subId - ID of the subscription
   * @param consumer - Consumer to remove from the subscription
   */
  function removeConsumer(uint64 subId, address consumer) external;

  /**
   * @notice Cancel a subscription
   * @param subId - ID of the subscription
   * @param to - Where to send the remaining LINK to
   */
  function cancelSubscription(uint64 subId, address to) external;
}

File 23 of 23 : VRFConsumerBaseV2.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/** ****************************************************************************
 * @notice Interface for contracts using VRF randomness
 * *****************************************************************************
 * @dev PURPOSE
 *
 * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
 * @dev to Vera the verifier in such a way that Vera can be sure he's not
 * @dev making his output up to suit himself. Reggie provides Vera a public key
 * @dev to which he knows the secret key. Each time Vera provides a seed to
 * @dev Reggie, he gives back a value which is computed completely
 * @dev deterministically from the seed and the secret key.
 *
 * @dev Reggie provides a proof by which Vera can verify that the output was
 * @dev correctly computed once Reggie tells it to her, but without that proof,
 * @dev the output is indistinguishable to her from a uniform random sample
 * @dev from the output space.
 *
 * @dev The purpose of this contract is to make it easy for unrelated contracts
 * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
 * @dev simple access to a verifiable source of randomness. It ensures 2 things:
 * @dev 1. The fulfillment came from the VRFCoordinator
 * @dev 2. The consumer contract implements fulfillRandomWords.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFConsumerBase, and can
 * @dev initialize VRFConsumerBase's attributes in their constructor as
 * @dev shown:
 *
 * @dev   contract VRFConsumer {
 * @dev     constructor(<other arguments>, address _vrfCoordinator, address _link)
 * @dev       VRFConsumerBase(_vrfCoordinator) public {
 * @dev         <initialization with other arguments goes here>
 * @dev       }
 * @dev   }
 *
 * @dev The oracle will have given you an ID for the VRF keypair they have
 * @dev committed to (let's call it keyHash). Create subscription, fund it
 * @dev and your consumer contract as a consumer of it (see VRFCoordinatorInterface
 * @dev subscription management functions).
 * @dev Call requestRandomWords(keyHash, subId, minimumRequestConfirmations,
 * @dev callbackGasLimit, numWords),
 * @dev see (VRFCoordinatorInterface for a description of the arguments).
 *
 * @dev Once the VRFCoordinator has received and validated the oracle's response
 * @dev to your request, it will call your contract's fulfillRandomWords method.
 *
 * @dev The randomness argument to fulfillRandomWords is a set of random words
 * @dev generated from your requestId and the blockHash of the request.
 *
 * @dev If your contract could have concurrent requests open, you can use the
 * @dev requestId returned from requestRandomWords to track which response is associated
 * @dev with which randomness request.
 * @dev See "SECURITY CONSIDERATIONS" for principles to keep in mind,
 * @dev if your contract could have multiple requests in flight simultaneously.
 *
 * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
 * @dev differ.
 *
 * *****************************************************************************
 * @dev SECURITY CONSIDERATIONS
 *
 * @dev A method with the ability to call your fulfillRandomness method directly
 * @dev could spoof a VRF response with any random value, so it's critical that
 * @dev it cannot be directly called by anything other than this base contract
 * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
 *
 * @dev For your users to trust that your contract's random behavior is free
 * @dev from malicious interference, it's best if you can write it so that all
 * @dev behaviors implied by a VRF response are executed *during* your
 * @dev fulfillRandomness method. If your contract must store the response (or
 * @dev anything derived from it) and use it later, you must ensure that any
 * @dev user-significant behavior which depends on that stored value cannot be
 * @dev manipulated by a subsequent VRF request.
 *
 * @dev Similarly, both miners and the VRF oracle itself have some influence
 * @dev over the order in which VRF responses appear on the blockchain, so if
 * @dev your contract could have multiple VRF requests in flight simultaneously,
 * @dev you must ensure that the order in which the VRF responses arrive cannot
 * @dev be used to manipulate your contract's user-significant behavior.
 *
 * @dev Since the block hash of the block which contains the requestRandomness
 * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
 * @dev miner could, in principle, fork the blockchain to evict the block
 * @dev containing the request, forcing the request to be included in a
 * @dev different block with a different hash, and therefore a different input
 * @dev to the VRF. However, such an attack would incur a substantial economic
 * @dev cost. This cost scales with the number of blocks the VRF oracle waits
 * @dev until it calls responds to a request. It is for this reason that
 * @dev that you can signal to an oracle you'd like them to wait longer before
 * @dev responding to the request (however this is not enforced in the contract
 * @dev and so remains effective only in the case of unmodified oracle software).
 */
abstract contract VRFConsumerBaseV2 {
  error OnlyCoordinatorCanFulfill(address have, address want);
  address private immutable vrfCoordinator;

  /**
   * @param _vrfCoordinator address of VRFCoordinator contract
   */
  constructor(address _vrfCoordinator) {
    vrfCoordinator = _vrfCoordinator;
  }

  /**
   * @notice fulfillRandomness handles the VRF response. Your contract must
   * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
   * @notice principles to keep in mind when implementing your fulfillRandomness
   * @notice method.
   *
   * @dev VRFConsumerBaseV2 expects its subcontracts to have a method with this
   * @dev signature, and will call it once it has verified the proof
   * @dev associated with the randomness. (It is triggered via a call to
   * @dev rawFulfillRandomness, below.)
   *
   * @param requestId The Id initially returned by requestRandomness
   * @param randomWords the VRF output expanded to the requested number of words
   */
  function fulfillRandomWords(uint256 requestId, uint256[] memory randomWords) internal virtual;

  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
  // the origin of the call
  function rawFulfillRandomWords(uint256 requestId, uint256[] memory randomWords) external {
    if (msg.sender != vrfCoordinator) {
      revert OnlyCoordinatorCanFulfill(msg.sender, vrfCoordinator);
    }
    fulfillRandomWords(requestId, randomWords);
  }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_URI","type":"string"},{"internalType":"string","name":"_coaDocuments","type":"string"},{"internalType":"uint256[]","name":"reserveTokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"reserveTokenAmounts","type":"uint256[]"},{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxTokensInSale","type":"uint256"},{"internalType":"uint256","name":"maxPerTransaction","type":"uint256"}],"internalType":"struct SaleManagerConstructorArgs","name":"_saleManagerConstructorArgs","type":"tuple"},{"components":[{"internalType":"uint64","name":"subscriptionId","type":"uint64"},{"internalType":"address","name":"vrfCoordinator","type":"address"},{"internalType":"bytes32","name":"keyHash","type":"bytes32"},{"internalType":"uint32","name":"callbackGasLimitMultiplier","type":"uint32"},{"internalType":"uint32","name":"callbackGasLimitBase","type":"uint32"},{"internalType":"uint16","name":"requestConfirmations","type":"uint16"}],"internalType":"struct VRFManagerConstructorArgs","name":"_VRFManagerConstructorArgs","type":"tuple"},{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"have","type":"address"},{"internalType":"address","name":"want","type":"address"}],"name":"OnlyCoordinatorCanFulfill","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"COAdocuments","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COORDINATOR","outputs":[{"internalType":"contract VRFCoordinatorV2Interface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_IN_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"callbackGasLimitBase","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"callbackGasLimitMultiplier","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"callerByRequestId","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_numTokens","type":"uint32"},{"internalType":"uint256","name":"_maxItems","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleproof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"deckCache","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getTotalBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"keyHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleroot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_numTokens","type":"uint32"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestId","type":"uint256"},{"internalType":"uint256[]","name":"randomWords","type":"uint256[]"}],"name":"rawFulfillRandomWords","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestConfirmations","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"enum SaleState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_coaDocuments","type":"string"}],"name":"setCOADocuments","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleroot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum SaleState","name":"_saleState","type":"uint8"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"subscriptionId","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokensClaimedByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_callbackGasLimitMultiplier","type":"uint32"},{"internalType":"uint32","name":"_callbackGasLimitBase","type":"uint32"}],"name":"updateCallbackGasLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_keyHash","type":"bytes32"}],"name":"updateKeyHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_requestConfirmations","type":"uint16"}],"name":"updateRequestConfirmations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_subscriptionId","type":"uint64"}],"name":"updateSubscriptionId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e0604052601c60a09081527f5068746f20496e6e6f766174696f6e206f6620496e666c75656e63650000000060c0526018906200003e908262000b5e565b503480156200004c57600080fd5b5060405162004fc138038062004fc18339810160408190526200006f9162000f64565b8181848060200151878c6200008a81620002d360201b60201c565b5080516004556020808201516005556040918201516006556001600160a01b03928316608090815290840151600c805486516001600160401b0316600160a01b026001600160e01b0319909116929095169190911793909317909255820151600d556060820151600e80549284015160a09094015161ffff16680100000000000000000261ffff60401b1963ffffffff958616640100000000026001600160401b031990951695909316949094179290921716919091179055620001556200014f3390565b620002e5565b8051825114620001c75760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b60008251116200021a5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401620001be565b60005b825181101562000286576200027183828151811062000240576200024062001096565b60200260200101518383815181106200025d576200025d62001096565b60200260200101516200034a60201b60201c565b806200027d81620010c2565b9150506200021d565b505050620002ac338787604051806020016040528060008152506200053860201b60201c565b6037600a819055600b556019620002c4888262000b5e565b505050505050505050620012ef565b6002620002e1828262000b5e565b5050565b600e80546001600160a01b038381166a0100000000000000000000818102600160501b600160f01b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003b75760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b6064820152608401620001be565b60008111620004095760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401620001be565b6001600160a01b03821660009081526011602052604090205415620004855760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b6064820152608401620001be565b60138054600181019091557f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180546001600160a01b0319166001600160a01b0384169081179091556000908152601160205260409020819055600f54620004ef908290620010de565b600f55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6001600160a01b0384166200059a5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401620001be565b8151835114620005fe5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401620001be565b3362000610816000878787876200072a565b60005b8451811015620006b75783818151811062000632576200063262001096565b602002602001015160008087848151811062000652576200065262001096565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546200069c9190620010de565b90915550819050620006ae81620010c2565b91505062000613565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516200070a92919062001137565b60405180910390a46200072381600087878787620008e2565b5050505050565b62000745868686868686620008da60201b620019811760201c565b6001600160a01b038516620007d95760005b8351811015620007d75782818151811062000776576200077662001096565b60200260200101516003600086848151811062000797576200079762001096565b602002602001015181526020019081526020016000206000828254620007be9190620010de565b90915550620007cf905081620010c2565b905062000757565b505b6001600160a01b038416620008da5760005b8351811015620008d85760008482815181106200080c576200080c62001096565b6020026020010151905060008483815181106200082d576200082d62001096565b6020026020010151905060006003600084815260200190815260200160002054905081811015620008b25760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b6064820152608401620001be565b60009283526003602052604090922091039055620008d081620010c2565b9050620007eb565b505b505050505050565b62000901846001600160a01b031662000aae60201b620019891760201c565b15620008da5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906200093d908990899088908890889060040162001197565b6020604051808303816000875af19250505080156200097b575060408051601f3d908101601f191682019092526200097891810190620011fb565b60015b62000a3b576200098a6200122e565b806308c379a003620009ca5750620009a16200124b565b80620009ae5750620009cc565b8060405162461bcd60e51b8152600401620001be9190620012da565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401620001be565b6001600160e01b0319811663bc197c8160e01b14620008d85760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401620001be565b6001600160a01b03163b151590565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000ae857607f821691505b60208210810362000b0957634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000b5957600081815260208120601f850160051c8101602086101562000b385750805b601f850160051c820191505b81811015620008da5782815560010162000b44565b505050565b81516001600160401b0381111562000b7a5762000b7a62000abd565b62000b928162000b8b845462000ad3565b8462000b0f565b602080601f83116001811462000bca576000841562000bb15750858301515b600019600386901b1c1916600185901b178555620008da565b600085815260208120601f198616915b8281101562000bfb5788860151825594840194600190910190840162000bda565b508582101562000c1a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b601f8201601f191681016001600160401b038111828210171562000c525762000c5262000abd565b6040525050565b60005b8381101562000c7657818101518382015260200162000c5c565b50506000910152565b600082601f83011262000c9157600080fd5b81516001600160401b0381111562000cad5762000cad62000abd565b60405162000cc6601f8301601f19166020018262000c2a565b81815284602083860101111562000cdc57600080fd5b62000cef82602083016020870162000c59565b949350505050565b60006001600160401b0382111562000d135762000d1362000abd565b5060051b60200190565b600082601f83011262000d2f57600080fd5b8151602062000d3e8262000cf7565b60405162000d4d828262000c2a565b83815260059390931b850182019282810191508684111562000d6e57600080fd5b8286015b8481101562000d8b578051835291830191830162000d72565b509695505050505050565b60006060828403121562000da957600080fd5b604051606081016001600160401b038111828210171562000dce5762000dce62000abd565b80604052508091508251815260208301516020820152604083015160408201525092915050565b80516001600160a01b038116811462000e0d57600080fd5b919050565b805163ffffffff8116811462000e0d57600080fd5b805161ffff8116811462000e0d57600080fd5b600060c0828403121562000e4d57600080fd5b60405160c081016001600160401b03808211838310171562000e735762000e7362000abd565b8160405282935084519150808216821462000e8d57600080fd5b50815262000e9e6020840162000df5565b60208201526040830151604082015262000ebb6060840162000e12565b606082015262000ece6080840162000e12565b608082015262000ee160a0840162000e27565b60a08201525092915050565b600082601f83011262000eff57600080fd5b8151602062000f0e8262000cf7565b60405162000f1d828262000c2a565b83815260059390931b850182019282810191508684111562000f3e57600080fd5b8286015b8481101562000d8b5762000f568162000df5565b835291830191830162000f42565b6000806000806000806000806101e0898b03121562000f8257600080fd5b88516001600160401b038082111562000f9a57600080fd5b62000fa88c838d0162000c7f565b995060208b015191508082111562000fbf57600080fd5b62000fcd8c838d0162000c7f565b985060408b015191508082111562000fe457600080fd5b62000ff28c838d0162000d1d565b975060608b01519150808211156200100957600080fd5b620010178c838d0162000d1d565b9650620010288c60808d0162000d96565b9550620010398c60e08d0162000e3a565b94506101a08b01519150808211156200105157600080fd5b6200105f8c838d0162000eed565b93506101c08b01519150808211156200107757600080fd5b50620010868b828c0162000d1d565b9150509295985092959890939650565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201620010d757620010d7620010ac565b5060010190565b80820180821115620010f457620010f4620010ac565b92915050565b600081518084526020808501945080840160005b838110156200112c578151875295820195908201906001016200110e565b509495945050505050565b6040815260006200114c6040830185620010fa565b8281036020840152620011608185620010fa565b95945050505050565b600081518084526200118381602086016020860162000c59565b601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090620011c590830186620010fa565b8281036060840152620011d98186620010fa565b90508281036080840152620011ef818562001169565b98975050505050505050565b6000602082840312156200120e57600080fd5b81516001600160e01b0319811681146200122757600080fd5b9392505050565b600060033d1115620012485760046000803e5060005160e01c5b90565b600060443d10156200125a5790565b6040516003193d81016004833e81513d6001600160401b0380831160248401831017156200128a57505050505090565b8285019150815181811115620012a35750505050505090565b843d8701016020828501011115620012be5750505050505090565b620012cf6020828601018762000c2a565b509095945050505050565b60208152600062001227602083018462001169565b608051613caf6200131260003960008181610ec20152610f040152613caf6000f3fe6080604052600436106103385760003560e01c806381d30c83116101ab578063bb8a19e0116100f7578063d79779b211610095578063e985e9c51161006f578063e985e9c514610aa8578063eee64f4a14610af1578063f242432a14610b07578063f2fde38b14610b2757600080fd5b8063d79779b214610a3d578063e33b7de314610a73578063e7fa67e514610a8857600080fd5b8063c7f04e65116100d1578063c7f04e65146109be578063cb14eb87146109d1578063ce7c2ac2146109e7578063d3d3819314610a1d57600080fd5b8063bb8a19e01461093b578063bd85b03914610971578063c45ac0501461099e57600080fd5b806392f6c43911610164578063a3f8eace1161013e578063a3f8eace146108b0578063b0fb162f146108d0578063b6c7ecf514610905578063ba00f6c51461091b57600080fd5b806392f6c4391461083a5780639852595c1461085a578063a22cb4651461089057600080fd5b806381d30c831461078d578063852c211d146107ad5780638b83209b146107ca5780638d859f3e146107ea5780638da5cb5b146108005780638f2dbbb71461082557600080fd5b80633b2bcbf11161028557806358ff423d11610223578063603f4d52116101fd578063603f4d521461072557806361728f391461074c57806361bc221a14610762578063715018a61461077857600080fd5b806358ff423d146106ab5780635a67de07146106e55780635e4b62ab1461070557600080fd5b80634ba976b11161025f5780634ba976b1146106025780634e1273f41461062f5780634f558e791461065c57806355f804b31461068b57600080fd5b80633b2bcbf114610564578063406072a91461059c57806348b75044146105e257600080fd5b806309c1ba2e116102f257806319165587116102cc57806319165587146104ef5780631fe543e31461050f5780632eb2c2d61461052f5780633a98ef391461054f57600080fd5b806309c1ba2e146104705780630e89341c146104af57806314b1dd1b146104cf57600080fd5b8062fdd58e1461038657806301ffc9a7146103b957806302add615146103e9578063047fc9aa1461040b57806305f937991461042157806306fdde031461044e57600080fd5b36610381577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561039257600080fd5b506103a66103a1366004612ee2565b610b47565b6040519081526020015b60405180910390f35b3480156103c557600080fd5b506103d96103d4366004612f24565b610be0565b60405190151581526020016103b0565b3480156103f557600080fd5b50610409610404366004612f55565b610c30565b005b34801561041757600080fd5b506103a6600b5481565b34801561042d57600080fd5b506103a661043c366004612f88565b60166020526000908152604090205481565b34801561045a57600080fd5b50610463610c69565b6040516103b09190612ff1565b34801561047c57600080fd5b50600c5461049790600160a01b90046001600160401b031681565b6040516001600160401b0390911681526020016103b0565b3480156104bb57600080fd5b506104636104ca366004612f88565b610cf7565b3480156104db57600080fd5b506104096104ea366004613004565b610d8b565b3480156104fb57600080fd5b5061040961050a36600461302d565b610dbe565b34801561051b57600080fd5b5061040961052a366004613120565b610eb7565b34801561053b57600080fd5b5061040961054a3660046131e3565b610f3b565b34801561055b57600080fd5b50600f546103a6565b34801561057057600080fd5b50600c54610584906001600160a01b031681565b6040516001600160a01b0390911681526020016103b0565b3480156105a857600080fd5b506103a66105b7366004613290565b6001600160a01b03918216600090815260156020908152604080832093909416825291909152205490565b3480156105ee57600080fd5b506104096105fd366004613290565b610f87565b34801561060e57600080fd5b506103a661061d36600461302d565b60096020526000908152604090205481565b34801561063b57600080fd5b5061064f61064a3660046132c9565b6110aa565b6040516103b091906133c6565b34801561066857600080fd5b506103d9610677366004612f88565b600090815260036020526040902054151590565b34801561069757600080fd5b506104096106a63660046133d9565b6111d3565b3480156106b757600080fd5b50600e546106d090640100000000900463ffffffff1681565b60405163ffffffff90911681526020016103b0565b3480156106f157600080fd5b50610409610700366004613421565b6111e4565b34801561071157600080fd5b50610409610720366004613442565b6111f5565b34801561073157600080fd5b5060075461073f9060ff1681565b6040516103b091906134e1565b34801561075857600080fd5b506103a6600d5481565b34801561076e57600080fd5b506103a6600a5481565b34801561078457600080fd5b506104096114b3565b34801561079957600080fd5b506104096107a83660046133d9565b6114c7565b3480156107b957600080fd5b50600e546106d09063ffffffff1681565b3480156107d657600080fd5b506105846107e5366004612f88565b6114db565b3480156107f657600080fd5b506103a660045481565b34801561080c57600080fd5b50600e54600160501b90046001600160a01b0316610584565b34801561083157600080fd5b5061046361150b565b34801561084657600080fd5b50610409610855366004612f88565b611518565b34801561086657600080fd5b506103a661087536600461302d565b6001600160a01b031660009081526012602052604090205490565b34801561089c57600080fd5b506104096108ab366004613517565b611525565b3480156108bc57600080fd5b506103a66108cb36600461302d565b611530565b3480156108dc57600080fd5b50600e546108f290600160401b900461ffff1681565b60405161ffff90911681526020016103b0565b34801561091157600080fd5b506103a660175481565b34801561092757600080fd5b50610409610936366004613545565b611578565b34801561094757600080fd5b50610584610956366004612f88565b6008602052600090815260409020546001600160a01b031681565b34801561097d57600080fd5b506103a661098c366004612f88565b60009081526003602052604090205490565b3480156109aa57600080fd5b506103a66109b9366004613290565b611589565b6104096109cc366004613569565b611654565b3480156109dd57600080fd5b506103a660065481565b3480156109f357600080fd5b506103a6610a0236600461302d565b6001600160a01b031660009081526011602052604090205490565b348015610a2957600080fd5b506103a6610a3836600461302d565b611885565b348015610a4957600080fd5b506103a6610a5836600461302d565b6001600160a01b031660009081526014602052604090205490565b348015610a7f57600080fd5b506010546103a6565b348015610a9457600080fd5b50610409610aa3366004612f88565b6118b5565b348015610ab457600080fd5b506103d9610ac3366004613290565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b348015610afd57600080fd5b506103a660055481565b348015610b1357600080fd5b50610409610b22366004613584565b6118c6565b348015610b3357600080fd5b50610409610b4236600461302d565b61190b565b60006001600160a01b038316610bb75760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636cdb3d1360e11b1480610c1157506001600160e01b031982166303a24d0760e21b145b80610bda57506301ffc9a760e01b6001600160e01b0319831614610bda565b610c38611998565b600e805463ffffffff9283166401000000000267ffffffffffffffff199091169390921692909217179055565b5050565b60188054610c76906135ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca2906135ec565b8015610cef5780601f10610cc457610100808354040283529160200191610cef565b820191906000526020600020905b815481529060010190602001808311610cd257829003601f168201915b505050505081565b606060028054610d06906135ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610d32906135ec565b8015610d7f5780601f10610d5457610100808354040283529160200191610d7f565b820191906000526020600020905b815481529060010190602001808311610d6257829003601f168201915b50505050509050919050565b610d93611998565b600c805467ffffffffffffffff60a01b1916600160a01b6001600160401b0384160217905550565b50565b6001600160a01b038116600090815260116020526040902054610df35760405162461bcd60e51b8152600401610bae90613626565b6000610dfe82611530565b905080600003610e205760405162461bcd60e51b8152600401610bae9061366c565b6001600160a01b03821660009081526012602052604081208054839290610e489084906136cd565b925050819055508060106000828254610e6191906136cd565b90915550610e71905082826119fa565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f315760405163073e64fd60e21b81523360048201526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166024820152604401610bae565b610c658282611b18565b6001600160a01b038516331480610f575750610f578533610ac3565b610f735760405162461bcd60e51b8152600401610bae906136e0565b610f808585858585611b99565b5050505050565b6001600160a01b038116600090815260116020526040902054610fbc5760405162461bcd60e51b8152600401610bae90613626565b6000610fc88383611589565b905080600003610fea5760405162461bcd60e51b8152600401610bae9061366c565b6001600160a01b038084166000908152601560209081526040808320938616835292905290812080548392906110219084906136cd565b90915550506001600160a01b0383166000908152601460205260408120805483929061104e9084906136cd565b9091555061105f9050838383611d7c565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b6060815183511461110f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610bae565b600083516001600160401b0381111561112a5761112a61304a565b604051908082528060200260200182016040528015611153578160200160208202803683370190505b50905060005b84518110156111cb5761119e8582815181106111775761117761372f565b60200260200101518583815181106111915761119161372f565b6020026020010151610b47565b8282815181106111b0576111b061372f565b60209081029190910101526111c481613745565b9050611159565b509392505050565b6111db611998565b610dbb81611dce565b6111ec611998565b610dbb81611dda565b818184611274838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017546040516bffffffffffffffffffffffff193360601b16602082015260348101879052909250605401905060405160208183030381529060405280519060200120611e01565b6112db5760405162461bcd60e51b815260206004820152603260248201527f7768656e416464726573734f6e57686974656c6973743a20696e76616c69642060448201527136b2b935b632903b32b93334b1b0ba34b7b760711b6064820152608401610bae565b600160075460ff1660028111156112f4576112f46134cb565b146113415760405162461bcd60e51b815260206004820181905260248201527f636c61696d3a2073616c65207374617465206d757374206265206163746976656044820152606401610bae565b60008763ffffffff16116113675760405162461bcd60e51b8152600401610bae9061375e565b600554600a5461137d9063ffffffff8a166136cd565b111561139b5760405162461bcd60e51b8152600401610bae906137a7565b3360009081526009602052604090205486906113bd9063ffffffff8a166136cd565b11156113db5760405162461bcd60e51b8152600401610bae906137a7565b6006548763ffffffff1611156114595760405162461bcd60e51b815260206004820152603960248201527f636c61696d3a2063616c6c65722063616e6e6f74206d696e74206d6f7265207460448201527f68616e207878787820706572207472616e73616374696f6e73000000000000006064820152608401610bae565b600061146488611e17565b600090815260086020908152604080832080546001600160a01b03191633908117909155600a805463ffffffff909d169c8d019055835260099091529020805490980190975550505050505050565b6114bb611998565b6114c56000611f09565b565b6114cf611998565b6019610c65828261383e565b6000601382815481106114f0576114f061372f565b6000918252602090912001546001600160a01b031692915050565b60198054610c76906135ec565b611520611998565b601755565b610c65338383611f7c565b60008061153c60105490565b61154690476136cd565b9050611571838261156c866001600160a01b031660009081526012602052604090205490565b61205c565b9392505050565b611580611998565b610dbb8161209a565b6001600160a01b03821660009081526014602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa1580156115e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160c91906138fd565b61161691906136cd565b6001600160a01b0380861660009081526015602090815260408083209388168352929052205490915061164c908490839061205c565b949350505050565b600260075460ff16600281111561166d5761166d6134cb565b146116ba5760405162461bcd60e51b815260206004820152601f60248201527f6d696e743a2073616c65207374617465206d75737420626520616374697665006044820152606401610bae565b60008163ffffffff16116116e05760405162461bcd60e51b8152600401610bae9061375e565b6004546116f39063ffffffff8316613916565b34101561174c5760405162461bcd60e51b815260206004820152602160248201527f6d696e743a2063616c6c65722073656e7420696e636f72726563742076616c756044820152606560f81b6064820152608401610bae565b600554600a546117629063ffffffff84166136cd565b11156117c95760405162461bcd60e51b815260206004820152603060248201527f6d696e743a20696e73756666696369656e7420737570706c792072656d61696e60448201526f696e6720666f7220707572636861736560801b6064820152608401610bae565b6006548163ffffffff1611156118475760405162461bcd60e51b815260206004820152603860248201527f6d696e743a2063616c6c65722063616e6e6f74206d696e74206d6f726520746860448201527f616e207878787820706572207472616e73616374696f6e7300000000000000006064820152608401610bae565b600061185282611e17565b600090815260086020526040902080546001600160a01b0319163317905550600a805463ffffffff909216919091019055565b60006001815b60678210156115715761189e8483610b47565b6118a890826136cd565b905081600101915061188b565b6118bd611998565b610dbb81600d55565b6001600160a01b0385163314806118e257506118e28533610ac3565b6118fe5760405162461bcd60e51b8152600401610bae906136e0565b610f80858585858561214a565b611913611998565b6001600160a01b0381166119785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bae565b610dbb81611f09565b505050505050565b6001600160a01b03163b151590565b600e546001600160a01b03600160501b9091041633146114c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bae565b80471015611a4a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bae565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a97576040519150601f19603f3d011682016040523d82523d6000602084013e611a9c565b606091505b5050905080611b135760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bae565b505050565b6000611b2382612282565b905060005b8251811015611b93576000848152600860205260409020548251611b81916001600160a01b031690849084908110611b6257611b6261372f565b60200260200101516001604051806020016040528060008152506123d1565b600b8054600190810190915501611b28565b50505050565b8151835114611bfb5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610bae565b6001600160a01b038416611c215760405162461bcd60e51b8152600401610bae9061392d565b33611c308187878787876124f4565b60005b8451811015611d16576000858281518110611c5057611c5061372f565b602002602001015190506000858381518110611c6e57611c6e61372f565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611cbe5760405162461bcd60e51b8152600401610bae90613972565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611cfb9084906136cd565b9250508190555050505080611d0f90613745565b9050611c33565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611d669291906139bc565b60405180910390a461198181878787878761266d565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611b139084906127c8565b6002610c65828261383e565b6007805482919060ff19166001836002811115611df957611df96134cb565b021790555050565b600082611e0e858461289a565b14949350505050565b600c54600d54600e546000926001600160a01b03811692635d3b1d309290916001600160401b03600160a01b909104169061ffff600160401b8204169063ffffffff6401000000008204811691611e70918a91166139ea565b611e7a9190613a12565b6040516001600160e01b031960e087901b16815260048101949094526001600160401b03909216602484015261ffff16604483015263ffffffff90811660648301528516608482015260a4016020604051808303816000875af1158015611ee5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bda91906138fd565b600e80546001600160a01b03838116600160501b8181027fffff0000000000000000000000000000000000000000ffffffffffffffffffff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611fef5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610bae565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600f546001600160a01b038416600090815260116020526040812054909183916120869086613916565b6120909190613a4c565b61164c9190613a60565b60038161ffff1610156121235760405162461bcd60e51b8152602060048201526044602482018190527f75706461746552657175657374436f6e6669726d6174696f6e733a2072657175908201527f65737420636f6e6669726d6174696f6e73206d757374206265206174206c65616064820152637374203360e01b608482015260a401610bae565b600e805461ffff909216600160401b0269ffff000000000000000019909216919091179055565b6001600160a01b0384166121705760405162461bcd60e51b8152600401610bae9061392d565b33600061217c856128df565b90506000612189856128df565b90506121998389898585896124f4565b6000868152602081815260408083206001600160a01b038c168452909152902054858110156121da5760405162461bcd60e51b8152600401610bae90613972565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906122179084906136cd565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612277848a8a8a8a8a61292a565b505050505050505050565b60606000600b546005546122969190613a60565b83519091506000816001600160401b038111156122b5576122b561304a565b6040519080825280602002602001820160405280156122de578160200160208202803683370190505b50905060005b828110156123c8576000848783815181106123015761230161372f565b60200260200101516123139190613a73565b600081815260166020526040812054919250901561233f57600082815260166020526040902054612341565b815b6000878152601660205260409020549091501561237c576016600061236588613a87565b975087815260200190815260200160002054612389565b61238586613a87565b9550855b6000838152601660205260409020556123a1816129e5565b8484815181106123b3576123b361372f565b602090810291909101015250506001016122e4565b50949350505050565b6001600160a01b0384166124315760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bae565b33600061243d856128df565b9050600061244a856128df565b905061245b836000898585896124f4565b6000868152602081815260408083206001600160a01b038b1684529091528120805487929061248b9084906136cd565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46124eb8360008989898961292a565b50505050505050565b6001600160a01b03851661257b5760005b8351811015612579578281815181106125205761252061372f565b60200260200101516003600086848151811061253e5761253e61372f565b60200260200101518152602001908152602001600020600082825461256391906136cd565b90915550612572905081613745565b9050612505565b505b6001600160a01b0384166119815760005b83518110156124eb5760008482815181106125a9576125a961372f565b6020026020010151905060008483815181106125c7576125c761372f565b602002602001015190506000600360008481526020019081526020016000205490508181101561264a5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b6064820152608401610bae565b6000928352600360205260409092209103905561266681613745565b905061258c565b6001600160a01b0384163b156119815760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906126b19089908990889088908890600401613a9e565b6020604051808303816000875af19250505080156126ec575060408051601f3d908101601f191682019092526126e991810190613afc565b60015b612798576126f8613b19565b806308c379a003612731575061270c613b35565b806127175750612733565b8060405162461bcd60e51b8152600401610bae9190612ff1565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610bae565b6001600160e01b0319811663bc197c8160e01b146124eb5760405162461bcd60e51b8152600401610bae90613bbe565b600061281d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d289092919063ffffffff16565b805190915015611b13578080602001905181019061283b9190613c06565b611b135760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bae565b600081815b84518110156111cb576128cb828683815181106128be576128be61372f565b6020026020010151612d37565b9150806128d781613745565b91505061289f565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106129195761291961372f565b602090810291909101015292915050565b6001600160a01b0384163b156119815760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061296e9089908990889088908890600401613c23565b6020604051808303816000875af19250505080156129a9575060408051601f3d908101601f191682019092526129a691810190613afc565b60015b6129b5576126f8613b19565b6001600160e01b0319811663f23a6e6160e01b146124eb5760405162461bcd60e51b8152600401610bae90613bbe565b6000610285821115612b8557610465821115612ab757610590821115612a55576105f5821115612a3b57610627821115612a3357610659821115612a2b57506066919050565b506065919050565b506064919050565b6105c3821115612a4d57506063919050565b506062919050565b6104fb821115612a8b5761052d821115612a835761055f821115612a7b57506061919050565b506060919050565b50605f919050565b610497821115612aaf576104c9821115612aa75750605e919050565b50605d919050565b50605c919050565b610357821115612b23576103cf821115612af757610401821115612aef57610433821115612ae75750605b919050565b50605a919050565b506059919050565b61037a821115612b1b5761039d821115612b1357506058919050565b506057919050565b506056919050565b6102ee821115612b5957610311821115612b5157610334821115612b4957506055919050565b506054919050565b506053919050565b6102a8821115612b7d576102cb821115612b7557506052919050565b506051919050565b506050919050565b610113821115612c5d576101b3821115612bfb5761021c821115612bcf5761023f821115612bc757610262821115612bbf5750604f919050565b50604e919050565b50604d919050565b6101d6821115612bf3576101f9821115612beb5750604c919050565b50604b919050565b50604a919050565b61015e821115612c3157610177821115612c2957610190821115612c2157506049919050565b506048919050565b506047919050565b61012c821115612c5557610145821115612c4d57506046919050565b506045919050565b506044919050565b6082821115612cc35760c8821115612c995760e1821115612c915760fa821115612c8957506043919050565b506042919050565b506041919050565b6096821115612cbb5760af821115612cb357506040919050565b50603f919050565b50603e919050565b6046821115612cf657605a821115612cee57606e821115612ce65750603d919050565b50603c919050565b50603b919050565b602d821115612d18576032821115612d105750603a919050565b506039919050565b610bda82600b6136cd565b919050565b606061164c8484600085612d63565b6000818310612d53576000828152602084905260409020611571565b5060009182526020526040902090565b606082471015612dc45760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610bae565b6001600160a01b0385163b612e1b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bae565b600080866001600160a01b03168587604051612e379190613c5d565b60006040518083038185875af1925050503d8060008114612e74576040519150601f19603f3d011682016040523d82523d6000602084013e612e79565b606091505b5091509150612e89828286612e94565b979650505050505050565b60608315612ea3575081611571565b825115612eb35782518084602001fd5b8160405162461bcd60e51b8152600401610bae9190612ff1565b6001600160a01b0381168114610dbb57600080fd5b60008060408385031215612ef557600080fd5b8235612f0081612ecd565b946020939093013593505050565b6001600160e01b031981168114610dbb57600080fd5b600060208284031215612f3657600080fd5b813561157181612f0e565b803563ffffffff81168114612d2357600080fd5b60008060408385031215612f6857600080fd5b612f7183612f41565b9150612f7f60208401612f41565b90509250929050565b600060208284031215612f9a57600080fd5b5035919050565b60005b83811015612fbc578181015183820152602001612fa4565b50506000910152565b60008151808452612fdd816020860160208601612fa1565b601f01601f19169290920160200192915050565b6020815260006115716020830184612fc5565b60006020828403121561301657600080fd5b81356001600160401b038116811461157157600080fd5b60006020828403121561303f57600080fd5b813561157181612ecd565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b03811182821017156130855761308561304a565b6040525050565b60006001600160401b038211156130a5576130a561304a565b5060051b60200190565b600082601f8301126130c057600080fd5b813560206130cd8261308c565b6040516130da8282613060565b83815260059390931b85018201928281019150868411156130fa57600080fd5b8286015b8481101561311557803583529183019183016130fe565b509695505050505050565b6000806040838503121561313357600080fd5b8235915060208301356001600160401b0381111561315057600080fd5b61315c858286016130af565b9150509250929050565b60006001600160401b0383111561317f5761317f61304a565b604051613196601f8501601f191660200182613060565b8091508381528484840111156131ab57600080fd5b83836020830137600060208583010152509392505050565b600082601f8301126131d457600080fd5b61157183833560208501613166565b600080600080600060a086880312156131fb57600080fd5b853561320681612ecd565b9450602086013561321681612ecd565b935060408601356001600160401b038082111561323257600080fd5b61323e89838a016130af565b9450606088013591508082111561325457600080fd5b61326089838a016130af565b9350608088013591508082111561327657600080fd5b50613283888289016131c3565b9150509295509295909350565b600080604083850312156132a357600080fd5b82356132ae81612ecd565b915060208301356132be81612ecd565b809150509250929050565b600080604083850312156132dc57600080fd5b82356001600160401b03808211156132f357600080fd5b818501915085601f83011261330757600080fd5b813560206133148261308c565b6040516133218282613060565b83815260059390931b850182019282810191508984111561334157600080fd5b948201945b8386101561336857853561335981612ecd565b82529482019490820190613346565b9650508601359250508082111561337e57600080fd5b5061315c858286016130af565b600081518084526020808501945080840160005b838110156133bb5781518752958201959082019060010161339f565b509495945050505050565b602081526000611571602083018461338b565b6000602082840312156133eb57600080fd5b81356001600160401b0381111561340157600080fd5b8201601f8101841361341257600080fd5b61164c84823560208401613166565b60006020828403121561343357600080fd5b81356003811061157157600080fd5b6000806000806060858703121561345857600080fd5b61346185612f41565b93506020850135925060408501356001600160401b038082111561348457600080fd5b818701915087601f83011261349857600080fd5b8135818111156134a757600080fd5b8860208260051b85010111156134bc57600080fd5b95989497505060200194505050565b634e487b7160e01b600052602160045260246000fd5b602081016003831061350357634e487b7160e01b600052602160045260246000fd5b91905290565b8015158114610dbb57600080fd5b6000806040838503121561352a57600080fd5b823561353581612ecd565b915060208301356132be81613509565b60006020828403121561355757600080fd5b813561ffff8116811461157157600080fd5b60006020828403121561357b57600080fd5b61157182612f41565b600080600080600060a0868803121561359c57600080fd5b85356135a781612ecd565b945060208601356135b781612ecd565b9350604086013592506060860135915060808601356001600160401b038111156135e057600080fd5b613283888289016131c3565b600181811c9082168061360057607f821691505b60208210810361362057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610bda57610bda6136b7565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060018201613757576137576136b7565b5060010190565b60208082526029908201527f636c61696d3a204d75737420696e7075742061206e756d62657220677265617460408201526806572207468616e20360bc1b606082015260800190565b60208082526031908201527f636c61696d3a20696e73756666696369656e7420737570706c792072656d61696040820152706e696e6720666f7220707572636861736560781b606082015260800190565b601f821115611b1357600081815260208120601f850160051c8101602086101561381f5750805b601f850160051c820191505b818110156119815782815560010161382b565b81516001600160401b038111156138575761385761304a565b61386b8161386584546135ec565b846137f8565b602080601f8311600181146138a057600084156138885750858301515b600019600386901b1c1916600185901b178555611981565b600085815260208120601f198616915b828110156138cf578886015182559484019460019091019084016138b0565b50858210156138ed5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561390f57600080fd5b5051919050565b8082028115828204841417610bda57610bda6136b7565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006139cf604083018561338b565b82810360208401526139e1818561338b565b95945050505050565b63ffffffff818116838216028082169190828114613a0a57613a0a6136b7565b505092915050565b63ffffffff818116838216019080821115613a2f57613a2f6136b7565b5092915050565b634e487b7160e01b600052601260045260246000fd5b600082613a5b57613a5b613a36565b500490565b81810381811115610bda57610bda6136b7565b600082613a8257613a82613a36565b500690565b600081613a9657613a966136b7565b506000190190565b6001600160a01b0386811682528516602082015260a060408201819052600090613aca9083018661338b565b8281036060840152613adc818661338b565b90508281036080840152613af08185612fc5565b98975050505050505050565b600060208284031215613b0e57600080fd5b815161157181612f0e565b600060033d1115613b325760046000803e5060005160e01c5b90565b600060443d1015613b435790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715613b7257505050505090565b8285019150815181811115613b8a5750505050505090565b843d8701016020828501011115613ba45750505050505090565b613bb360208286010187613060565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b600060208284031215613c1857600080fd5b815161157181613509565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612e8990830184612fc5565b60008251613c6f818460208701612fa1565b919091019291505056fea264697066735822122040fa6c1f2b273e9906fd9e6ce187437a8d309652d88e637668f0ee374bf6fff964736f6c6343000811003300000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000440000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000006c3000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e699098af398995b04c28e9951adb9721ef74c74f93e6a478f39e7e0777be13527e7ef0000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000001adb0000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f7068746f2e6d7970696e6174612e636c6f75642f697066732f516d5468524c7857543145773774684674776d6153315658444b664b6a38344c5179744c41376b317243486345512f7b69647d2e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000004f68747470733a2f2f7068746f2e6d7970696e6174612e636c6f75642f697066732f516d54476e6763667448386f7854733567386d4776564e414b7639346362594c593670573944775768517a374b730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000da4adb0fc335a203792d645ceb138a9510eec7b8000000000000000000000000e64581f067cfdce58657e3c0f58175e638c30f2b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000003cf0000000000000000000000000000000000000000000000000000000000000019

Deployed Bytecode

0x6080604052600436106103385760003560e01c806381d30c83116101ab578063bb8a19e0116100f7578063d79779b211610095578063e985e9c51161006f578063e985e9c514610aa8578063eee64f4a14610af1578063f242432a14610b07578063f2fde38b14610b2757600080fd5b8063d79779b214610a3d578063e33b7de314610a73578063e7fa67e514610a8857600080fd5b8063c7f04e65116100d1578063c7f04e65146109be578063cb14eb87146109d1578063ce7c2ac2146109e7578063d3d3819314610a1d57600080fd5b8063bb8a19e01461093b578063bd85b03914610971578063c45ac0501461099e57600080fd5b806392f6c43911610164578063a3f8eace1161013e578063a3f8eace146108b0578063b0fb162f146108d0578063b6c7ecf514610905578063ba00f6c51461091b57600080fd5b806392f6c4391461083a5780639852595c1461085a578063a22cb4651461089057600080fd5b806381d30c831461078d578063852c211d146107ad5780638b83209b146107ca5780638d859f3e146107ea5780638da5cb5b146108005780638f2dbbb71461082557600080fd5b80633b2bcbf11161028557806358ff423d11610223578063603f4d52116101fd578063603f4d521461072557806361728f391461074c57806361bc221a14610762578063715018a61461077857600080fd5b806358ff423d146106ab5780635a67de07146106e55780635e4b62ab1461070557600080fd5b80634ba976b11161025f5780634ba976b1146106025780634e1273f41461062f5780634f558e791461065c57806355f804b31461068b57600080fd5b80633b2bcbf114610564578063406072a91461059c57806348b75044146105e257600080fd5b806309c1ba2e116102f257806319165587116102cc57806319165587146104ef5780631fe543e31461050f5780632eb2c2d61461052f5780633a98ef391461054f57600080fd5b806309c1ba2e146104705780630e89341c146104af57806314b1dd1b146104cf57600080fd5b8062fdd58e1461038657806301ffc9a7146103b957806302add615146103e9578063047fc9aa1461040b57806305f937991461042157806306fdde031461044e57600080fd5b36610381577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561039257600080fd5b506103a66103a1366004612ee2565b610b47565b6040519081526020015b60405180910390f35b3480156103c557600080fd5b506103d96103d4366004612f24565b610be0565b60405190151581526020016103b0565b3480156103f557600080fd5b50610409610404366004612f55565b610c30565b005b34801561041757600080fd5b506103a6600b5481565b34801561042d57600080fd5b506103a661043c366004612f88565b60166020526000908152604090205481565b34801561045a57600080fd5b50610463610c69565b6040516103b09190612ff1565b34801561047c57600080fd5b50600c5461049790600160a01b90046001600160401b031681565b6040516001600160401b0390911681526020016103b0565b3480156104bb57600080fd5b506104636104ca366004612f88565b610cf7565b3480156104db57600080fd5b506104096104ea366004613004565b610d8b565b3480156104fb57600080fd5b5061040961050a36600461302d565b610dbe565b34801561051b57600080fd5b5061040961052a366004613120565b610eb7565b34801561053b57600080fd5b5061040961054a3660046131e3565b610f3b565b34801561055b57600080fd5b50600f546103a6565b34801561057057600080fd5b50600c54610584906001600160a01b031681565b6040516001600160a01b0390911681526020016103b0565b3480156105a857600080fd5b506103a66105b7366004613290565b6001600160a01b03918216600090815260156020908152604080832093909416825291909152205490565b3480156105ee57600080fd5b506104096105fd366004613290565b610f87565b34801561060e57600080fd5b506103a661061d36600461302d565b60096020526000908152604090205481565b34801561063b57600080fd5b5061064f61064a3660046132c9565b6110aa565b6040516103b091906133c6565b34801561066857600080fd5b506103d9610677366004612f88565b600090815260036020526040902054151590565b34801561069757600080fd5b506104096106a63660046133d9565b6111d3565b3480156106b757600080fd5b50600e546106d090640100000000900463ffffffff1681565b60405163ffffffff90911681526020016103b0565b3480156106f157600080fd5b50610409610700366004613421565b6111e4565b34801561071157600080fd5b50610409610720366004613442565b6111f5565b34801561073157600080fd5b5060075461073f9060ff1681565b6040516103b091906134e1565b34801561075857600080fd5b506103a6600d5481565b34801561076e57600080fd5b506103a6600a5481565b34801561078457600080fd5b506104096114b3565b34801561079957600080fd5b506104096107a83660046133d9565b6114c7565b3480156107b957600080fd5b50600e546106d09063ffffffff1681565b3480156107d657600080fd5b506105846107e5366004612f88565b6114db565b3480156107f657600080fd5b506103a660045481565b34801561080c57600080fd5b50600e54600160501b90046001600160a01b0316610584565b34801561083157600080fd5b5061046361150b565b34801561084657600080fd5b50610409610855366004612f88565b611518565b34801561086657600080fd5b506103a661087536600461302d565b6001600160a01b031660009081526012602052604090205490565b34801561089c57600080fd5b506104096108ab366004613517565b611525565b3480156108bc57600080fd5b506103a66108cb36600461302d565b611530565b3480156108dc57600080fd5b50600e546108f290600160401b900461ffff1681565b60405161ffff90911681526020016103b0565b34801561091157600080fd5b506103a660175481565b34801561092757600080fd5b50610409610936366004613545565b611578565b34801561094757600080fd5b50610584610956366004612f88565b6008602052600090815260409020546001600160a01b031681565b34801561097d57600080fd5b506103a661098c366004612f88565b60009081526003602052604090205490565b3480156109aa57600080fd5b506103a66109b9366004613290565b611589565b6104096109cc366004613569565b611654565b3480156109dd57600080fd5b506103a660065481565b3480156109f357600080fd5b506103a6610a0236600461302d565b6001600160a01b031660009081526011602052604090205490565b348015610a2957600080fd5b506103a6610a3836600461302d565b611885565b348015610a4957600080fd5b506103a6610a5836600461302d565b6001600160a01b031660009081526014602052604090205490565b348015610a7f57600080fd5b506010546103a6565b348015610a9457600080fd5b50610409610aa3366004612f88565b6118b5565b348015610ab457600080fd5b506103d9610ac3366004613290565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b348015610afd57600080fd5b506103a660055481565b348015610b1357600080fd5b50610409610b22366004613584565b6118c6565b348015610b3357600080fd5b50610409610b4236600461302d565b61190b565b60006001600160a01b038316610bb75760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636cdb3d1360e11b1480610c1157506001600160e01b031982166303a24d0760e21b145b80610bda57506301ffc9a760e01b6001600160e01b0319831614610bda565b610c38611998565b600e805463ffffffff9283166401000000000267ffffffffffffffff199091169390921692909217179055565b5050565b60188054610c76906135ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca2906135ec565b8015610cef5780601f10610cc457610100808354040283529160200191610cef565b820191906000526020600020905b815481529060010190602001808311610cd257829003601f168201915b505050505081565b606060028054610d06906135ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610d32906135ec565b8015610d7f5780601f10610d5457610100808354040283529160200191610d7f565b820191906000526020600020905b815481529060010190602001808311610d6257829003601f168201915b50505050509050919050565b610d93611998565b600c805467ffffffffffffffff60a01b1916600160a01b6001600160401b0384160217905550565b50565b6001600160a01b038116600090815260116020526040902054610df35760405162461bcd60e51b8152600401610bae90613626565b6000610dfe82611530565b905080600003610e205760405162461bcd60e51b8152600401610bae9061366c565b6001600160a01b03821660009081526012602052604081208054839290610e489084906136cd565b925050819055508060106000828254610e6191906136cd565b90915550610e71905082826119fa565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b336001600160a01b037f000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e699091614610f315760405163073e64fd60e21b81523360048201526001600160a01b037f000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e69909166024820152604401610bae565b610c658282611b18565b6001600160a01b038516331480610f575750610f578533610ac3565b610f735760405162461bcd60e51b8152600401610bae906136e0565b610f808585858585611b99565b5050505050565b6001600160a01b038116600090815260116020526040902054610fbc5760405162461bcd60e51b8152600401610bae90613626565b6000610fc88383611589565b905080600003610fea5760405162461bcd60e51b8152600401610bae9061366c565b6001600160a01b038084166000908152601560209081526040808320938616835292905290812080548392906110219084906136cd565b90915550506001600160a01b0383166000908152601460205260408120805483929061104e9084906136cd565b9091555061105f9050838383611d7c565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b6060815183511461110f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610bae565b600083516001600160401b0381111561112a5761112a61304a565b604051908082528060200260200182016040528015611153578160200160208202803683370190505b50905060005b84518110156111cb5761119e8582815181106111775761117761372f565b60200260200101518583815181106111915761119161372f565b6020026020010151610b47565b8282815181106111b0576111b061372f565b60209081029190910101526111c481613745565b9050611159565b509392505050565b6111db611998565b610dbb81611dce565b6111ec611998565b610dbb81611dda565b818184611274838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017546040516bffffffffffffffffffffffff193360601b16602082015260348101879052909250605401905060405160208183030381529060405280519060200120611e01565b6112db5760405162461bcd60e51b815260206004820152603260248201527f7768656e416464726573734f6e57686974656c6973743a20696e76616c69642060448201527136b2b935b632903b32b93334b1b0ba34b7b760711b6064820152608401610bae565b600160075460ff1660028111156112f4576112f46134cb565b146113415760405162461bcd60e51b815260206004820181905260248201527f636c61696d3a2073616c65207374617465206d757374206265206163746976656044820152606401610bae565b60008763ffffffff16116113675760405162461bcd60e51b8152600401610bae9061375e565b600554600a5461137d9063ffffffff8a166136cd565b111561139b5760405162461bcd60e51b8152600401610bae906137a7565b3360009081526009602052604090205486906113bd9063ffffffff8a166136cd565b11156113db5760405162461bcd60e51b8152600401610bae906137a7565b6006548763ffffffff1611156114595760405162461bcd60e51b815260206004820152603960248201527f636c61696d3a2063616c6c65722063616e6e6f74206d696e74206d6f7265207460448201527f68616e207878787820706572207472616e73616374696f6e73000000000000006064820152608401610bae565b600061146488611e17565b600090815260086020908152604080832080546001600160a01b03191633908117909155600a805463ffffffff909d169c8d019055835260099091529020805490980190975550505050505050565b6114bb611998565b6114c56000611f09565b565b6114cf611998565b6019610c65828261383e565b6000601382815481106114f0576114f061372f565b6000918252602090912001546001600160a01b031692915050565b60198054610c76906135ec565b611520611998565b601755565b610c65338383611f7c565b60008061153c60105490565b61154690476136cd565b9050611571838261156c866001600160a01b031660009081526012602052604090205490565b61205c565b9392505050565b611580611998565b610dbb8161209a565b6001600160a01b03821660009081526014602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa1580156115e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160c91906138fd565b61161691906136cd565b6001600160a01b0380861660009081526015602090815260408083209388168352929052205490915061164c908490839061205c565b949350505050565b600260075460ff16600281111561166d5761166d6134cb565b146116ba5760405162461bcd60e51b815260206004820152601f60248201527f6d696e743a2073616c65207374617465206d75737420626520616374697665006044820152606401610bae565b60008163ffffffff16116116e05760405162461bcd60e51b8152600401610bae9061375e565b6004546116f39063ffffffff8316613916565b34101561174c5760405162461bcd60e51b815260206004820152602160248201527f6d696e743a2063616c6c65722073656e7420696e636f72726563742076616c756044820152606560f81b6064820152608401610bae565b600554600a546117629063ffffffff84166136cd565b11156117c95760405162461bcd60e51b815260206004820152603060248201527f6d696e743a20696e73756666696369656e7420737570706c792072656d61696e60448201526f696e6720666f7220707572636861736560801b6064820152608401610bae565b6006548163ffffffff1611156118475760405162461bcd60e51b815260206004820152603860248201527f6d696e743a2063616c6c65722063616e6e6f74206d696e74206d6f726520746860448201527f616e207878787820706572207472616e73616374696f6e7300000000000000006064820152608401610bae565b600061185282611e17565b600090815260086020526040902080546001600160a01b0319163317905550600a805463ffffffff909216919091019055565b60006001815b60678210156115715761189e8483610b47565b6118a890826136cd565b905081600101915061188b565b6118bd611998565b610dbb81600d55565b6001600160a01b0385163314806118e257506118e28533610ac3565b6118fe5760405162461bcd60e51b8152600401610bae906136e0565b610f80858585858561214a565b611913611998565b6001600160a01b0381166119785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bae565b610dbb81611f09565b505050505050565b6001600160a01b03163b151590565b600e546001600160a01b03600160501b9091041633146114c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bae565b80471015611a4a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bae565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a97576040519150601f19603f3d011682016040523d82523d6000602084013e611a9c565b606091505b5050905080611b135760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bae565b505050565b6000611b2382612282565b905060005b8251811015611b93576000848152600860205260409020548251611b81916001600160a01b031690849084908110611b6257611b6261372f565b60200260200101516001604051806020016040528060008152506123d1565b600b8054600190810190915501611b28565b50505050565b8151835114611bfb5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610bae565b6001600160a01b038416611c215760405162461bcd60e51b8152600401610bae9061392d565b33611c308187878787876124f4565b60005b8451811015611d16576000858281518110611c5057611c5061372f565b602002602001015190506000858381518110611c6e57611c6e61372f565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611cbe5760405162461bcd60e51b8152600401610bae90613972565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611cfb9084906136cd565b9250508190555050505080611d0f90613745565b9050611c33565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611d669291906139bc565b60405180910390a461198181878787878761266d565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611b139084906127c8565b6002610c65828261383e565b6007805482919060ff19166001836002811115611df957611df96134cb565b021790555050565b600082611e0e858461289a565b14949350505050565b600c54600d54600e546000926001600160a01b03811692635d3b1d309290916001600160401b03600160a01b909104169061ffff600160401b8204169063ffffffff6401000000008204811691611e70918a91166139ea565b611e7a9190613a12565b6040516001600160e01b031960e087901b16815260048101949094526001600160401b03909216602484015261ffff16604483015263ffffffff90811660648301528516608482015260a4016020604051808303816000875af1158015611ee5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bda91906138fd565b600e80546001600160a01b03838116600160501b8181027fffff0000000000000000000000000000000000000000ffffffffffffffffffff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611fef5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610bae565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600f546001600160a01b038416600090815260116020526040812054909183916120869086613916565b6120909190613a4c565b61164c9190613a60565b60038161ffff1610156121235760405162461bcd60e51b8152602060048201526044602482018190527f75706461746552657175657374436f6e6669726d6174696f6e733a2072657175908201527f65737420636f6e6669726d6174696f6e73206d757374206265206174206c65616064820152637374203360e01b608482015260a401610bae565b600e805461ffff909216600160401b0269ffff000000000000000019909216919091179055565b6001600160a01b0384166121705760405162461bcd60e51b8152600401610bae9061392d565b33600061217c856128df565b90506000612189856128df565b90506121998389898585896124f4565b6000868152602081815260408083206001600160a01b038c168452909152902054858110156121da5760405162461bcd60e51b8152600401610bae90613972565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906122179084906136cd565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612277848a8a8a8a8a61292a565b505050505050505050565b60606000600b546005546122969190613a60565b83519091506000816001600160401b038111156122b5576122b561304a565b6040519080825280602002602001820160405280156122de578160200160208202803683370190505b50905060005b828110156123c8576000848783815181106123015761230161372f565b60200260200101516123139190613a73565b600081815260166020526040812054919250901561233f57600082815260166020526040902054612341565b815b6000878152601660205260409020549091501561237c576016600061236588613a87565b975087815260200190815260200160002054612389565b61238586613a87565b9550855b6000838152601660205260409020556123a1816129e5565b8484815181106123b3576123b361372f565b602090810291909101015250506001016122e4565b50949350505050565b6001600160a01b0384166124315760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bae565b33600061243d856128df565b9050600061244a856128df565b905061245b836000898585896124f4565b6000868152602081815260408083206001600160a01b038b1684529091528120805487929061248b9084906136cd565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46124eb8360008989898961292a565b50505050505050565b6001600160a01b03851661257b5760005b8351811015612579578281815181106125205761252061372f565b60200260200101516003600086848151811061253e5761253e61372f565b60200260200101518152602001908152602001600020600082825461256391906136cd565b90915550612572905081613745565b9050612505565b505b6001600160a01b0384166119815760005b83518110156124eb5760008482815181106125a9576125a961372f565b6020026020010151905060008483815181106125c7576125c761372f565b602002602001015190506000600360008481526020019081526020016000205490508181101561264a5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b6064820152608401610bae565b6000928352600360205260409092209103905561266681613745565b905061258c565b6001600160a01b0384163b156119815760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906126b19089908990889088908890600401613a9e565b6020604051808303816000875af19250505080156126ec575060408051601f3d908101601f191682019092526126e991810190613afc565b60015b612798576126f8613b19565b806308c379a003612731575061270c613b35565b806127175750612733565b8060405162461bcd60e51b8152600401610bae9190612ff1565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610bae565b6001600160e01b0319811663bc197c8160e01b146124eb5760405162461bcd60e51b8152600401610bae90613bbe565b600061281d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d289092919063ffffffff16565b805190915015611b13578080602001905181019061283b9190613c06565b611b135760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bae565b600081815b84518110156111cb576128cb828683815181106128be576128be61372f565b6020026020010151612d37565b9150806128d781613745565b91505061289f565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106129195761291961372f565b602090810291909101015292915050565b6001600160a01b0384163b156119815760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061296e9089908990889088908890600401613c23565b6020604051808303816000875af19250505080156129a9575060408051601f3d908101601f191682019092526129a691810190613afc565b60015b6129b5576126f8613b19565b6001600160e01b0319811663f23a6e6160e01b146124eb5760405162461bcd60e51b8152600401610bae90613bbe565b6000610285821115612b8557610465821115612ab757610590821115612a55576105f5821115612a3b57610627821115612a3357610659821115612a2b57506066919050565b506065919050565b506064919050565b6105c3821115612a4d57506063919050565b506062919050565b6104fb821115612a8b5761052d821115612a835761055f821115612a7b57506061919050565b506060919050565b50605f919050565b610497821115612aaf576104c9821115612aa75750605e919050565b50605d919050565b50605c919050565b610357821115612b23576103cf821115612af757610401821115612aef57610433821115612ae75750605b919050565b50605a919050565b506059919050565b61037a821115612b1b5761039d821115612b1357506058919050565b506057919050565b506056919050565b6102ee821115612b5957610311821115612b5157610334821115612b4957506055919050565b506054919050565b506053919050565b6102a8821115612b7d576102cb821115612b7557506052919050565b506051919050565b506050919050565b610113821115612c5d576101b3821115612bfb5761021c821115612bcf5761023f821115612bc757610262821115612bbf5750604f919050565b50604e919050565b50604d919050565b6101d6821115612bf3576101f9821115612beb5750604c919050565b50604b919050565b50604a919050565b61015e821115612c3157610177821115612c2957610190821115612c2157506049919050565b506048919050565b506047919050565b61012c821115612c5557610145821115612c4d57506046919050565b506045919050565b506044919050565b6082821115612cc35760c8821115612c995760e1821115612c915760fa821115612c8957506043919050565b506042919050565b506041919050565b6096821115612cbb5760af821115612cb357506040919050565b50603f919050565b50603e919050565b6046821115612cf657605a821115612cee57606e821115612ce65750603d919050565b50603c919050565b50603b919050565b602d821115612d18576032821115612d105750603a919050565b506039919050565b610bda82600b6136cd565b919050565b606061164c8484600085612d63565b6000818310612d53576000828152602084905260409020611571565b5060009182526020526040902090565b606082471015612dc45760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610bae565b6001600160a01b0385163b612e1b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bae565b600080866001600160a01b03168587604051612e379190613c5d565b60006040518083038185875af1925050503d8060008114612e74576040519150601f19603f3d011682016040523d82523d6000602084013e612e79565b606091505b5091509150612e89828286612e94565b979650505050505050565b60608315612ea3575081611571565b825115612eb35782518084602001fd5b8160405162461bcd60e51b8152600401610bae9190612ff1565b6001600160a01b0381168114610dbb57600080fd5b60008060408385031215612ef557600080fd5b8235612f0081612ecd565b946020939093013593505050565b6001600160e01b031981168114610dbb57600080fd5b600060208284031215612f3657600080fd5b813561157181612f0e565b803563ffffffff81168114612d2357600080fd5b60008060408385031215612f6857600080fd5b612f7183612f41565b9150612f7f60208401612f41565b90509250929050565b600060208284031215612f9a57600080fd5b5035919050565b60005b83811015612fbc578181015183820152602001612fa4565b50506000910152565b60008151808452612fdd816020860160208601612fa1565b601f01601f19169290920160200192915050565b6020815260006115716020830184612fc5565b60006020828403121561301657600080fd5b81356001600160401b038116811461157157600080fd5b60006020828403121561303f57600080fd5b813561157181612ecd565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b03811182821017156130855761308561304a565b6040525050565b60006001600160401b038211156130a5576130a561304a565b5060051b60200190565b600082601f8301126130c057600080fd5b813560206130cd8261308c565b6040516130da8282613060565b83815260059390931b85018201928281019150868411156130fa57600080fd5b8286015b8481101561311557803583529183019183016130fe565b509695505050505050565b6000806040838503121561313357600080fd5b8235915060208301356001600160401b0381111561315057600080fd5b61315c858286016130af565b9150509250929050565b60006001600160401b0383111561317f5761317f61304a565b604051613196601f8501601f191660200182613060565b8091508381528484840111156131ab57600080fd5b83836020830137600060208583010152509392505050565b600082601f8301126131d457600080fd5b61157183833560208501613166565b600080600080600060a086880312156131fb57600080fd5b853561320681612ecd565b9450602086013561321681612ecd565b935060408601356001600160401b038082111561323257600080fd5b61323e89838a016130af565b9450606088013591508082111561325457600080fd5b61326089838a016130af565b9350608088013591508082111561327657600080fd5b50613283888289016131c3565b9150509295509295909350565b600080604083850312156132a357600080fd5b82356132ae81612ecd565b915060208301356132be81612ecd565b809150509250929050565b600080604083850312156132dc57600080fd5b82356001600160401b03808211156132f357600080fd5b818501915085601f83011261330757600080fd5b813560206133148261308c565b6040516133218282613060565b83815260059390931b850182019282810191508984111561334157600080fd5b948201945b8386101561336857853561335981612ecd565b82529482019490820190613346565b9650508601359250508082111561337e57600080fd5b5061315c858286016130af565b600081518084526020808501945080840160005b838110156133bb5781518752958201959082019060010161339f565b509495945050505050565b602081526000611571602083018461338b565b6000602082840312156133eb57600080fd5b81356001600160401b0381111561340157600080fd5b8201601f8101841361341257600080fd5b61164c84823560208401613166565b60006020828403121561343357600080fd5b81356003811061157157600080fd5b6000806000806060858703121561345857600080fd5b61346185612f41565b93506020850135925060408501356001600160401b038082111561348457600080fd5b818701915087601f83011261349857600080fd5b8135818111156134a757600080fd5b8860208260051b85010111156134bc57600080fd5b95989497505060200194505050565b634e487b7160e01b600052602160045260246000fd5b602081016003831061350357634e487b7160e01b600052602160045260246000fd5b91905290565b8015158114610dbb57600080fd5b6000806040838503121561352a57600080fd5b823561353581612ecd565b915060208301356132be81613509565b60006020828403121561355757600080fd5b813561ffff8116811461157157600080fd5b60006020828403121561357b57600080fd5b61157182612f41565b600080600080600060a0868803121561359c57600080fd5b85356135a781612ecd565b945060208601356135b781612ecd565b9350604086013592506060860135915060808601356001600160401b038111156135e057600080fd5b613283888289016131c3565b600181811c9082168061360057607f821691505b60208210810361362057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610bda57610bda6136b7565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060018201613757576137576136b7565b5060010190565b60208082526029908201527f636c61696d3a204d75737420696e7075742061206e756d62657220677265617460408201526806572207468616e20360bc1b606082015260800190565b60208082526031908201527f636c61696d3a20696e73756666696369656e7420737570706c792072656d61696040820152706e696e6720666f7220707572636861736560781b606082015260800190565b601f821115611b1357600081815260208120601f850160051c8101602086101561381f5750805b601f850160051c820191505b818110156119815782815560010161382b565b81516001600160401b038111156138575761385761304a565b61386b8161386584546135ec565b846137f8565b602080601f8311600181146138a057600084156138885750858301515b600019600386901b1c1916600185901b178555611981565b600085815260208120601f198616915b828110156138cf578886015182559484019460019091019084016138b0565b50858210156138ed5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561390f57600080fd5b5051919050565b8082028115828204841417610bda57610bda6136b7565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006139cf604083018561338b565b82810360208401526139e1818561338b565b95945050505050565b63ffffffff818116838216028082169190828114613a0a57613a0a6136b7565b505092915050565b63ffffffff818116838216019080821115613a2f57613a2f6136b7565b5092915050565b634e487b7160e01b600052601260045260246000fd5b600082613a5b57613a5b613a36565b500490565b81810381811115610bda57610bda6136b7565b600082613a8257613a82613a36565b500690565b600081613a9657613a966136b7565b506000190190565b6001600160a01b0386811682528516602082015260a060408201819052600090613aca9083018661338b565b8281036060840152613adc818661338b565b90508281036080840152613af08185612fc5565b98975050505050505050565b600060208284031215613b0e57600080fd5b815161157181612f0e565b600060033d1115613b325760046000803e5060005160e01c5b90565b600060443d1015613b435790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715613b7257505050505090565b8285019150815181811115613b8a5750505050505090565b843d8701016020828501011115613ba45750505050505090565b613bb360208286010187613060565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b600060208284031215613c1857600080fd5b815161157181613509565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612e8990830184612fc5565b60008251613c6f818460208701612fa1565b919091019291505056fea264697066735822122040fa6c1f2b273e9906fd9e6ce187437a8d309652d88e637668f0ee374bf6fff964736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000440000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000006c3000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e699098af398995b04c28e9951adb9721ef74c74f93e6a478f39e7e0777be13527e7ef0000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000001adb0000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f7068746f2e6d7970696e6174612e636c6f75642f697066732f516d5468524c7857543145773774684674776d6153315658444b664b6a38344c5179744c41376b317243486345512f7b69647d2e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000004f68747470733a2f2f7068746f2e6d7970696e6174612e636c6f75642f697066732f516d54476e6763667448386f7854733567386d4776564e414b7639346362594c593670573944775768517a374b730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000da4adb0fc335a203792d645ceb138a9510eec7b8000000000000000000000000e64581f067cfdce58657e3c0f58175e638c30f2b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000003cf0000000000000000000000000000000000000000000000000000000000000019

-----Decoded View---------------
Arg [0] : _URI (string): https://phto.mypinata.cloud/ipfs/QmThRLxWT1Ew7thFtwmaS1VXDKfKj84LQytLA7k1rCHcEQ/{id}.json
Arg [1] : _coaDocuments (string): https://phto.mypinata.cloud/ipfs/QmTGngcftH8oxTs5g8mGvVNAKv94cbYLY6pW9DwWhQz7Ks
Arg [2] : reserveTokenIds (uint256[]): 1,2,3,4,5,6,7,8,9,10
Arg [3] : reserveTokenAmounts (uint256[]): 1,1,1,1,1,10,10,10,10,10
Arg [4] : _saleManagerConstructorArgs (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [5] : _VRFManagerConstructorArgs (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [6] : _payees (address[]): 0xDA4Adb0fC335a203792d645CEb138a9510eeC7B8,0xe64581F067Cfdce58657E3c0F58175e638C30f2B
Arg [7] : _shares (uint256[]): 975,25

-----Encoded View---------------
51 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000260
Arg [2] : 00000000000000000000000000000000000000000000000000000000000002e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000440
Arg [4] : 000000000000000000000000000000000000000000000000011c37937e080000
Arg [5] : 00000000000000000000000000000000000000000000000000000000000006c3
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [7] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [8] : 000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e69909
Arg [9] : 8af398995b04c28e9951adb9721ef74c74f93e6a478f39e7e0777be13527e7ef
Arg [10] : 0000000000000000000000000000000000000000000000000000000000013880
Arg [11] : 000000000000000000000000000000000000000000000000000000000001adb0
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [13] : 00000000000000000000000000000000000000000000000000000000000005a0
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000600
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [16] : 68747470733a2f2f7068746f2e6d7970696e6174612e636c6f75642f69706673
Arg [17] : 2f516d5468524c7857543145773774684674776d6153315658444b664b6a3834
Arg [18] : 4c5179744c41376b317243486345512f7b69647d2e6a736f6e00000000000000
Arg [19] : 000000000000000000000000000000000000000000000000000000000000004f
Arg [20] : 68747470733a2f2f7068746f2e6d7970696e6174612e636c6f75642f69706673
Arg [21] : 2f516d54476e6763667448386f7854733567386d4776564e414b763934636259
Arg [22] : 4c593670573944775768517a374b730000000000000000000000000000000000
Arg [23] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [25] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [28] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [29] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [30] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [31] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [32] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [33] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [34] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [35] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [36] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [37] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [38] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [39] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [40] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [41] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [42] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [43] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [44] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [45] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [46] : 000000000000000000000000da4adb0fc335a203792d645ceb138a9510eec7b8
Arg [47] : 000000000000000000000000e64581f067cfdce58657e3c0f58175e638c30f2b
Arg [48] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [49] : 00000000000000000000000000000000000000000000000000000000000003cf
Arg [50] : 0000000000000000000000000000000000000000000000000000000000000019


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.