ETH Price: $3,311.27 (+1.21%)
Gas: 4 Gwei

Token

ShrempemonPacks (SPK)
 

Overview

Max Total Supply

0 SPK

Holders

114

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dahamburglar.eth
0x4b8c637eb30bb50200762c7d4a95090a60708ce0
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:
Packs

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 20 : Packs.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./RevokableDefaultOperatorFilterer.sol";
import "./UpdatableOperatorFilterer.sol";

interface ICARDS {
    function mint(
        address _to, uint256 _numberOfTokens
    ) external;
}

contract Packs is
    ERC1155,
    Ownable,
    ERC2981,
    RevokableDefaultOperatorFilterer,
    ERC1155Supply
{
    using Strings for uint256;
    ICARDS public cardContract;

    uint256 public tradingBlockedUntil = 42;
    string public constant name = "ShrempemonPacks";
    string public constant symbol = "SPK";
    string private baseURI =
        "ipfs://QmTrxzoNKL9t1sJnLmpar65whVCxsapWRoL6Foi3AcHAxn/";

    uint256 public saleState = 0; //0 - Mint paused / 1 - Presale Mint only / 2 - Presale and public sale both open

    uint256 public cost = 0.0069 ether;

    address private signerAddress = 0xA4de23640d29DF1671f2B245676035e3E07909A3;

    mapping(uint256 => uint256) public maxTokenSupply;
    mapping(uint256 => bool) public tokensEnabled;
    mapping(uint256 => uint256) public currentSupply;

    mapping(uint256 => bytes32) internal processedNonces;
    mapping(uint256 => bytes32) internal processedNoncesBurn;

    struct EIP712Domain {
        string name;
        string version;
        uint256 chainId;
        address verifyingContract;
    }

    struct WhitelistMintParams {
        address addy; // Address authorized to mint
        uint256 valid_until_timestamp; // Unix timestamp of the master sig
        uint256[] ids; // Token ID authorized for mint
        uint256[] qtys; // Amount authorized to mint
        uint256[] paid_ids; // Token ID authorized for mint
        uint256[] paid_qtys; // Amount authorized to mint
        uint256 sig_nonce; // Generated by master when signing - If different than 0, track and enforce unique signatures
    }

    struct BurnMintParams {
        address addy; // Address authorized to mint
        uint256 valid_until_timestamp; // Unix timestamp of the master sig
        uint256[] ids;  
        uint256[] amounts;
        uint256 nb_to_mint;
        uint256 nonce;
    }
    bytes32 constant EIP712DOMAIN_TYPEHASH =
        keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
    bytes32 constant WhitelistMintParams_TYPEHASH =
        keccak256(
            "WhitelistMintParams(address addy,uint256 valid_until_timestamp,uint256[] ids,uint256[] qtys,uint256[] paid_ids,uint256[] paid_qtys,uint256 sig_nonce)"
        );
    bytes32 constant BurnMintParams_TYPEHASH =
        keccak256(
            "BurnMintParams(address addy,uint256 valid_until_timestamp,uint256[] ids,uint256[] amounts,uint256 nb_to_mint,uint256 nonce)"
        );
    bytes32 DOMAIN_SEPARATOR;

    constructor() ERC1155("") {
        _setDefaultRoyalty(msg.sender, 500);
        DOMAIN_SEPARATOR = hash(
            EIP712Domain({
                name: "ShrempPacks",
                version: "1",
                //chainId: block.chainId,
                chainId: 1,
                // verifyingContract: this
                verifyingContract: address(this)
            })
        );
        tokensEnabled[1] = true;
        maxTokenSupply[1] = 7713;
        tokensEnabled[2] = true;
        maxTokenSupply[2] = 7713;
        tokensEnabled[3] = true;
        maxTokenSupply[3] = 7714;
    }

    function owner()
        public
        view
        virtual
        override(Ownable, UpdatableOperatorFilterer)
        returns (address)
    {
        return Ownable.owner();
    }

    function hash(BurnMintParams calldata m_a) internal pure returns (bytes32) {
        return
            keccak256(
                abi.encode(
                    BurnMintParams_TYPEHASH,
                    m_a.addy,
                    m_a.valid_until_timestamp,
                    keccak256(abi.encodePacked(m_a.ids)),
                    keccak256(abi.encodePacked(m_a.amounts)),
                    m_a.nb_to_mint,
                    m_a.nonce
                )
            );
    }

    // Function to set the duration for which trading should be blocked
    function setTradingBlockDuration(uint256 _duration) external onlyOwner {
        require(tradingBlockedUntil==42,"Already blocked once!");
        tradingBlockedUntil = block.timestamp + _duration;
    }
    
    // Function to unblock trading before the block duration is over
    function unblockTrading() external onlyOwner {
        tradingBlockedUntil = 0;
    }
    
    function hash(
        WhitelistMintParams calldata m_a
    ) internal pure returns (bytes32) {
        return
            keccak256(
                abi.encode(
                    WhitelistMintParams_TYPEHASH,
                    m_a.addy,
                    m_a.valid_until_timestamp,
                    keccak256(abi.encodePacked(m_a.ids)),
                    keccak256(abi.encodePacked(m_a.qtys)),
                    keccak256(abi.encodePacked(m_a.paid_ids)),
                    keccak256(abi.encodePacked(m_a.paid_qtys)),
                    m_a.sig_nonce
                )
            );
    }

    function hash(
        EIP712Domain memory eip712Domain
    ) internal pure returns (bytes32) {
        return
            keccak256(
                abi.encode(
                    EIP712DOMAIN_TYPEHASH,
                    keccak256(bytes(eip712Domain.name)),
                    keccak256(bytes(eip712Domain.version)),
                    eip712Domain.chainId,
                    eip712Domain.verifyingContract
                )
            );
    }

    function get_signer_wl(
        WhitelistMintParams calldata m_a,
        bytes memory _master_signature
    ) public view returns (address) {
        bytes32 digest = keccak256(
            abi.encodePacked("\x19\x01", DOMAIN_SEPARATOR, hash(m_a))
        );
        (bytes32 r, bytes32 s, uint8 v) = split_signature(_master_signature);
        return ecrecover(digest, v, r, s);
    }

    function get_signer_burn(
        BurnMintParams calldata m_a,
        bytes memory _master_signature
    ) public view returns (address) {
        bytes32 digest = keccak256(
            abi.encodePacked("\x19\x01", DOMAIN_SEPARATOR, hash(m_a))
        );
        (bytes32 r, bytes32 s, uint8 v) = split_signature(_master_signature);
        return ecrecover(digest, v, r, s);
    }

    function split_signature(
        bytes memory sig
    ) public pure returns (bytes32 r, bytes32 s, uint8 v) {
        require(sig.length == 65, "invalid signature length");

        assembly {
            r := mload(add(sig, 32))
            s := mload(add(sig, 64))
            v := byte(0, mload(add(sig, 96)))
        }
    }

    function setBaseURI(string calldata _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setCardContractAddress(ICARDS _cardContract) external onlyOwner {
        cardContract = _cardContract;
    }

    function setSignerAddress(address _signerAddress) external onlyOwner {
        signerAddress = _signerAddress;
    }
    function _mintChecks(
        uint256 _id, uint256 _amount
    ) internal {
        require(tokensEnabled[_id], "Token id not enabled!");
        require(
            currentSupply[_id] + _amount <= maxTokenSupply[_id],
            "Max supply exceeded for pack!"
        );
        currentSupply[_id] += _amount;
    }

    function mint(uint256 _id, uint256 _amount) external payable {
        require(saleState >= 2, "public sale not active");
        _mintChecks(_id, _amount);
        require(msg.value >= cost * _amount, "Insufficient funds!");
        _mint(msg.sender, _id, _amount, "");
    }

    function whitelistMint(
        WhitelistMintParams calldata _params,
        bytes memory _signature
    ) external payable {
        require(saleState >= 1, "presale not active");
        require(
            get_signer_wl(_params, _signature) == signerAddress,
            "Invalid master sig!"
        );
        require(_params.addy == _msgSender(), "Not approved minter!");
        require(
            block.timestamp < _params.valid_until_timestamp,
            "Signature Expired!"
        );
        bytes32 msig = keccak256(_signature);
        require(
            processedNonces[_params.sig_nonce] != msig,
            "Sig already used!"
        );
        processedNonces[_params.sig_nonce] = msig;

        for (uint256 i = 0; i < _params.ids.length; i++) {
            require(tokensEnabled[_params.ids[i]], "Token id not enabled!");
            require(
                currentSupply[_params.ids[i]] + _params.qtys[i] <=
                    maxTokenSupply[_params.ids[i]],
                "Max supply exceeded for pack!"
            );
            currentSupply[_params.ids[i]] += _params.qtys[i];
        }
        if (_params.paid_ids.length == 1) {
            _mintChecks(_params.paid_ids[0], _params.paid_qtys[0]);
            require(msg.value >= cost * _params.paid_qtys[0], "Insufficient funds!");
            _mint(msg.sender, _params.paid_ids[0], _params.paid_qtys[0], "");            
        }     
        else if (_params.paid_ids.length > 1) {
            uint256 tamount = _mintBatchChecks(_params.paid_ids,_params.paid_qtys);
            require(msg.value >= cost * tamount, "Insufficient funds!");
            _mintBatch(msg.sender, _params.paid_ids, _params.paid_qtys, "");
        }  
        _mintBatch(msg.sender, _params.ids, _params.qtys, "");
    }

    function _mintBatchChecks(
        uint256[] calldata _ids,
        uint256[] calldata _amounts
    ) internal returns (uint256) {
        uint256 tamount;
        for (uint256 i = 0; i < _ids.length; i++) {
            require(tokensEnabled[_ids[i]], "Token id not enabled!");
            require(
                currentSupply[_ids[i]] + _amounts[i] <= maxTokenSupply[_ids[i]],
                "Max supply exceeded for pack!"
            );
            currentSupply[_ids[i]] += _amounts[i];
            tamount += _amounts[i];
        }
        return tamount;
    }

    function mintBatch(
        uint256[] calldata _ids,
        uint256[] calldata _amounts
    ) external payable {
        require(saleState >= 2, "public sale not active");
        uint256 tamount = _mintBatchChecks(_ids,_amounts);
        require(msg.value >= cost * tamount, "Insufficient funds!");
        _mintBatch(msg.sender, _ids, _amounts, "");
    }

    function ownerMint(
        address _receiver,
        uint256 _id,
        uint256 _amount
    ) external onlyOwner {
        require(tokensEnabled[_id], "Token id not enabled!");
        require(
            currentSupply[_id] + _amount <= maxTokenSupply[_id],
            "Max supply exceeded!"
        );
        currentSupply[_id] += _amount;
        _mint(_receiver, _id, _amount, "");
    }

    function getSignerAddress() external view returns (address) {
        return signerAddress;
    }

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal override(ERC1155, ERC1155Supply) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

    function setTokenEnabled(
        uint256 _tokenId,
        uint256 _maxSupply
    ) external onlyOwner {
        require(!tokensEnabled[_tokenId], "Token already enabled");
        tokensEnabled[_tokenId] = true;
        maxTokenSupply[_tokenId] = _maxSupply;
    }

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

    function setSaleState(uint256 _newSaleState) public onlyOwner {
        saleState = _newSaleState;
    }

    function withdraw() public onlyOwner {
        (bool success, ) = payable(owner()).call{value: address(this).balance}(
            ""
        );
        require(success);
    }

    function uri(uint256 id) public view override returns (string memory) {
        require(exists(id), "Token id does not exist!");

        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, id.toString(), ".json"))
                : "";
    }

    function burnToMint(
        BurnMintParams calldata params,
        bytes memory _signature
    ) external {
        require(
            get_signer_burn(params, _signature) == signerAddress,
            "Invalid master sig!"
        );
        require(params.addy == _msgSender(), "Not approved minter!");
        require(
            block.timestamp < params.valid_until_timestamp,
            "Signature Expired!"
        );
        bytes32 msig = keccak256(_signature);
        require(processedNoncesBurn[params.nonce] != msig, "Sig already used!");
        processedNoncesBurn[params.nonce] = msig;

        if (params.ids.length == 1) {
            _burn(msg.sender, params.ids[0], params.amounts[0]);
        } else {
            _burnBatch(msg.sender, params.ids, params.amounts);
        }

        cardContract.mint(msg.sender, params.nb_to_mint);
    }

    // Set royalties info.
    function setDefaultRoyalty(
        address receiver,
        uint96 feeNumerator
    ) public onlyOwner {
        _setDefaultRoyalty(receiver, feeNumerator);
    }

    function deleteDefaultRoyalty() public onlyOwner {
        _deleteDefaultRoyalty();
    }

    // OpenSea royalties.
    function setApprovalForAll(
        address operator,
        bool approved
    ) public override onlyAllowedOperatorApproval(operator) {
        require(block.timestamp >= tradingBlockedUntil, "Trading is blocked");
        super.setApprovalForAll(operator, approved);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        uint256 amount,
        bytes memory data
    ) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, amount, data);
    }

    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override onlyAllowedOperator(from) {
        super.safeBatchTransferFrom(from, to, ids, amounts, data);
    }

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

File 2 of 20 : UpdatableOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import "./IOperatorFilterRegistry.sol";

/**
 * @title  UpdatableOperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry. This contract allows the Owner to update the
 *         OperatorFilterRegistry address via updateOperatorFilterRegistryAddress, including to the zero address,
 *         which will bypass registry checks.
 *         Note that OpenSea will still disable creator fee enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract UpdatableOperatorFilterer {
    error OperatorNotAllowed(address operator);
    error OnlyOwner();

    IOperatorFilterRegistry public operatorFilterRegistry;

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

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

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

    /**
     * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
     *         address, checks will be bypassed. OnlyOwner.
     */
    function updateOperatorFilterRegistryAddress(
        address newRegistry
    ) public virtual {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
    }

    /**
     * @dev assume the contract has an owner, but leave specific Ownable implementation up to inheriting contract
     */
    function owner() public view virtual returns (address);

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

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

import "./RevokableOperatorFilterer.sol";

/**
 * @title  RevokableDefaultOperatorFilterer
 * @notice Inherits from RevokableOperatorFilterer and automatically subscribes to the default OpenSea subscription.
 *         Note that OpenSea will disable creator fee enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 */
abstract contract RevokableDefaultOperatorFilterer is
    RevokableOperatorFilterer
{
    address constant DEFAULT_SUBSCRIPTION =
        address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor()
        RevokableOperatorFilterer(
            0x000000000000AAeB6D7670E522A718067333cd4E,
            DEFAULT_SUBSCRIPTION,
            true
        )
    {}
}

File 4 of 20 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 5 of 20 : 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 6 of 20 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 7 of 20 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

File 8 of 20 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 or 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 or 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 9 of 20 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

File 10 of 20 : RevokableOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import "./UpdatableOperatorFilterer.sol";
import "./IOperatorFilterRegistry.sol";

/**
 * @title  RevokableOperatorFilterer
 * @notice This contract is meant to allow contracts to permanently skip OperatorFilterRegistry checks if desired. The
 *         Registry itself has an "unregister" function, but if the contract is ownable, the owner can re-register at
 *         any point. As implemented, this abstract contract allows the contract owner to permanently skip the
 *         OperatorFilterRegistry checks by calling revokeOperatorFilterRegistry. Once done, the registry
 *         address cannot be further updated.
 *         Note that OpenSea will still disable creator fee enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 */
abstract contract RevokableOperatorFilterer is UpdatableOperatorFilterer {
    error RegistryHasBeenRevoked();
    error InitialRegistryAddressCannotBeZeroAddress();

    bool public isOperatorFilterRegistryRevoked;

    constructor(
        address _registry,
        address subscriptionOrRegistrantToCopy,
        bool subscribe
    )
        UpdatableOperatorFilterer(
            _registry,
            subscriptionOrRegistrantToCopy,
            subscribe
        )
    {
        // don't allow creating a contract with a permanently revoked registry
        if (_registry == address(0)) {
            revert InitialRegistryAddressCannotBeZeroAddress();
        }
    }

    function _checkFilterOperator(address operator)
        internal
        view
        virtual
        override
    {
        if (address(operatorFilterRegistry) != address(0)) {
            super._checkFilterOperator(operator);
        }
    }

    /**
     * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
     *         address, checks will be permanently bypassed, and the address cannot be updated again. OnlyOwner.
     */
    function updateOperatorFilterRegistryAddress(address newRegistry)
        public
        override
    {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        // if registry has been revoked, do not allow further updates
        if (isOperatorFilterRegistryRevoked) {
            revert RegistryHasBeenRevoked();
        }

        operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
    }

    /**
     * @notice Revoke the OperatorFilterRegistry address, permanently bypassing checks. OnlyOwner.
     */
    function revokeOperatorFilterRegistry() public {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        // if registry has been revoked, do not allow further updates
        if (isOperatorFilterRegistryRevoked) {
            revert RegistryHasBeenRevoked();
        }

        // set to zero address to bypass checks
        operatorFilterRegistry = IOperatorFilterRegistry(address(0));
        isOperatorFilterRegistryRevoked = true;
    }
}

File 11 of 20 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 12 of 20 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

File 15 of 20 : 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 16 of 20 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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 17 of 20 : 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 18 of 20 : 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 19 of 20 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 20 of 20 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InitialRegistryAddressCannotBeZeroAddress","type":"error"},{"inputs":[],"name":"OnlyOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"RegistryHasBeenRevoked","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[{"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":[{"components":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"uint256","name":"valid_until_timestamp","type":"uint256"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"uint256","name":"nb_to_mint","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"internalType":"struct Packs.BurnMintParams","name":"params","type":"tuple"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"burnToMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cardContract","outputs":[{"internalType":"contract ICARDS","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSignerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"uint256","name":"valid_until_timestamp","type":"uint256"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"uint256","name":"nb_to_mint","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"internalType":"struct Packs.BurnMintParams","name":"m_a","type":"tuple"},{"internalType":"bytes","name":"_master_signature","type":"bytes"}],"name":"get_signer_burn","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"uint256","name":"valid_until_timestamp","type":"uint256"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"qtys","type":"uint256[]"},{"internalType":"uint256[]","name":"paid_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"paid_qtys","type":"uint256[]"},{"internalType":"uint256","name":"sig_nonce","type":"uint256"}],"internalType":"struct Packs.WhitelistMintParams","name":"m_a","type":"tuple"},{"internalType":"bytes","name":"_master_signature","type":"bytes"}],"name":"get_signer_wl","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"isOperatorFilterRegistryRevoked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilterRegistry","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokeOperatorFilterRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":"tokenId","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":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ICARDS","name":"_cardContract","type":"address"}],"name":"setCardContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSaleState","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signerAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setTokenEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"setTradingBlockDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"split_signature","outputs":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokensEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingBlockedUntil","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":[],"name":"unblockTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRegistry","type":"address"}],"name":"updateOperatorFilterRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"uint256","name":"valid_until_timestamp","type":"uint256"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"qtys","type":"uint256[]"},{"internalType":"uint256[]","name":"paid_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"paid_qtys","type":"uint256[]"},{"internalType":"uint256","name":"sig_nonce","type":"uint256"}],"internalType":"struct Packs.WhitelistMintParams","name":"_params","type":"tuple"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

602a60095560e060405260366080818152906200486260a039600a906200002790826200063b565b505f600b556618838370f34000600c55600d80546001600160a01b03191673a4de23640d29df1671f2b245676035e3e07909a317905534801562000069575f80fd5b506daaeb6d7670e522a718067333cd4e733cc6cdda760b79bafa08df41ecfa224f810dceb6600182828260405180602001604052805f815250620000b3816200039760201b60201c565b50620000bf33620003a9565b600680546001600160a01b0319166001600160a01b03851690811790915583903b15620001ee5781156200015257604051633e9f1edf60e11b81523060048201526001600160a01b038481166024830152821690637d3e3dbe906044015b5f604051808303815f87803b15801562000135575f80fd5b505af115801562000148573d5f803e3d5ffd5b50505050620001ee565b6001600160a01b03831615620001975760405163a0af290360e01b81523060048201526001600160a01b03848116602483015282169063a0af2903906044016200011d565b604051632210724360e11b81523060048201526001600160a01b03821690634420e486906024015f604051808303815f87803b158015620001d6575f80fd5b505af1158015620001e9573d5f803e3d5ffd5b505050505b5050506001600160a01b03841690506200021b5760405163c49d17ad60e01b815260040160405180910390fd5b50505062000232336101f4620003fa60201b60201c565b6040805160c081018252600b608082019081526a536872656d705061636b7360a81b60a08301528152815180830183526001808252603160f81b602083810191909152830191909152918101919091523060608201526200029390620004ff565b6013557f169f97de0d9a84d840042b17d3c6b9638b3d6fd9024c9eb0c7a306a17b49f88f8054600160ff199182168117909255611e217fa7c5ba7114a813b50159add3a36832908dc83db71d0b9a24c2ad0f83be9582078190557fa74ba3945261e09fde15ba3db55005b205e61eeb4ad811ac0faa2b315bffeead80548316841790557f9adb202b1492743bc00c81d33cdc6423fa8c79109027eb6a845391e8fc1f04815560035f527f45f76dafbbad695564362934e24d72eedc57f9fc1a65f39bca62176cc829682880549091169091179055600e602052611e227fe0283e559c29e31ee7f56467acc9dd307779c843a883aeeb3bf5c6128c9081445562000703565b6002620003a582826200063b565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6127106001600160601b03821611156200046e5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620004c65760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000465565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600455565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f825f015180519060200120836020015180519060200120846040015185606001516040516020016200057e9594939291909485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b604051602081830303815290604052805190602001209050919050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620005c457607f821691505b602082108103620005e357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000636575f81815260208120601f850160051c81016020861015620006115750805b601f850160051c820191505b8181101562000632578281556001016200061d565b5050505b505050565b81516001600160401b038111156200065757620006576200059b565b6200066f81620006688454620005af565b84620005e9565b602080601f831160018114620006a5575f84156200068d5750858301515b5f19600386901b1c1916600185901b17855562000632565b5f85815260208120601f198616915b82811015620006d557888601518255948401946001909101908401620006b4565b5085821015620006f357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b61415180620007115f395ff3fe60806040526004361061027f575f3560e01c80635b59492811610155578063aa1b103f116100be578063d351cfdc11610078578063d351cfdc146107dd578063d9c2820f146107f0578063e985e9c51461082d578063ecba222a14610874578063f242432a14610894578063f2fde38b146108b3575f80fd5b8063aa1b103f1461072e578063b0ccc31e14610742578063b8d1e53214610761578063bb7fd9a614610780578063bd85b03914610793578063c4c63267146107be575f80fd5b80636d5d4d921161010f5780636d5d4d921461067b578063715018a61461069a57806380cfb679146106ae5780638da5cb5b146106cd57806395d89b41146106e1578063a22cb4651461070f575f80fd5b80635b594928146105c65780635b746077146105da5780635ef9432a14610605578063603f4d5214610619578063693bd2d01461062e5780636c36acfa1461064d575f80fd5b8063252491ed116101f75780633ccfd60b116101b15780633ccfd60b146104fc57806344a0d68a1461051057806344a9892b1461052f5780634e1273f41461054e5780634f558e791461057a57806355f804b3146105a7575f80fd5b8063252491ed146104175780632a55205a146104365780632e43be0d146104745780632eb2c2d61461049357806336f5cba5146104b2578063388b9fe0146104dd575f80fd5b806306fdde031161024857806306fdde0314610339578063084c4088146103805780630e89341c1461039f57806313faede6146103be5780631a296e02146103d35780631b2ef1ca14610404575f80fd5b8062fdd58e1461028357806301ffc9a7146102b557806304634d8d146102e4578063046dc1661461030557806305ed78ff14610324575b5f80fd5b34801561028e575f80fd5b506102a261029d3660046132cb565b6108d2565b6040519081526020015b60405180910390f35b3480156102c0575f80fd5b506102d46102cf36600461330a565b610969565b60405190151581526020016102ac565b3480156102ef575f80fd5b506103036102fe36600461332c565b610982565b005b348015610310575f80fd5b5061030361031f36600461336e565b610998565b34801561032f575f80fd5b506102a260095481565b348015610344575f80fd5b506103736040518060400160405280600f81526020016e536872656d70656d6f6e5061636b7360881b81525081565b6040516102ac91906133d6565b34801561038b575f80fd5b5061030361039a3660046133e8565b6109c2565b3480156103aa575f80fd5b506103736103b93660046133e8565b6109cf565b3480156103c9575f80fd5b506102a2600c5481565b3480156103de575f80fd5b50600d546001600160a01b03165b6040516001600160a01b0390911681526020016102ac565b6103036104123660046133ff565b610a86565b348015610422575f80fd5b506103036104313660046133ff565b610b23565b348015610441575f80fd5b506104556104503660046133ff565b610ba7565b604080516001600160a01b0390931683526020830191909152016102ac565b34801561047f575f80fd5b5061030361048e3660046134ce565b610c53565b34801561049e575f80fd5b506103036104ad3660046135c4565b610f2c565b3480156104bd575f80fd5b506102a26104cc3660046133e8565b600e6020525f908152604090205481565b3480156104e8575f80fd5b506103036104f736600461366a565b610f5b565b348015610507575f80fd5b5061030361103d565b34801561051b575f80fd5b5061030361052a3660046133e8565b6110aa565b34801561053a575f80fd5b506103036105493660046133e8565b6110b7565b348015610559575f80fd5b5061056d61056836600461369c565b611119565b6040516102ac9190613791565b348015610585575f80fd5b506102d46105943660046133e8565b5f90815260076020526040902054151590565b3480156105b2575f80fd5b506103036105c13660046137a3565b611240565b3480156105d1575f80fd5b50610303611255565b3480156105e5575f80fd5b506102a26105f43660046133e8565b60106020525f908152604090205481565b348015610610575f80fd5b50610303611263565b348015610624575f80fd5b506102a2600b5481565b348015610639575f80fd5b506008546103ec906001600160a01b031681565b348015610658575f80fd5b506102d46106673660046133e8565b600f6020525f908152604090205460ff1681565b348015610686575f80fd5b506103ec6106953660046134ce565b6112df565b3480156106a5575f80fd5b5061030361139d565b3480156106b9575f80fd5b506103036106c836600461336e565b6113b0565b3480156106d8575f80fd5b506103ec6113da565b3480156106ec575f80fd5b506103736040518060400160405280600381526020016253504b60e81b81525081565b34801561071a575f80fd5b5061030361072936600461381b565b6113f2565b348015610739575f80fd5b5061030361144d565b34801561074d575f80fd5b506006546103ec906001600160a01b031681565b34801561076c575f80fd5b5061030361077b36600461336e565b61145e565b61030361078e366004613847565b6114e4565b34801561079e575f80fd5b506102a26107ad3660046133e8565b5f9081526007602052604090205490565b3480156107c9575f80fd5b506103ec6107d8366004613847565b611ac4565b6103036107eb3660046138c1565b611ad2565b3480156107fb575f80fd5b5061080f61080a366004613927565b611bdb565b60408051938452602084019290925260ff16908201526060016102ac565b348015610838575f80fd5b506102d4610847366004613960565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205460ff1690565b34801561087f575f80fd5b506006546102d490600160a01b900460ff1681565b34801561089f575f80fd5b506103036108ae36600461398c565b611c4c565b3480156108be575f80fd5b506103036108cd36600461336e565b611c73565b5f6001600160a01b0383166109415760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b505f818152602081815260408083206001600160a01b03861684529091529020545b92915050565b5f61097382611ce9565b80610963575061096382611d38565b61098a611d5c565b6109948282611dbb565b5050565b6109a0611d5c565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6109ca611d5c565b600b55565b5f81815260076020526040902054606090610a2c5760405162461bcd60e51b815260206004820152601860248201527f546f6b656e20696420646f6573206e6f742065786973742100000000000000006044820152606401610938565b5f600a8054610a3a906139ef565b905011610a555760405180602001604052805f815250610963565b600a610a6083611eb8565b604051602001610a71929190613a27565b60405160208183030381529060405292915050565b6002600b541015610ad25760405162461bcd60e51b81526020600482015260166024820152757075626c69632073616c65206e6f742061637469766560501b6044820152606401610938565b610adc8282611f47565b80600c54610aea9190613ace565b341015610b095760405162461bcd60e51b815260040161093890613ae5565b61099433838360405180602001604052805f815250611fdd565b610b2b611d5c565b5f828152600f602052604090205460ff1615610b815760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e48195b98589b1959605a1b6044820152606401610938565b5f918252600f60209081526040808420805460ff19166001179055600e90915290912055565b5f8281526005602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c1b5750604080518082019091526004546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101515f9061271090610c39906001600160601b031687613ace565b610c439190613b12565b91519350909150505b9250929050565b600d546001600160a01b0316610c6983836112df565b6001600160a01b031614610cb55760405162461bcd60e51b8152602060048201526013602482015272496e76616c6964206d6173746572207369672160681b6044820152606401610938565b33610cc3602084018461336e565b6001600160a01b031614610d105760405162461bcd60e51b81526020600482015260146024820152734e6f7420617070726f766564206d696e7465722160601b6044820152606401610938565b81602001354210610d585760405162461bcd60e51b81526020600482015260126024820152715369676e617475726520457870697265642160701b6044820152606401610938565b5f818051906020012090508060125f8560a0013581526020019081526020015f205403610dbb5760405162461bcd60e51b815260206004820152601160248201527053696720616c726561647920757365642160781b6044820152606401610938565b60a08301355f9081526012602052604090819020829055610dde90840184613b31565b9050600103610e4057610e3b33610df86040860186613b31565b5f818110610e0857610e08613b76565b90506020020135858060600190610e1f9190613b31565b5f818110610e2f57610e2f613b76565b905060200201356120b7565b610ec5565b610ec533610e516040860186613b31565b808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250610e8f925050506060870187613b31565b808060200260200160405190810160405280939291908181526020018383602002808284375f920191909152506121c892505050565b6008546040516340c10f1960e01b8152336004820152608085013560248201526001600160a01b03909116906340c10f19906044015f604051808303815f87803b158015610f11575f80fd5b505af1158015610f23573d5f803e3d5ffd5b50505050505050565b846001600160a01b0381163314610f4657610f463361235b565b610f538686868686612375565b505050505050565b610f63611d5c565b5f828152600f602052604090205460ff16610f905760405162461bcd60e51b815260040161093890613b8a565b5f828152600e6020908152604080832054601090925290912054610fb5908390613bb9565b1115610ffa5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610938565b5f8281526010602052604081208054839290611017908490613bb9565b9250508190555061103883838360405180602001604052805f815250611fdd565b505050565b611045611d5c565b5f61104e6113da565b6001600160a01b0316476040515f6040518083038185875af1925050503d805f8114611095576040519150601f19603f3d011682016040523d82523d5f602084013e61109a565b606091505b50509050806110a7575f80fd5b50565b6110b2611d5c565b600c55565b6110bf611d5c565b600954602a146111095760405162461bcd60e51b8152602060048201526015602482015274416c726561647920626c6f636b6564206f6e63652160581b6044820152606401610938565b6111138142613bb9565b60095550565b6060815183511461117e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610938565b5f83516001600160401b038111156111985761119861341f565b6040519080825280602002602001820160405280156111c1578160200160208202803683370190505b5090505f5b84518110156112385761120b8582815181106111e4576111e4613b76565b60200260200101518583815181106111fe576111fe613b76565b60200260200101516108d2565b82828151811061121d5761121d613b76565b602090810291909101015261123181613bcc565b90506111c6565b509392505050565b611248611d5c565b600a611038828483613c29565b61125d611d5c565b5f600955565b61126b6113da565b6001600160a01b0316336001600160a01b03161461129c57604051635fc483c560e01b815260040160405180910390fd5b600654600160a01b900460ff16156112c757604051631551a48f60e11b815260040160405180910390fd5b600680546001600160a81b031916600160a01b179055565b5f806013546112ed856123ba565b60405161190160f01b6020820152602281019290925260428201526062016040516020818303038152906040528051906020012090505f805f61132f86611bdb565b604080515f81526020810180835289905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa158015611387573d5f803e3d5ffd5b5050604051601f19015198975050505050505050565b6113a5611d5c565b6113ae5f6124c0565b565b6113b8611d5c565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b5f6113ed6003546001600160a01b031690565b905090565b816113fc8161235b565b6009544210156114435760405162461bcd60e51b8152602060048201526012602482015271151c98591a5b99c81a5cc8189b1bd8dad95960721b6044820152606401610938565b6110388383612511565b611455611d5c565b6113ae5f600455565b6114666113da565b6001600160a01b0316336001600160a01b03161461149757604051635fc483c560e01b815260040160405180910390fd5b600654600160a01b900460ff16156114c257604051631551a48f60e11b815260040160405180910390fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600b54101561152c5760405162461bcd60e51b815260206004820152601260248201527170726573616c65206e6f742061637469766560701b6044820152606401610938565b600d546001600160a01b03166115428383611ac4565b6001600160a01b03161461158e5760405162461bcd60e51b8152602060048201526013602482015272496e76616c6964206d6173746572207369672160681b6044820152606401610938565b3361159c602084018461336e565b6001600160a01b0316146115e95760405162461bcd60e51b81526020600482015260146024820152734e6f7420617070726f766564206d696e7465722160601b6044820152606401610938565b816020013542106116315760405162461bcd60e51b81526020600482015260126024820152715369676e617475726520457870697265642160701b6044820152606401610938565b5f818051906020012090508060115f8560c0013581526020019081526020015f2054036116945760405162461bcd60e51b815260206004820152601160248201527053696720616c726561647920757365642160781b6044820152606401610938565b60c08301355f9081526011602052604081208290555b6116b76040850185613b31565b905081101561185557600f5f6116d06040870187613b31565b848181106116e0576116e0613b76565b602090810292909201358352508101919091526040015f205460ff166117185760405162461bcd60e51b815260040161093890613b8a565b600e5f6117286040870187613b31565b8481811061173857611738613b76565b9050602002013581526020019081526020015f205484806060019061175d9190613b31565b8381811061176d5761176d613b76565b9050602002013560105f8780604001906117879190613b31565b8681811061179757611797613b76565b9050602002013581526020019081526020015f20546117b69190613bb9565b11156117d45760405162461bcd60e51b815260040161093890613ce3565b6117e16060850185613b31565b828181106117f1576117f1613b76565b9050602002013560105f86806040019061180b9190613b31565b8581811061181b5761181b613b76565b9050602002013581526020019081526020015f205f82825461183d9190613bb9565b9091555081905061184d81613bcc565b9150506116aa565b506118636080840184613b31565b9050600103611977576118bf61187c6080850185613b31565b5f81811061188c5761188c613b76565b90506020020135848060a001906118a39190613b31565b5f8181106118b3576118b3613b76565b90506020020135611f47565b6118cc60a0840184613b31565b5f8181106118dc576118dc613b76565b90506020020135600c546118f09190613ace565b34101561190f5760405162461bcd60e51b815260040161093890613ae5565b611972336119206080860186613b31565b5f81811061193057611930613b76565b90506020020135858060a001906119479190613b31565b5f81811061195757611957613b76565b9050602002013560405180602001604052805f815250611fdd565b611a75565b60016119866080850185613b31565b90501115611a75575f6119b161199f6080860186613b31565b6119ac60a0880188613b31565b61251c565b905080600c546119c19190613ace565b3410156119e05760405162461bcd60e51b815260040161093890613ae5565b611a73336119f16080870187613b31565b808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250611a2f9250505060a0880188613b31565b808060200260200160405190810160405280939291908181526020018383602002808284375f920182905250604080516020810190915290815292506126a2915050565b505b61103833611a866040860186613b31565b808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250611a2f925050506060870187613b31565b5f806013546112ed856127f3565b6002600b541015611b1e5760405162461bcd60e51b81526020600482015260166024820152757075626c69632073616c65206e6f742061637469766560501b6044820152606401610938565b5f611b2b8585858561251c565b905080600c54611b3b9190613ace565b341015611b5a5760405162461bcd60e51b815260040161093890613ae5565b611bd4338686808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525050604080516020808a028281018201909352898252909350899250889182918501908490808284375f920182905250604080516020810190915290815292506126a2915050565b5050505050565b5f805f8351604114611c2f5760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610938565b5050506020810151604082015160609092015190925f9190911a90565b846001600160a01b0381163314611c6657611c663361235b565b610f538686868686612953565b611c7b611d5c565b6001600160a01b038116611ce05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610938565b6110a7816124c0565b5f6001600160e01b03198216636cdb3d1360e11b1480611d1957506001600160e01b031982166303a24d0760e21b145b8061096357506301ffc9a760e01b6001600160e01b0319831614610963565b5f6001600160e01b0319821663152a902d60e11b1480610963575061096382611ce9565b33611d656113da565b6001600160a01b0316146113ae5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610938565b6127106001600160601b0382161115611e295760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610938565b6001600160a01b038216611e7f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610938565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600455565b60605f611ec483612998565b60010190505f816001600160401b03811115611ee257611ee261341f565b6040519080825280601f01601f191660200182016040528015611f0c576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611f1657509392505050565b5f828152600f602052604090205460ff16611f745760405162461bcd60e51b815260040161093890613b8a565b5f828152600e6020908152604080832054601090925290912054611f99908390613bb9565b1115611fb75760405162461bcd60e51b815260040161093890613ce3565b5f8281526010602052604081208054839290611fd4908490613bb9565b90915550505050565b6001600160a01b0384166120035760405162461bcd60e51b815260040161093890613d1a565b335f61200e85612a6f565b90505f61201a85612a6f565b905061202a835f89858589612ab8565b5f868152602081815260408083206001600160a01b038b16845290915281208054879290612059908490613bb9565b909155505060408051878152602081018790526001600160a01b03808a16925f92918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610f23835f89898989612ac6565b6001600160a01b0383166120dd5760405162461bcd60e51b815260040161093890613d5b565b335f6120e884612a6f565b90505f6120f484612a6f565b905061211283875f858560405180602001604052805f815250612ab8565b5f858152602081815260408083206001600160a01b038a168452909152902054848110156121525760405162461bcd60e51b815260040161093890613d9e565b5f868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a460408051602081019091525f9052610f23565b6001600160a01b0383166121ee5760405162461bcd60e51b815260040161093890613d5b565b805182511461220f5760405162461bcd60e51b815260040161093890613de2565b5f33905061222f81855f868660405180602001604052805f815250612ab8565b5f5b83518110156122ef575f84828151811061224d5761224d613b76565b602002602001015190505f84838151811061226a5761226a613b76565b6020908102919091018101515f84815280835260408082206001600160a01b038c1683529093529190912054909150818110156122b95760405162461bcd60e51b815260040161093890613d9e565b5f928352602083815260408085206001600160a01b038b16865290915290922091039055806122e781613bcc565b915050612231565b505f6001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161233f929190613e2a565b60405180910390a460408051602081019091525f905250505050565b6006546001600160a01b0316156110a7576110a781612c20565b6001600160a01b03851633148061239157506123918533610847565b6123ad5760405162461bcd60e51b815260040161093890613e57565b611bd48585858585612cdf565b5f7fceff00d748f49b9e6163e01c44562d6a700f3dcbc58b5b7b93bd71b76b4342706123e9602084018461336e565b60208401356123fb6040860186613b31565b60405160200161240c929190613ea5565b60408051601f1981840301815291905280516020909101206124316060870187613b31565b604051602001612442929190613ea5565b60408051601f198184030181528282528051602091820120908301969096526001600160a01b0390941693810193909352606083019190915260808083019190915260a08083019390935284013560c08201529083013560e0820152610100015b604051602081830303815290604052805190602001209050919050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610994338383612e7c565b5f805f5b8581101561269857600f5f88888481811061253d5761253d613b76565b602090810292909201358352508101919091526040015f205460ff166125755760405162461bcd60e51b815260040161093890613b8a565b600e5f88888481811061258a5761258a613b76565b9050602002013581526020019081526020015f20548585838181106125b1576125b1613b76565b9050602002013560105f8a8a868181106125cd576125cd613b76565b9050602002013581526020019081526020015f20546125ec9190613bb9565b111561260a5760405162461bcd60e51b815260040161093890613ce3565b84848281811061261c5761261c613b76565b9050602002013560105f89898581811061263857612638613b76565b9050602002013581526020019081526020015f205f82825461265a9190613bb9565b90915550859050848281811061267257612672613b76565b90506020020135826126849190613bb9565b91508061269081613bcc565b915050612520565b5095945050505050565b6001600160a01b0384166126c85760405162461bcd60e51b815260040161093890613d1a565b81518351146126e95760405162461bcd60e51b815260040161093890613de2565b336126f8815f87878787612ab8565b5f5b845181101561278d5783818151811061271557612715613b76565b60200260200101515f8087848151811061273157612731613b76565b602002602001015181526020019081526020015f205f886001600160a01b03166001600160a01b031681526020019081526020015f205f8282546127759190613bb9565b9091555081905061278581613bcc565b9150506126fa565b50846001600160a01b03165f6001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516127dd929190613e2a565b60405180910390a4611bd4815f87878787612f5b565b5f7f651ae58bc7821f0aab126a8b58b76af5fe8edab60a9aff6d0958e4c0448089c9612822602084018461336e565b60208401356128346040860186613b31565b604051602001612845929190613ea5565b60408051601f19818403018152919052805160209091012061286a6060870187613b31565b60405160200161287b929190613ea5565b60408051601f1981840301815291905280516020909101206128a06080880188613b31565b6040516020016128b1929190613ea5565b60408051601f1981840301815291905280516020909101206128d660a0890189613b31565b6040516020016128e7929190613ea5565b604051602081830303815290604052805190602001208860c001356040516020016124a39897969594939291909788526001600160a01b0396909616602088015260408701949094526060860192909252608085015260a084015260c083015260e08201526101000190565b6001600160a01b03851633148061296f575061296f8533610847565b61298b5760405162461bcd60e51b815260040161093890613e57565b611bd48585858585613015565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106129d65772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612a02576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612a2057662386f26fc10000830492506010015b6305f5e1008310612a38576305f5e100830492506008015b6127108310612a4c57612710830492506004015b60648310612a5e576064830492506002015b600a83106109635760010192915050565b6040805160018082528183019092526060915f91906020808301908036833701905050905082815f81518110612aa757612aa7613b76565b602090810291909101015292915050565b610f53868686868686613149565b6001600160a01b0384163b15610f535760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612b0a9089908990889088908890600401613ecc565b6020604051808303815f875af1925050508015612b44575060408051601f3d908101601f19168201909252612b4191810190613f10565b60015b612bf057612b50613f2b565b806308c379a003612b895750612b64613f44565b80612b6f5750612b8b565b8060405162461bcd60e51b815260040161093891906133d6565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610938565b6001600160e01b0319811663f23a6e6160e01b14610f235760405162461bcd60e51b815260040161093890613fcc565b6006546001600160a01b03168015801590612c4457505f816001600160a01b03163b115b1561099457604051633185c44d60e21b81523060048201526001600160a01b03838116602483015282169063c617113490604401602060405180830381865afa158015612c93573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cb79190614014565b61099457604051633b79c77360e21b81526001600160a01b0383166004820152602401610938565b8151835114612d005760405162461bcd60e51b815260040161093890613de2565b6001600160a01b038416612d265760405162461bcd60e51b81526004016109389061402f565b33612d35818787878787612ab8565b5f5b8451811015612e16575f858281518110612d5357612d53613b76565b602002602001015190505f858381518110612d7057612d70613b76565b6020908102919091018101515f84815280835260408082206001600160a01b038e168352909352919091205490915081811015612dbf5760405162461bcd60e51b815260040161093890614074565b5f838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290612dfb908490613bb9565b9250508190555050505080612e0f90613bcc565b9050612d37565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612e66929190613e2a565b60405180910390a4610f53818787878787612f5b565b816001600160a01b0316836001600160a01b031603612eef5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610938565b6001600160a01b038381165f81815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384163b15610f535760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190612f9f90899089908890889088906004016140be565b6020604051808303815f875af1925050508015612fd9575060408051601f3d908101601f19168201909252612fd691810190613f10565b60015b612fe557612b50613f2b565b6001600160e01b0319811663bc197c8160e01b14610f235760405162461bcd60e51b815260040161093890613fcc565b6001600160a01b03841661303b5760405162461bcd60e51b81526004016109389061402f565b335f61304685612a6f565b90505f61305285612a6f565b9050613062838989858589612ab8565b5f868152602081815260408083206001600160a01b038c168452909152902054858110156130a25760405162461bcd60e51b815260040161093890614074565b5f878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906130de908490613bb9565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461313e848a8a8a8a8a612ac6565b505050505050505050565b6001600160a01b0385166131cc575f5b83518110156131ca5782818151811061317457613174613b76565b602002602001015160075f86848151811061319157613191613b76565b602002602001015181526020019081526020015f205f8282546131b49190613bb9565b909155506131c3905081613bcc565b9050613159565b505b6001600160a01b038416610f53575f5b8351811015610f23575f8482815181106131f8576131f8613b76565b602002602001015190505f84838151811061321557613215613b76565b602002602001015190505f60075f8481526020019081526020015f20549050818110156132955760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b6064820152608401610938565b5f92835260076020526040909220910390556132b081613bcc565b90506131dc565b6001600160a01b03811681146110a7575f80fd5b5f80604083850312156132dc575f80fd5b82356132e7816132b7565b946020939093013593505050565b6001600160e01b0319811681146110a7575f80fd5b5f6020828403121561331a575f80fd5b8135613325816132f5565b9392505050565b5f806040838503121561333d575f80fd5b8235613348816132b7565b915060208301356001600160601b0381168114613363575f80fd5b809150509250929050565b5f6020828403121561337e575f80fd5b8135613325816132b7565b5f5b838110156133a357818101518382015260200161338b565b50505f910152565b5f81518084526133c2816020860160208601613389565b601f01601f19169290920160200192915050565b602081525f61332560208301846133ab565b5f602082840312156133f8575f80fd5b5035919050565b5f8060408385031215613410575f80fd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b601f8201601f191681016001600160401b03811182821017156134585761345861341f565b6040525050565b5f82601f83011261346e575f80fd5b81356001600160401b038111156134875761348761341f565b60405161349e601f8301601f191660200182613433565b8181528460208386010111156134b2575f80fd5b816020850160208301375f918101602001919091529392505050565b5f80604083850312156134df575f80fd5b82356001600160401b03808211156134f5575f80fd5b9084019060c08287031215613508575f80fd5b9092506020840135908082111561351d575f80fd5b5061352a8582860161345f565b9150509250929050565b5f6001600160401b0382111561354c5761354c61341f565b5060051b60200190565b5f82601f830112613565575f80fd5b8135602061357282613534565b60405161357f8282613433565b83815260059390931b850182019282810191508684111561359e575f80fd5b8286015b848110156135b957803583529183019183016135a2565b509695505050505050565b5f805f805f60a086880312156135d8575f80fd5b85356135e3816132b7565b945060208601356135f3816132b7565b935060408601356001600160401b038082111561360e575f80fd5b61361a89838a01613556565b9450606088013591508082111561362f575f80fd5b61363b89838a01613556565b93506080880135915080821115613650575f80fd5b5061365d8882890161345f565b9150509295509295909350565b5f805f6060848603121561367c575f80fd5b8335613687816132b7565b95602085013595506040909401359392505050565b5f80604083850312156136ad575f80fd5b82356001600160401b03808211156136c3575f80fd5b818501915085601f8301126136d6575f80fd5b813560206136e382613534565b6040516136f08282613433565b83815260059390931b850182019282810191508984111561370f575f80fd5b948201945b83861015613736578535613727816132b7565b82529482019490820190613714565b9650508601359250508082111561374b575f80fd5b5061352a85828601613556565b5f8151808452602080850194508084015f5b838110156137865781518752958201959082019060010161376a565b509495945050505050565b602081525f6133256020830184613758565b5f80602083850312156137b4575f80fd5b82356001600160401b03808211156137ca575f80fd5b818501915085601f8301126137dd575f80fd5b8135818111156137eb575f80fd5b8660208285010111156137fc575f80fd5b60209290920196919550909350505050565b80151581146110a7575f80fd5b5f806040838503121561382c575f80fd5b8235613837816132b7565b915060208301356133638161380e565b5f8060408385031215613858575f80fd5b82356001600160401b038082111561386e575f80fd5b9084019060e08287031215613508575f80fd5b5f8083601f840112613891575f80fd5b5081356001600160401b038111156138a7575f80fd5b6020830191508360208260051b8501011115610c4c575f80fd5b5f805f80604085870312156138d4575f80fd5b84356001600160401b03808211156138ea575f80fd5b6138f688838901613881565b9096509450602087013591508082111561390e575f80fd5b5061391b87828801613881565b95989497509550505050565b5f60208284031215613937575f80fd5b81356001600160401b0381111561394c575f80fd5b6139588482850161345f565b949350505050565b5f8060408385031215613971575f80fd5b823561397c816132b7565b91506020830135613363816132b7565b5f805f805f60a086880312156139a0575f80fd5b85356139ab816132b7565b945060208601356139bb816132b7565b9350604086013592506060860135915060808601356001600160401b038111156139e3575f80fd5b61365d8882890161345f565b600181811c90821680613a0357607f821691505b602082108103613a2157634e487b7160e01b5f52602260045260245ffd5b50919050565b5f808454613a34816139ef565b60018281168015613a4c5760018114613a6157613a8d565b60ff1984168752821515830287019450613a8d565b885f526020805f205f5b85811015613a845781548a820152908401908201613a6b565b50505082870194505b505050508351613aa1818360208801613389565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761096357610963613aba565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b5f82613b2c57634e487b7160e01b5f52601260045260245ffd5b500490565b5f808335601e19843603018112613b46575f80fd5b8301803591506001600160401b03821115613b5f575f80fd5b6020019150600581901b3603821315610c4c575f80fd5b634e487b7160e01b5f52603260045260245ffd5b602080825260159082015274546f6b656e206964206e6f7420656e61626c65642160581b604082015260600190565b8082018082111561096357610963613aba565b5f60018201613bdd57613bdd613aba565b5060010190565b601f821115611038575f81815260208120601f850160051c81016020861015613c0a5750805b601f850160051c820191505b81811015610f5357828155600101613c16565b6001600160401b03831115613c4057613c4061341f565b613c5483613c4e83546139ef565b83613be4565b5f601f841160018114613c85575f8515613c6e5750838201355b5f19600387901b1c1916600186901b178355611bd4565b5f83815260209020601f19861690835b82811015613cb55786850135825560209485019460019092019101613c95565b5086821015613cd1575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252601d908201527f4d617820737570706c7920657863656564656420666f72207061636b21000000604082015260600190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b604081525f613e3c6040830185613758565b8281036020840152613e4e8185613758565b95945050505050565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b5f6001600160fb1b03831115613eb9575f80fd5b8260051b80858437919091019392505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190525f90613f05908301846133ab565b979650505050505050565b5f60208284031215613f20575f80fd5b8151613325816132f5565b5f60033d1115613f415760045f803e505f5160e01c5b90565b5f60443d1015613f515790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715613f8057505050505090565b8285019150815181811115613f985750505050505090565b843d8701016020828501011115613fb25750505050505090565b613fc160208286010187613433565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b5f60208284031215614024575f80fd5b81516133258161380e565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6001600160a01b0386811682528516602082015260a0604082018190525f906140e990830186613758565b82810360608401526140fb8186613758565b9050828103608084015261410f81856133ab565b9897505050505050505056fea26469706673582212205f2e4907675c4d0395bd4fb462d2f63eef41131f17c18b8289973fa815112cc964736f6c63430008150033697066733a2f2f516d5472787a6f4e4b4c397431734a6e4c6d7061723635776856437873617057526f4c36466f693341634841786e2f

Deployed Bytecode

0x60806040526004361061027f575f3560e01c80635b59492811610155578063aa1b103f116100be578063d351cfdc11610078578063d351cfdc146107dd578063d9c2820f146107f0578063e985e9c51461082d578063ecba222a14610874578063f242432a14610894578063f2fde38b146108b3575f80fd5b8063aa1b103f1461072e578063b0ccc31e14610742578063b8d1e53214610761578063bb7fd9a614610780578063bd85b03914610793578063c4c63267146107be575f80fd5b80636d5d4d921161010f5780636d5d4d921461067b578063715018a61461069a57806380cfb679146106ae5780638da5cb5b146106cd57806395d89b41146106e1578063a22cb4651461070f575f80fd5b80635b594928146105c65780635b746077146105da5780635ef9432a14610605578063603f4d5214610619578063693bd2d01461062e5780636c36acfa1461064d575f80fd5b8063252491ed116101f75780633ccfd60b116101b15780633ccfd60b146104fc57806344a0d68a1461051057806344a9892b1461052f5780634e1273f41461054e5780634f558e791461057a57806355f804b3146105a7575f80fd5b8063252491ed146104175780632a55205a146104365780632e43be0d146104745780632eb2c2d61461049357806336f5cba5146104b2578063388b9fe0146104dd575f80fd5b806306fdde031161024857806306fdde0314610339578063084c4088146103805780630e89341c1461039f57806313faede6146103be5780631a296e02146103d35780631b2ef1ca14610404575f80fd5b8062fdd58e1461028357806301ffc9a7146102b557806304634d8d146102e4578063046dc1661461030557806305ed78ff14610324575b5f80fd5b34801561028e575f80fd5b506102a261029d3660046132cb565b6108d2565b6040519081526020015b60405180910390f35b3480156102c0575f80fd5b506102d46102cf36600461330a565b610969565b60405190151581526020016102ac565b3480156102ef575f80fd5b506103036102fe36600461332c565b610982565b005b348015610310575f80fd5b5061030361031f36600461336e565b610998565b34801561032f575f80fd5b506102a260095481565b348015610344575f80fd5b506103736040518060400160405280600f81526020016e536872656d70656d6f6e5061636b7360881b81525081565b6040516102ac91906133d6565b34801561038b575f80fd5b5061030361039a3660046133e8565b6109c2565b3480156103aa575f80fd5b506103736103b93660046133e8565b6109cf565b3480156103c9575f80fd5b506102a2600c5481565b3480156103de575f80fd5b50600d546001600160a01b03165b6040516001600160a01b0390911681526020016102ac565b6103036104123660046133ff565b610a86565b348015610422575f80fd5b506103036104313660046133ff565b610b23565b348015610441575f80fd5b506104556104503660046133ff565b610ba7565b604080516001600160a01b0390931683526020830191909152016102ac565b34801561047f575f80fd5b5061030361048e3660046134ce565b610c53565b34801561049e575f80fd5b506103036104ad3660046135c4565b610f2c565b3480156104bd575f80fd5b506102a26104cc3660046133e8565b600e6020525f908152604090205481565b3480156104e8575f80fd5b506103036104f736600461366a565b610f5b565b348015610507575f80fd5b5061030361103d565b34801561051b575f80fd5b5061030361052a3660046133e8565b6110aa565b34801561053a575f80fd5b506103036105493660046133e8565b6110b7565b348015610559575f80fd5b5061056d61056836600461369c565b611119565b6040516102ac9190613791565b348015610585575f80fd5b506102d46105943660046133e8565b5f90815260076020526040902054151590565b3480156105b2575f80fd5b506103036105c13660046137a3565b611240565b3480156105d1575f80fd5b50610303611255565b3480156105e5575f80fd5b506102a26105f43660046133e8565b60106020525f908152604090205481565b348015610610575f80fd5b50610303611263565b348015610624575f80fd5b506102a2600b5481565b348015610639575f80fd5b506008546103ec906001600160a01b031681565b348015610658575f80fd5b506102d46106673660046133e8565b600f6020525f908152604090205460ff1681565b348015610686575f80fd5b506103ec6106953660046134ce565b6112df565b3480156106a5575f80fd5b5061030361139d565b3480156106b9575f80fd5b506103036106c836600461336e565b6113b0565b3480156106d8575f80fd5b506103ec6113da565b3480156106ec575f80fd5b506103736040518060400160405280600381526020016253504b60e81b81525081565b34801561071a575f80fd5b5061030361072936600461381b565b6113f2565b348015610739575f80fd5b5061030361144d565b34801561074d575f80fd5b506006546103ec906001600160a01b031681565b34801561076c575f80fd5b5061030361077b36600461336e565b61145e565b61030361078e366004613847565b6114e4565b34801561079e575f80fd5b506102a26107ad3660046133e8565b5f9081526007602052604090205490565b3480156107c9575f80fd5b506103ec6107d8366004613847565b611ac4565b6103036107eb3660046138c1565b611ad2565b3480156107fb575f80fd5b5061080f61080a366004613927565b611bdb565b60408051938452602084019290925260ff16908201526060016102ac565b348015610838575f80fd5b506102d4610847366004613960565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205460ff1690565b34801561087f575f80fd5b506006546102d490600160a01b900460ff1681565b34801561089f575f80fd5b506103036108ae36600461398c565b611c4c565b3480156108be575f80fd5b506103036108cd36600461336e565b611c73565b5f6001600160a01b0383166109415760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b505f818152602081815260408083206001600160a01b03861684529091529020545b92915050565b5f61097382611ce9565b80610963575061096382611d38565b61098a611d5c565b6109948282611dbb565b5050565b6109a0611d5c565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6109ca611d5c565b600b55565b5f81815260076020526040902054606090610a2c5760405162461bcd60e51b815260206004820152601860248201527f546f6b656e20696420646f6573206e6f742065786973742100000000000000006044820152606401610938565b5f600a8054610a3a906139ef565b905011610a555760405180602001604052805f815250610963565b600a610a6083611eb8565b604051602001610a71929190613a27565b60405160208183030381529060405292915050565b6002600b541015610ad25760405162461bcd60e51b81526020600482015260166024820152757075626c69632073616c65206e6f742061637469766560501b6044820152606401610938565b610adc8282611f47565b80600c54610aea9190613ace565b341015610b095760405162461bcd60e51b815260040161093890613ae5565b61099433838360405180602001604052805f815250611fdd565b610b2b611d5c565b5f828152600f602052604090205460ff1615610b815760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e48195b98589b1959605a1b6044820152606401610938565b5f918252600f60209081526040808420805460ff19166001179055600e90915290912055565b5f8281526005602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c1b5750604080518082019091526004546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101515f9061271090610c39906001600160601b031687613ace565b610c439190613b12565b91519350909150505b9250929050565b600d546001600160a01b0316610c6983836112df565b6001600160a01b031614610cb55760405162461bcd60e51b8152602060048201526013602482015272496e76616c6964206d6173746572207369672160681b6044820152606401610938565b33610cc3602084018461336e565b6001600160a01b031614610d105760405162461bcd60e51b81526020600482015260146024820152734e6f7420617070726f766564206d696e7465722160601b6044820152606401610938565b81602001354210610d585760405162461bcd60e51b81526020600482015260126024820152715369676e617475726520457870697265642160701b6044820152606401610938565b5f818051906020012090508060125f8560a0013581526020019081526020015f205403610dbb5760405162461bcd60e51b815260206004820152601160248201527053696720616c726561647920757365642160781b6044820152606401610938565b60a08301355f9081526012602052604090819020829055610dde90840184613b31565b9050600103610e4057610e3b33610df86040860186613b31565b5f818110610e0857610e08613b76565b90506020020135858060600190610e1f9190613b31565b5f818110610e2f57610e2f613b76565b905060200201356120b7565b610ec5565b610ec533610e516040860186613b31565b808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250610e8f925050506060870187613b31565b808060200260200160405190810160405280939291908181526020018383602002808284375f920191909152506121c892505050565b6008546040516340c10f1960e01b8152336004820152608085013560248201526001600160a01b03909116906340c10f19906044015f604051808303815f87803b158015610f11575f80fd5b505af1158015610f23573d5f803e3d5ffd5b50505050505050565b846001600160a01b0381163314610f4657610f463361235b565b610f538686868686612375565b505050505050565b610f63611d5c565b5f828152600f602052604090205460ff16610f905760405162461bcd60e51b815260040161093890613b8a565b5f828152600e6020908152604080832054601090925290912054610fb5908390613bb9565b1115610ffa5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610938565b5f8281526010602052604081208054839290611017908490613bb9565b9250508190555061103883838360405180602001604052805f815250611fdd565b505050565b611045611d5c565b5f61104e6113da565b6001600160a01b0316476040515f6040518083038185875af1925050503d805f8114611095576040519150601f19603f3d011682016040523d82523d5f602084013e61109a565b606091505b50509050806110a7575f80fd5b50565b6110b2611d5c565b600c55565b6110bf611d5c565b600954602a146111095760405162461bcd60e51b8152602060048201526015602482015274416c726561647920626c6f636b6564206f6e63652160581b6044820152606401610938565b6111138142613bb9565b60095550565b6060815183511461117e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610938565b5f83516001600160401b038111156111985761119861341f565b6040519080825280602002602001820160405280156111c1578160200160208202803683370190505b5090505f5b84518110156112385761120b8582815181106111e4576111e4613b76565b60200260200101518583815181106111fe576111fe613b76565b60200260200101516108d2565b82828151811061121d5761121d613b76565b602090810291909101015261123181613bcc565b90506111c6565b509392505050565b611248611d5c565b600a611038828483613c29565b61125d611d5c565b5f600955565b61126b6113da565b6001600160a01b0316336001600160a01b03161461129c57604051635fc483c560e01b815260040160405180910390fd5b600654600160a01b900460ff16156112c757604051631551a48f60e11b815260040160405180910390fd5b600680546001600160a81b031916600160a01b179055565b5f806013546112ed856123ba565b60405161190160f01b6020820152602281019290925260428201526062016040516020818303038152906040528051906020012090505f805f61132f86611bdb565b604080515f81526020810180835289905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa158015611387573d5f803e3d5ffd5b5050604051601f19015198975050505050505050565b6113a5611d5c565b6113ae5f6124c0565b565b6113b8611d5c565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b5f6113ed6003546001600160a01b031690565b905090565b816113fc8161235b565b6009544210156114435760405162461bcd60e51b8152602060048201526012602482015271151c98591a5b99c81a5cc8189b1bd8dad95960721b6044820152606401610938565b6110388383612511565b611455611d5c565b6113ae5f600455565b6114666113da565b6001600160a01b0316336001600160a01b03161461149757604051635fc483c560e01b815260040160405180910390fd5b600654600160a01b900460ff16156114c257604051631551a48f60e11b815260040160405180910390fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600b54101561152c5760405162461bcd60e51b815260206004820152601260248201527170726573616c65206e6f742061637469766560701b6044820152606401610938565b600d546001600160a01b03166115428383611ac4565b6001600160a01b03161461158e5760405162461bcd60e51b8152602060048201526013602482015272496e76616c6964206d6173746572207369672160681b6044820152606401610938565b3361159c602084018461336e565b6001600160a01b0316146115e95760405162461bcd60e51b81526020600482015260146024820152734e6f7420617070726f766564206d696e7465722160601b6044820152606401610938565b816020013542106116315760405162461bcd60e51b81526020600482015260126024820152715369676e617475726520457870697265642160701b6044820152606401610938565b5f818051906020012090508060115f8560c0013581526020019081526020015f2054036116945760405162461bcd60e51b815260206004820152601160248201527053696720616c726561647920757365642160781b6044820152606401610938565b60c08301355f9081526011602052604081208290555b6116b76040850185613b31565b905081101561185557600f5f6116d06040870187613b31565b848181106116e0576116e0613b76565b602090810292909201358352508101919091526040015f205460ff166117185760405162461bcd60e51b815260040161093890613b8a565b600e5f6117286040870187613b31565b8481811061173857611738613b76565b9050602002013581526020019081526020015f205484806060019061175d9190613b31565b8381811061176d5761176d613b76565b9050602002013560105f8780604001906117879190613b31565b8681811061179757611797613b76565b9050602002013581526020019081526020015f20546117b69190613bb9565b11156117d45760405162461bcd60e51b815260040161093890613ce3565b6117e16060850185613b31565b828181106117f1576117f1613b76565b9050602002013560105f86806040019061180b9190613b31565b8581811061181b5761181b613b76565b9050602002013581526020019081526020015f205f82825461183d9190613bb9565b9091555081905061184d81613bcc565b9150506116aa565b506118636080840184613b31565b9050600103611977576118bf61187c6080850185613b31565b5f81811061188c5761188c613b76565b90506020020135848060a001906118a39190613b31565b5f8181106118b3576118b3613b76565b90506020020135611f47565b6118cc60a0840184613b31565b5f8181106118dc576118dc613b76565b90506020020135600c546118f09190613ace565b34101561190f5760405162461bcd60e51b815260040161093890613ae5565b611972336119206080860186613b31565b5f81811061193057611930613b76565b90506020020135858060a001906119479190613b31565b5f81811061195757611957613b76565b9050602002013560405180602001604052805f815250611fdd565b611a75565b60016119866080850185613b31565b90501115611a75575f6119b161199f6080860186613b31565b6119ac60a0880188613b31565b61251c565b905080600c546119c19190613ace565b3410156119e05760405162461bcd60e51b815260040161093890613ae5565b611a73336119f16080870187613b31565b808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250611a2f9250505060a0880188613b31565b808060200260200160405190810160405280939291908181526020018383602002808284375f920182905250604080516020810190915290815292506126a2915050565b505b61103833611a866040860186613b31565b808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250611a2f925050506060870187613b31565b5f806013546112ed856127f3565b6002600b541015611b1e5760405162461bcd60e51b81526020600482015260166024820152757075626c69632073616c65206e6f742061637469766560501b6044820152606401610938565b5f611b2b8585858561251c565b905080600c54611b3b9190613ace565b341015611b5a5760405162461bcd60e51b815260040161093890613ae5565b611bd4338686808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525050604080516020808a028281018201909352898252909350899250889182918501908490808284375f920182905250604080516020810190915290815292506126a2915050565b5050505050565b5f805f8351604114611c2f5760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610938565b5050506020810151604082015160609092015190925f9190911a90565b846001600160a01b0381163314611c6657611c663361235b565b610f538686868686612953565b611c7b611d5c565b6001600160a01b038116611ce05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610938565b6110a7816124c0565b5f6001600160e01b03198216636cdb3d1360e11b1480611d1957506001600160e01b031982166303a24d0760e21b145b8061096357506301ffc9a760e01b6001600160e01b0319831614610963565b5f6001600160e01b0319821663152a902d60e11b1480610963575061096382611ce9565b33611d656113da565b6001600160a01b0316146113ae5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610938565b6127106001600160601b0382161115611e295760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610938565b6001600160a01b038216611e7f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610938565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600455565b60605f611ec483612998565b60010190505f816001600160401b03811115611ee257611ee261341f565b6040519080825280601f01601f191660200182016040528015611f0c576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611f1657509392505050565b5f828152600f602052604090205460ff16611f745760405162461bcd60e51b815260040161093890613b8a565b5f828152600e6020908152604080832054601090925290912054611f99908390613bb9565b1115611fb75760405162461bcd60e51b815260040161093890613ce3565b5f8281526010602052604081208054839290611fd4908490613bb9565b90915550505050565b6001600160a01b0384166120035760405162461bcd60e51b815260040161093890613d1a565b335f61200e85612a6f565b90505f61201a85612a6f565b905061202a835f89858589612ab8565b5f868152602081815260408083206001600160a01b038b16845290915281208054879290612059908490613bb9565b909155505060408051878152602081018790526001600160a01b03808a16925f92918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610f23835f89898989612ac6565b6001600160a01b0383166120dd5760405162461bcd60e51b815260040161093890613d5b565b335f6120e884612a6f565b90505f6120f484612a6f565b905061211283875f858560405180602001604052805f815250612ab8565b5f858152602081815260408083206001600160a01b038a168452909152902054848110156121525760405162461bcd60e51b815260040161093890613d9e565b5f868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a460408051602081019091525f9052610f23565b6001600160a01b0383166121ee5760405162461bcd60e51b815260040161093890613d5b565b805182511461220f5760405162461bcd60e51b815260040161093890613de2565b5f33905061222f81855f868660405180602001604052805f815250612ab8565b5f5b83518110156122ef575f84828151811061224d5761224d613b76565b602002602001015190505f84838151811061226a5761226a613b76565b6020908102919091018101515f84815280835260408082206001600160a01b038c1683529093529190912054909150818110156122b95760405162461bcd60e51b815260040161093890613d9e565b5f928352602083815260408085206001600160a01b038b16865290915290922091039055806122e781613bcc565b915050612231565b505f6001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161233f929190613e2a565b60405180910390a460408051602081019091525f905250505050565b6006546001600160a01b0316156110a7576110a781612c20565b6001600160a01b03851633148061239157506123918533610847565b6123ad5760405162461bcd60e51b815260040161093890613e57565b611bd48585858585612cdf565b5f7fceff00d748f49b9e6163e01c44562d6a700f3dcbc58b5b7b93bd71b76b4342706123e9602084018461336e565b60208401356123fb6040860186613b31565b60405160200161240c929190613ea5565b60408051601f1981840301815291905280516020909101206124316060870187613b31565b604051602001612442929190613ea5565b60408051601f198184030181528282528051602091820120908301969096526001600160a01b0390941693810193909352606083019190915260808083019190915260a08083019390935284013560c08201529083013560e0820152610100015b604051602081830303815290604052805190602001209050919050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610994338383612e7c565b5f805f5b8581101561269857600f5f88888481811061253d5761253d613b76565b602090810292909201358352508101919091526040015f205460ff166125755760405162461bcd60e51b815260040161093890613b8a565b600e5f88888481811061258a5761258a613b76565b9050602002013581526020019081526020015f20548585838181106125b1576125b1613b76565b9050602002013560105f8a8a868181106125cd576125cd613b76565b9050602002013581526020019081526020015f20546125ec9190613bb9565b111561260a5760405162461bcd60e51b815260040161093890613ce3565b84848281811061261c5761261c613b76565b9050602002013560105f89898581811061263857612638613b76565b9050602002013581526020019081526020015f205f82825461265a9190613bb9565b90915550859050848281811061267257612672613b76565b90506020020135826126849190613bb9565b91508061269081613bcc565b915050612520565b5095945050505050565b6001600160a01b0384166126c85760405162461bcd60e51b815260040161093890613d1a565b81518351146126e95760405162461bcd60e51b815260040161093890613de2565b336126f8815f87878787612ab8565b5f5b845181101561278d5783818151811061271557612715613b76565b60200260200101515f8087848151811061273157612731613b76565b602002602001015181526020019081526020015f205f886001600160a01b03166001600160a01b031681526020019081526020015f205f8282546127759190613bb9565b9091555081905061278581613bcc565b9150506126fa565b50846001600160a01b03165f6001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516127dd929190613e2a565b60405180910390a4611bd4815f87878787612f5b565b5f7f651ae58bc7821f0aab126a8b58b76af5fe8edab60a9aff6d0958e4c0448089c9612822602084018461336e565b60208401356128346040860186613b31565b604051602001612845929190613ea5565b60408051601f19818403018152919052805160209091012061286a6060870187613b31565b60405160200161287b929190613ea5565b60408051601f1981840301815291905280516020909101206128a06080880188613b31565b6040516020016128b1929190613ea5565b60408051601f1981840301815291905280516020909101206128d660a0890189613b31565b6040516020016128e7929190613ea5565b604051602081830303815290604052805190602001208860c001356040516020016124a39897969594939291909788526001600160a01b0396909616602088015260408701949094526060860192909252608085015260a084015260c083015260e08201526101000190565b6001600160a01b03851633148061296f575061296f8533610847565b61298b5760405162461bcd60e51b815260040161093890613e57565b611bd48585858585613015565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106129d65772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612a02576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612a2057662386f26fc10000830492506010015b6305f5e1008310612a38576305f5e100830492506008015b6127108310612a4c57612710830492506004015b60648310612a5e576064830492506002015b600a83106109635760010192915050565b6040805160018082528183019092526060915f91906020808301908036833701905050905082815f81518110612aa757612aa7613b76565b602090810291909101015292915050565b610f53868686868686613149565b6001600160a01b0384163b15610f535760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612b0a9089908990889088908890600401613ecc565b6020604051808303815f875af1925050508015612b44575060408051601f3d908101601f19168201909252612b4191810190613f10565b60015b612bf057612b50613f2b565b806308c379a003612b895750612b64613f44565b80612b6f5750612b8b565b8060405162461bcd60e51b815260040161093891906133d6565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610938565b6001600160e01b0319811663f23a6e6160e01b14610f235760405162461bcd60e51b815260040161093890613fcc565b6006546001600160a01b03168015801590612c4457505f816001600160a01b03163b115b1561099457604051633185c44d60e21b81523060048201526001600160a01b03838116602483015282169063c617113490604401602060405180830381865afa158015612c93573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cb79190614014565b61099457604051633b79c77360e21b81526001600160a01b0383166004820152602401610938565b8151835114612d005760405162461bcd60e51b815260040161093890613de2565b6001600160a01b038416612d265760405162461bcd60e51b81526004016109389061402f565b33612d35818787878787612ab8565b5f5b8451811015612e16575f858281518110612d5357612d53613b76565b602002602001015190505f858381518110612d7057612d70613b76565b6020908102919091018101515f84815280835260408082206001600160a01b038e168352909352919091205490915081811015612dbf5760405162461bcd60e51b815260040161093890614074565b5f838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290612dfb908490613bb9565b9250508190555050505080612e0f90613bcc565b9050612d37565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612e66929190613e2a565b60405180910390a4610f53818787878787612f5b565b816001600160a01b0316836001600160a01b031603612eef5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610938565b6001600160a01b038381165f81815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384163b15610f535760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190612f9f90899089908890889088906004016140be565b6020604051808303815f875af1925050508015612fd9575060408051601f3d908101601f19168201909252612fd691810190613f10565b60015b612fe557612b50613f2b565b6001600160e01b0319811663bc197c8160e01b14610f235760405162461bcd60e51b815260040161093890613fcc565b6001600160a01b03841661303b5760405162461bcd60e51b81526004016109389061402f565b335f61304685612a6f565b90505f61305285612a6f565b9050613062838989858589612ab8565b5f868152602081815260408083206001600160a01b038c168452909152902054858110156130a25760405162461bcd60e51b815260040161093890614074565b5f878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906130de908490613bb9565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461313e848a8a8a8a8a612ac6565b505050505050505050565b6001600160a01b0385166131cc575f5b83518110156131ca5782818151811061317457613174613b76565b602002602001015160075f86848151811061319157613191613b76565b602002602001015181526020019081526020015f205f8282546131b49190613bb9565b909155506131c3905081613bcc565b9050613159565b505b6001600160a01b038416610f53575f5b8351811015610f23575f8482815181106131f8576131f8613b76565b602002602001015190505f84838151811061321557613215613b76565b602002602001015190505f60075f8481526020019081526020015f20549050818110156132955760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b6064820152608401610938565b5f92835260076020526040909220910390556132b081613bcc565b90506131dc565b6001600160a01b03811681146110a7575f80fd5b5f80604083850312156132dc575f80fd5b82356132e7816132b7565b946020939093013593505050565b6001600160e01b0319811681146110a7575f80fd5b5f6020828403121561331a575f80fd5b8135613325816132f5565b9392505050565b5f806040838503121561333d575f80fd5b8235613348816132b7565b915060208301356001600160601b0381168114613363575f80fd5b809150509250929050565b5f6020828403121561337e575f80fd5b8135613325816132b7565b5f5b838110156133a357818101518382015260200161338b565b50505f910152565b5f81518084526133c2816020860160208601613389565b601f01601f19169290920160200192915050565b602081525f61332560208301846133ab565b5f602082840312156133f8575f80fd5b5035919050565b5f8060408385031215613410575f80fd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b601f8201601f191681016001600160401b03811182821017156134585761345861341f565b6040525050565b5f82601f83011261346e575f80fd5b81356001600160401b038111156134875761348761341f565b60405161349e601f8301601f191660200182613433565b8181528460208386010111156134b2575f80fd5b816020850160208301375f918101602001919091529392505050565b5f80604083850312156134df575f80fd5b82356001600160401b03808211156134f5575f80fd5b9084019060c08287031215613508575f80fd5b9092506020840135908082111561351d575f80fd5b5061352a8582860161345f565b9150509250929050565b5f6001600160401b0382111561354c5761354c61341f565b5060051b60200190565b5f82601f830112613565575f80fd5b8135602061357282613534565b60405161357f8282613433565b83815260059390931b850182019282810191508684111561359e575f80fd5b8286015b848110156135b957803583529183019183016135a2565b509695505050505050565b5f805f805f60a086880312156135d8575f80fd5b85356135e3816132b7565b945060208601356135f3816132b7565b935060408601356001600160401b038082111561360e575f80fd5b61361a89838a01613556565b9450606088013591508082111561362f575f80fd5b61363b89838a01613556565b93506080880135915080821115613650575f80fd5b5061365d8882890161345f565b9150509295509295909350565b5f805f6060848603121561367c575f80fd5b8335613687816132b7565b95602085013595506040909401359392505050565b5f80604083850312156136ad575f80fd5b82356001600160401b03808211156136c3575f80fd5b818501915085601f8301126136d6575f80fd5b813560206136e382613534565b6040516136f08282613433565b83815260059390931b850182019282810191508984111561370f575f80fd5b948201945b83861015613736578535613727816132b7565b82529482019490820190613714565b9650508601359250508082111561374b575f80fd5b5061352a85828601613556565b5f8151808452602080850194508084015f5b838110156137865781518752958201959082019060010161376a565b509495945050505050565b602081525f6133256020830184613758565b5f80602083850312156137b4575f80fd5b82356001600160401b03808211156137ca575f80fd5b818501915085601f8301126137dd575f80fd5b8135818111156137eb575f80fd5b8660208285010111156137fc575f80fd5b60209290920196919550909350505050565b80151581146110a7575f80fd5b5f806040838503121561382c575f80fd5b8235613837816132b7565b915060208301356133638161380e565b5f8060408385031215613858575f80fd5b82356001600160401b038082111561386e575f80fd5b9084019060e08287031215613508575f80fd5b5f8083601f840112613891575f80fd5b5081356001600160401b038111156138a7575f80fd5b6020830191508360208260051b8501011115610c4c575f80fd5b5f805f80604085870312156138d4575f80fd5b84356001600160401b03808211156138ea575f80fd5b6138f688838901613881565b9096509450602087013591508082111561390e575f80fd5b5061391b87828801613881565b95989497509550505050565b5f60208284031215613937575f80fd5b81356001600160401b0381111561394c575f80fd5b6139588482850161345f565b949350505050565b5f8060408385031215613971575f80fd5b823561397c816132b7565b91506020830135613363816132b7565b5f805f805f60a086880312156139a0575f80fd5b85356139ab816132b7565b945060208601356139bb816132b7565b9350604086013592506060860135915060808601356001600160401b038111156139e3575f80fd5b61365d8882890161345f565b600181811c90821680613a0357607f821691505b602082108103613a2157634e487b7160e01b5f52602260045260245ffd5b50919050565b5f808454613a34816139ef565b60018281168015613a4c5760018114613a6157613a8d565b60ff1984168752821515830287019450613a8d565b885f526020805f205f5b85811015613a845781548a820152908401908201613a6b565b50505082870194505b505050508351613aa1818360208801613389565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761096357610963613aba565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b5f82613b2c57634e487b7160e01b5f52601260045260245ffd5b500490565b5f808335601e19843603018112613b46575f80fd5b8301803591506001600160401b03821115613b5f575f80fd5b6020019150600581901b3603821315610c4c575f80fd5b634e487b7160e01b5f52603260045260245ffd5b602080825260159082015274546f6b656e206964206e6f7420656e61626c65642160581b604082015260600190565b8082018082111561096357610963613aba565b5f60018201613bdd57613bdd613aba565b5060010190565b601f821115611038575f81815260208120601f850160051c81016020861015613c0a5750805b601f850160051c820191505b81811015610f5357828155600101613c16565b6001600160401b03831115613c4057613c4061341f565b613c5483613c4e83546139ef565b83613be4565b5f601f841160018114613c85575f8515613c6e5750838201355b5f19600387901b1c1916600186901b178355611bd4565b5f83815260209020601f19861690835b82811015613cb55786850135825560209485019460019092019101613c95565b5086821015613cd1575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252601d908201527f4d617820737570706c7920657863656564656420666f72207061636b21000000604082015260600190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b604081525f613e3c6040830185613758565b8281036020840152613e4e8185613758565b95945050505050565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b5f6001600160fb1b03831115613eb9575f80fd5b8260051b80858437919091019392505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190525f90613f05908301846133ab565b979650505050505050565b5f60208284031215613f20575f80fd5b8151613325816132f5565b5f60033d1115613f415760045f803e505f5160e01c5b90565b5f60443d1015613f515790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715613f8057505050505090565b8285019150815181811115613f985750505050505090565b843d8701016020828501011115613fb25750505050505090565b613fc160208286010187613433565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b5f60208284031215614024575f80fd5b81516133258161380e565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6001600160a01b0386811682528516602082015260a0604082018190525f906140e990830186613758565b82810360608401526140fb8186613758565b9050828103608084015261410f81856133ab565b9897505050505050505056fea26469706673582212205f2e4907675c4d0395bd4fb462d2f63eef41131f17c18b8289973fa815112cc964736f6c63430008150033

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.