ETH Price: $3,503.59 (+0.01%)
Gas: 2 Gwei

Token

Block Party by Andrew McWhae (BPARTY)
 

Overview

Max Total Supply

800 BPARTY

Holders

298

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 BPARTY
0xfba87c4cff958e11b4d7a945e0e1dbd58516de9e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Block Party is [Andrew McWhae](https://twitter.com/andrewmcwhae)’s second generative art collection featuring a diverse array of abstract 3D compositions that are created by arranging and manipulating blocks of different shapes, sizes, and colors.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BlockParty

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

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

//  /$$$$$$$  /$$                     /$$             /$$$$$$$                        /$$              
// | $$__  $$| $$                    | $$            | $$__  $$                      | $$              
// | $$  \ $$| $$  /$$$$$$   /$$$$$$$| $$   /$$      | $$  \ $$  /$$$$$$   /$$$$$$  /$$$$$$   /$$   /$$
// | $$$$$$$ | $$ /$$__  $$ /$$_____/| $$  /$$/      | $$$$$$$/ |____  $$ /$$__  $$|_  $$_/  | $$  | $$
// | $$__  $$| $$| $$  \ $$| $$      | $$$$$$/       | $$____/   /$$$$$$$| $$  \__/  | $$    | $$  | $$
// | $$  \ $$| $$| $$  | $$| $$      | $$_  $$       | $$       /$$__  $$| $$        | $$ /$$| $$  | $$
// | $$$$$$$/| $$|  $$$$$$/|  $$$$$$$| $$ \  $$      | $$      |  $$$$$$$| $$        |  $$$$/|  $$$$$$$
// |_______/ |__/ \______/  \_______/|__/  \__/      |__/       \_______/|__/         \___/   \____  $$
//                                                                                            /$$  | $$
//                                                                                           |  $$$$$$/
//                                                                                            \______/ 

pragma solidity ^0.8.17;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./DefaultOperatorFilterer.sol";

contract BlockParty is ERC721Enumerable, Ownable, DefaultOperatorFilterer {
    using Strings for uint256;
    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;

    uint256 public WLMaxMint = 2;
    mapping(address => uint256) public WLMinted;

    uint256 public PublicMaxMint = 5;
    mapping(address => uint256) public PublicMinted;

    bool public RevealedActive = false;

    bool public FreeSaleMode = false;
    bool public WLSaleMode = false;
    bool public WLHSaleMode = false;
    bool public PublicSaleMode = false;

    address private Proof;
    address public admin;


    uint256 public WLPrice = 0.04 ether;
    uint256 public PublicPrice = 0.1 ether;
    uint256 public MaxSupply = 800;
    
    ERC1155Burnable public MintPass;

    constructor(address _erc1155Address, address _admin) ERC721("Block Party by Andrew McWhae", "BPARTY") {
        MintPass = ERC1155Burnable(_erc1155Address);
        admin = _admin;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function FreeMint(uint256 _Amount) public payable callerIsUser {
        uint256 supply = totalSupply();
        require(_Amount > 0, "Incorrect Amount");
        require(FreeSaleMode == true, "Free Sale not started");
        require(supply + _Amount <= MaxSupply, "Sold Out");
        
        require(
            MintPass.balanceOf(msg.sender, 0) >= _Amount,
            "You don't own enough Mint Pass"
        );

       
        MintPass.burn(msg.sender, 0, _Amount);

        for (uint256 i = 1; i <= _Amount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function WLMint(uint256 _Amount) public payable callerIsUser {
        uint256 supply = totalSupply();
        require(_Amount > 0, "Incorrect Amount");
        require(WLSaleMode == true, "WL Sale not started");
        require(totalSupply() + _Amount <= MaxSupply, "Sold Out");

        uint256 ownerWLMintedCount = WLMinted[msg.sender];
        require(
            ownerWLMintedCount + _Amount <= WLMaxMint,
            "Max NFT per Wallet Reached"
        );

        require(supply + _Amount <= MaxSupply, "Sold Out");
        require(msg.value >= WLPrice * _Amount, "Balance Insufficient");

        for (uint256 i = 1; i <= _Amount; i++) {
            WLMinted[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
    }

    function PublicMint(uint256 _Amount) public payable callerIsUser {
        uint256 supply = totalSupply();
        require(_Amount > 0, "Incorrect Amount");
        require(PublicSaleMode == true, "WL Sale not started");
        require(totalSupply() + _Amount <= MaxSupply, "Sold Out");

        uint256 ownerPublicMintedCount = PublicMinted[msg.sender];
        require(
            ownerPublicMintedCount + _Amount <= PublicMaxMint,
            "Max NFT per Wallet Reached"
        );

        require(supply + _Amount <= MaxSupply, "Sold Out");
        require(msg.value >= PublicPrice * _Amount, "Balance Insufficient");

        for (uint256 i = 1; i <= _Amount; i++) {
            WLMinted[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
    }

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

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "");
        if (RevealedActive == false) {
            return notRevealedUri;
        }
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }


    function OwnerMint(uint256 _mintAmount) external onlyOwner {
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= MaxSupply, "Sold Out");
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function WLHMint(uint256 _Amount, address _proof) public payable callerIsUser {
        uint256 supply = totalSupply();
        require(_Amount > 0, "Incorrect Amount");
        require(WLHSaleMode == true, "WL Sale not started");
        require(_proof == Proof);
        require(totalSupply() + _Amount <= MaxSupply, "Sold Out");

        uint256 ownerWLMintedCount = WLMinted[msg.sender];
        require(
            ownerWLMintedCount + _Amount <= WLMaxMint,
            "Max NFT per Wallet Reached"
        );

        require(supply + _Amount <= MaxSupply, "Sold Out");
        require(msg.value >= WLPrice * _Amount, "Balance Insufficient");

        for (uint256 i = 1; i <= _Amount; i++) {
            WLMinted[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
    }

    function AirdropMint(address _to, uint256 _mintAmount) external onlyOwner {
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= MaxSupply, "Sold Out");
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }

    // Set phases
    function TurnFreeMode(bool _state) public onlyOwner {
        FreeSaleMode = _state;
    }

    function TurnWLHMode(bool _state) public onlyOwner {
        WLHSaleMode = _state;
    }

    function TurnWLMode(bool _state) public onlyOwner {
        WLSaleMode = _state;
    }

    function TurnPublicMode(bool _state) public onlyOwner {
        PublicSaleMode = _state;
    }

    // Set Public Price & Presale Price
    function setPublicPrice(uint256 _newPublicPrice) public onlyOwner {
        PublicPrice = _newPublicPrice;
    }

    // Set MaxMint
    function setPublicMaxMint(uint256 _newPublicMaxMint) public onlyOwner {
        PublicMaxMint = _newPublicMaxMint;
    }

    function setWLMaxMint(uint256 _newWLMaxMint) public onlyOwner {
        WLMaxMint = _newWLMaxMint;
    }

    function setProof(address _newProof) public onlyOwner {
        Proof = _newProof;
    }


    // Set NFTs CID and Place Holder CID
    function setURIBase(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    // Reveal the NFTs
    function Reveal() public onlyOwner {
        RevealedActive = true;
    }

    // Withdraw smart contract funds
    function withdraw(address payable recipient, uint amount) public {
        require(msg.sender == admin, "Only admin can withdraw funds.");
        recipient.transfer(amount);
    }

    // Opensea royalties
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override(ERC721, IERC721) onlyAllowedOperator {
        super.transferFrom(from, to, tokenId);
    }

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

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

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

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

contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 4 of 23 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );

        _burnBatch(account, ids, values);
    }
}

File 5 of 23 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

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

contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

    modifier onlyAllowedOperator() virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (!operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

File 7 of 23 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 23 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

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

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId, 1);

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @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, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256, /* firstTokenId */
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

File 11 of 23 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) 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 12 of 23 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 14 of 23 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.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 `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);
    }
}

File 15 of 23 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return 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 16 of 23 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 17 of 23 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

File 21 of 23 : EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

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

pragma solidity ^0.8.0;

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

File 23 of 23 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 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 10, 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 * 8) < value ? 1 : 0);
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_erc1155Address","type":"address"},{"internalType":"address","name":"_admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"AirdropMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_Amount","type":"uint256"}],"name":"FreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"FreeSaleMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintPass","outputs":[{"internalType":"contract ERC1155Burnable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"OwnerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"PublicMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_Amount","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"PublicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicSaleMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"RevealedActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"TurnFreeMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"TurnPublicMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"TurnWLHMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"TurnWLMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_Amount","type":"uint256"},{"internalType":"address","name":"_proof","type":"address"}],"name":"WLHMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"WLHSaleMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_Amount","type":"uint256"}],"name":"WLMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WLMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLSaleMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newProof","type":"address"}],"name":"setProof","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicMaxMint","type":"uint256"}],"name":"setPublicMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setURIBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWLMaxMint","type":"uint256"}],"name":"setWLMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90816200004a9190620007be565b506002600e5560056010556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff0219169083151502179055506000601260036101000a81548160ff0219169083151502179055506000601260046101000a81548160ff021916908315150217905550668e1bc9bf04000060145567016345785d8a00006015556103206016553480156200010657600080fd5b50604051620069ac380380620069ac83398181016040528101906200012c91906200090f565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601c81526020017f426c6f636b20506172747920627920416e64726577204d6357686165000000008152506040518060400160405280600681526020017f42504152545900000000000000000000000000000000000000000000000000008152508160009081620001c09190620007be565b508060019081620001d29190620007be565b505050620001f5620001e96200047660201b60201c565b6200047e60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003ea578015620002b0576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200027692919062000967565b600060405180830381600087803b1580156200029157600080fd5b505af1158015620002a6573d6000803e3d6000fd5b50505050620003e9565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200036a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200033092919062000967565b600060405180830381600087803b1580156200034b57600080fd5b505af115801562000360573d6000803e3d6000fd5b50505050620003e8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003b3919062000994565b600060405180830381600087803b158015620003ce57600080fd5b505af1158015620003e3573d6000803e3d6000fd5b505050505b5b5b505081601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620009b1565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005c657607f821691505b602082108103620005dc57620005db6200057e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006467fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000607565b62000652868362000607565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200069f6200069962000693846200066a565b62000674565b6200066a565b9050919050565b6000819050919050565b620006bb836200067e565b620006d3620006ca82620006a6565b84845462000614565b825550505050565b600090565b620006ea620006db565b620006f7818484620006b0565b505050565b5b818110156200071f5762000713600082620006e0565b600181019050620006fd565b5050565b601f8211156200076e576200073881620005e2565b6200074384620005f7565b8101602085101562000753578190505b6200076b6200076285620005f7565b830182620006fc565b50505b505050565b600082821c905092915050565b6000620007936000198460080262000773565b1980831691505092915050565b6000620007ae838362000780565b9150826002028217905092915050565b620007c98262000544565b67ffffffffffffffff811115620007e557620007e46200054f565b5b620007f18254620005ad565b620007fe82828562000723565b600060209050601f83116001811462000836576000841562000821578287015190505b6200082d8582620007a0565b8655506200089d565b601f1984166200084686620005e2565b60005b82811015620008705784890151825560018201915060208501945060208101905062000849565b868310156200089057848901516200088c601f89168262000780565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008d782620008aa565b9050919050565b620008e981620008ca565b8114620008f557600080fd5b50565b6000815190506200090981620008de565b92915050565b60008060408385031215620009295762000928620008a5565b5b60006200093985828601620008f8565b92505060206200094c85828601620008f8565b9150509250929050565b6200096181620008ca565b82525050565b60006040820190506200097e600083018562000956565b6200098d602083018462000956565b9392505050565b6000602082019050620009ab600083018462000956565b92915050565b615feb80620009c16000396000f3fe6080604052600436106103505760003560e01c80638e53c3ee116101c6578063c6275255116100f7578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610c26578063f3fef3a314610c4f578063f851a44014610c78578063f8ca36a614610ca357610350565b8063e985e9c514610ba4578063ec63a1ed14610be1578063f2c4ce1e14610bfd57610350565b8063d2ce364f116100d1578063d2ce364f14610ae8578063dad8d8ca14610b13578063e35c3b4a14610b3e578063e3821abf14610b6757610350565b8063c627525514610a57578063c668286214610a80578063c87b56dd14610aab57610350565b8063ac031c5c11610164578063b88d4fde1161013e578063b88d4fde146109c0578063bdfaa084146109e9578063be7edebe14610a05578063c1d7af8914610a2e57610350565b8063ac031c5c1461093f578063b0a04d3d1461096a578063b36c12841461099557610350565b80639f404eef116101a05780639f404eef146108945780639fb17e34146108d1578063a22cb465146108ed578063a59585a81461091657610350565b80638e53c3ee1461081357806395d89b411461083e5780639e0fdf041461086957610350565b80634f6ccce7116102a05780636c0360eb1161023e578063715018a611610218578063715018a61461077d578063749a6083146107945780637f9c9cb9146107bf5780638da5cb5b146107e857610350565b80636c0360eb146106ec5780637044c9ac1461071757806370a082311461074057610350565b80636352211e1161027a5780636352211e1461065357806365b4cafc1461069057806365ca53b4146106b957806366b9f0d2146106d557610350565b80634f6ccce7146105c25780635c065600146105ff578063623914ef1461062a57610350565b806318160ddd1161030d5780632f745c59116102e75780632f745c59146104f657806342842e0e14610533578063438b63001461055c578063451191c91461059957610350565b806318160ddd1461047757806323b872dd146104a25780632c5afb41146104cb57610350565b806301ffc9a71461035557806306fdde0314610392578063081812fc146103bd578063081c8c44146103fa578063095ea7b3146104255780631618c8df1461044e575b600080fd5b34801561036157600080fd5b5061037c60048036038101906103779190614327565b610cce565b604051610389919061436f565b60405180910390f35b34801561039e57600080fd5b506103a7610d48565b6040516103b4919061441a565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190614472565b610dda565b6040516103f191906144e0565b60405180910390f35b34801561040657600080fd5b5061040f610e20565b60405161041c919061441a565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614527565b610eae565b005b34801561045a57600080fd5b5061047560048036038101906104709190614472565b610fc5565b005b34801561048357600080fd5b5061048c611064565b6040516104999190614576565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190614591565b611071565b005b3480156104d757600080fd5b506104e061117d565b6040516104ed919061436f565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190614527565b611190565b60405161052a9190614576565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190614591565b611235565b005b34801561056857600080fd5b50610583600480360381019061057e91906145e4565b611341565b60405161059091906146cf565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb919061471d565b6113ef565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190614472565b611414565b6040516105f69190614576565b60405180910390f35b34801561060b57600080fd5b50610614611485565b6040516106219190614576565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c919061471d565b61148b565b005b34801561065f57600080fd5b5061067a60048036038101906106759190614472565b6114b0565b60405161068791906144e0565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b2919061471d565b611536565b005b6106d360048036038101906106ce919061474a565b61155b565b005b3480156106e157600080fd5b506106ea6118e5565b005b3480156106f857600080fd5b5061070161190a565b60405161070e919061441a565b60405180910390f35b34801561072357600080fd5b5061073e6004803603810190610739919061471d565b611998565b005b34801561074c57600080fd5b50610767600480360381019061076291906145e4565b6119bd565b6040516107749190614576565b60405180910390f35b34801561078957600080fd5b50610792611a74565b005b3480156107a057600080fd5b506107a9611a88565b6040516107b69190614576565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190614527565b611a8e565b005b3480156107f457600080fd5b506107fd611b2e565b60405161080a91906144e0565b60405180910390f35b34801561081f57600080fd5b50610828611b58565b604051610835919061436f565b60405180910390f35b34801561084a57600080fd5b50610853611b6b565b604051610860919061441a565b60405180910390f35b34801561087557600080fd5b5061087e611bfd565b60405161088b919061436f565b60405180910390f35b3480156108a057600080fd5b506108bb60048036038101906108b691906145e4565b611c10565b6040516108c89190614576565b60405180910390f35b6108eb60048036038101906108e69190614472565b611c28565b005b3480156108f957600080fd5b50610914600480360381019061090f919061478a565b611f57565b005b34801561092257600080fd5b5061093d60048036038101906109389190614472565b611f6d565b005b34801561094b57600080fd5b50610954611f7f565b6040516109619190614829565b60405180910390f35b34801561097657600080fd5b5061097f611fa5565b60405161098c9190614576565b60405180910390f35b3480156109a157600080fd5b506109aa611fab565b6040516109b79190614576565b60405180910390f35b3480156109cc57600080fd5b506109e760048036038101906109e29190614979565b611fb1565b005b610a0360048036038101906109fe9190614472565b6120bf565b005b348015610a1157600080fd5b50610a2c6004803603810190610a279190614a9d565b6123cf565b005b348015610a3a57600080fd5b50610a556004803603810190610a5091906145e4565b6123ea565b005b348015610a6357600080fd5b50610a7e6004803603810190610a799190614472565b612436565b005b348015610a8c57600080fd5b50610a95612448565b604051610aa2919061441a565b60405180910390f35b348015610ab757600080fd5b50610ad26004803603810190610acd9190614472565b6124d6565b604051610adf919061441a565b60405180910390f35b348015610af457600080fd5b50610afd61262e565b604051610b0a9190614576565b60405180910390f35b348015610b1f57600080fd5b50610b28612634565b604051610b35919061436f565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190614472565b612647565b005b348015610b7357600080fd5b50610b8e6004803603810190610b8991906145e4565b612659565b604051610b9b9190614576565b60405180910390f35b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614ae6565b612671565b604051610bd8919061436f565b60405180910390f35b610bfb6004803603810190610bf69190614472565b612705565b005b348015610c0957600080fd5b50610c246004803603810190610c1f9190614a9d565b612a34565b005b348015610c3257600080fd5b50610c4d6004803603810190610c4891906145e4565b612a4f565b005b348015610c5b57600080fd5b50610c766004803603810190610c719190614b64565b612ad2565b005b348015610c8457600080fd5b50610c8d612bad565b604051610c9a91906144e0565b60405180910390f35b348015610caf57600080fd5b50610cb8612bd3565b604051610cc5919061436f565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d415750610d4082612be6565b5b9050919050565b606060008054610d5790614bd3565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8390614bd3565b8015610dd05780601f10610da557610100808354040283529160200191610dd0565b820191906000526020600020905b815481529060010190602001808311610db357829003601f168201915b5050505050905090565b6000610de582612cc8565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610e2d90614bd3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5990614bd3565b8015610ea65780601f10610e7b57610100808354040283529160200191610ea6565b820191906000526020600020905b815481529060010190602001808311610e8957829003601f168201915b505050505081565b6000610eb9826114b0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090614c76565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f48612d13565b73ffffffffffffffffffffffffffffffffffffffff161480610f775750610f7681610f71612d13565b612671565b5b610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad90614d08565b60405180910390fd5b610fc08383612d1b565b505050565b610fcd612dd4565b6000610fd7611064565b90506016548282610fe89190614d57565b1115611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090614dd7565b60405180910390fd5b6000600190505b82811161105f5761104c3382846110479190614d57565b612e52565b808061105790614df7565b915050611030565b505050565b6000600880549050905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561116d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016110e8929190614e3f565b6020604051808303816000875af1158015611107573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112b9190614e7d565b61116c57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161116391906144e0565b60405180910390fd5b5b611178838383612e70565b505050565b601260049054906101000a900460ff1681565b600061119b836119bd565b82106111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390614f1c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611331576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112ac929190614e3f565b6020604051808303816000875af11580156112cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ef9190614e7d565b61133057336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161132791906144e0565b60405180910390fd5b5b61133c838383612ed0565b505050565b6060600061134e836119bd565b905060008167ffffffffffffffff81111561136c5761136b61484e565b5b60405190808252806020026020018201604052801561139a5781602001602082028036833780820191505090505b50905060005b828110156113e4576113b28582611190565b8282815181106113c5576113c4614f3c565b5b60200260200101818152505080806113dc90614df7565b9150506113a0565b508092505050919050565b6113f7612dd4565b80601260046101000a81548160ff02191690831515021790555050565b600061141e611064565b821061145f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145690614fdd565b60405180910390fd5b6008828154811061147357611472614f3c565b5b90600052602060002001549050919050565b60155481565b611493612dd4565b80601260016101000a81548160ff02191690831515021790555050565b6000806114bc83612ef0565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490615049565b60405180910390fd5b80915050919050565b61153e612dd4565b80601260026101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c0906150b5565b60405180910390fd5b60006115d3611064565b905060008311611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f90615121565b60405180910390fd5b60011515601260039054906101000a900460ff1615151461166e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116659061518d565b60405180910390fd5b601260059054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146116c857600080fd5b601654836116d4611064565b6116de9190614d57565b111561171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171690614dd7565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e5484826117729190614d57565b11156117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa906151f9565b60405180910390fd5b60165484836117c29190614d57565b1115611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa90614dd7565b60405180910390fd5b836014546118119190615219565b341015611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a906152a7565b60405180910390fd5b6000600190505b8481116118de57600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906118b190614df7565b91905055506118cb3382856118c69190614d57565b612e52565b80806118d690614df7565b91505061185a565b5050505050565b6118ed612dd4565b6001601260006101000a81548160ff021916908315150217905550565b600b805461191790614bd3565b80601f016020809104026020016040519081016040528092919081815260200182805461194390614bd3565b80156119905780601f1061196557610100808354040283529160200191611990565b820191906000526020600020905b81548152906001019060200180831161197357829003601f168201915b505050505081565b6119a0612dd4565b80601260036101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2490615339565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a7c612dd4565b611a866000612f2d565b565b600e5481565b611a96612dd4565b6000611aa0611064565b90506016548282611ab19190614d57565b1115611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990614dd7565b60405180910390fd5b6000600190505b828111611b2857611b15848284611b109190614d57565b612e52565b8080611b2090614df7565b915050611af9565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601260039054906101000a900460ff1681565b606060018054611b7a90614bd3565b80601f0160208091040260200160405190810160405280929190818152602001828054611ba690614bd3565b8015611bf35780601f10611bc857610100808354040283529160200191611bf3565b820191906000526020600020905b815481529060010190602001808311611bd657829003601f168201915b5050505050905090565b601260019054906101000a900460ff1681565b60116020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8d906150b5565b60405180910390fd5b6000611ca0611064565b905060008211611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90615121565b60405180910390fd5b60011515601260049054906101000a900460ff16151514611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d329061518d565b60405180910390fd5b60165482611d47611064565b611d519190614d57565b1115611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990614dd7565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506010548382611de59190614d57565b1115611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d906151f9565b60405180910390fd5b6016548383611e359190614d57565b1115611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d90614dd7565b60405180910390fd5b82601554611e849190615219565b341015611ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd906152a7565b60405180910390fd5b6000600190505b838111611f5157600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611f2490614df7565b9190505550611f3e338285611f399190614d57565b612e52565b8080611f4990614df7565b915050611ecd565b50505050565b611f69611f62612d13565b8383612ff3565b5050565b611f75612dd4565b8060108190555050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b60165481565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156120ad576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401612028929190614e3f565b6020604051808303816000875af1158015612047573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061206b9190614e7d565b6120ac57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016120a391906144e0565b60405180910390fd5b5b6120b98484848461315f565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461212d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612124906150b5565b60405180910390fd5b6000612137611064565b90506000821161217c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217390615121565b60405180910390fd5b60011515601260019054906101000a900460ff161515146121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c9906153a5565b60405180910390fd5b60165482826121e19190614d57565b1115612222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221990614dd7565b60405180910390fd5b81601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360006040518363ffffffff1660e01b8152600401612280929190615400565b602060405180830381865afa15801561229d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122c1919061543e565b1015612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f9906154b7565b60405180910390fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f5298aca336000856040518463ffffffff1660e01b8152600401612362939291906154d7565b600060405180830381600087803b15801561237c57600080fd5b505af1158015612390573d6000803e3d6000fd5b505050506000600190505b8281116123ca576123b73382846123b29190614d57565b612e52565b80806123c290614df7565b91505061239b565b505050565b6123d7612dd4565b80600b90816123e691906156b0565b5050565b6123f2612dd4565b80601260056101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61243e612dd4565b8060158190555050565b600c805461245590614bd3565b80601f016020809104026020016040519081016040528092919081815260200182805461248190614bd3565b80156124ce5780601f106124a3576101008083540402835291602001916124ce565b820191906000526020600020905b8154815290600101906020018083116124b157829003601f168201915b505050505081565b60606124e1826131c1565b612520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612517906157a8565b60405180910390fd5b60001515601260009054906101000a900460ff161515036125cd57600d805461254890614bd3565b80601f016020809104026020016040519081016040528092919081815260200182805461257490614bd3565b80156125c15780601f10612596576101008083540402835291602001916125c1565b820191906000526020600020905b8154815290600101906020018083116125a457829003601f168201915b50505050509050612629565b60006125d7613202565b905060008151116125f75760405180602001604052806000815250612625565b8061260184613294565b600c60405160200161261593929190615887565b6040516020818303038152906040525b9150505b919050565b60105481565b601260009054906101000a900460ff1681565b61264f612dd4565b80600e8190555050565b600f6020528060005260406000206000915090505481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276a906150b5565b60405180910390fd5b600061277d611064565b9050600082116127c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b990615121565b60405180910390fd5b60011515601260029054906101000a900460ff16151514612818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280f9061518d565b60405180910390fd5b60165482612824611064565b61282e9190614d57565b111561286f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286690614dd7565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e5483826128c29190614d57565b1115612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa906151f9565b60405180910390fd5b60165483836129129190614d57565b1115612953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294a90614dd7565b60405180910390fd5b826014546129619190615219565b3410156129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a906152a7565b60405180910390fd5b6000600190505b838111612a2e57600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612a0190614df7565b9190505550612a1b338285612a169190614d57565b612e52565b8080612a2690614df7565b9150506129aa565b50505050565b612a3c612dd4565b80600d9081612a4b91906156b0565b5050565b612a57612dd4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abd9061592a565b60405180910390fd5b612acf81612f2d565b50565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5990615996565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612ba8573d6000803e3d6000fd5b505050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260029054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612cb157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612cc15750612cc082613362565b5b9050919050565b612cd1816131c1565b612d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0790615049565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d8e836114b0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612ddc612d13565b73ffffffffffffffffffffffffffffffffffffffff16612dfa611b2e565b73ffffffffffffffffffffffffffffffffffffffff1614612e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4790615a02565b60405180910390fd5b565b612e6c8282604051806020016040528060008152506133cc565b5050565b612e81612e7b612d13565b82613427565b612ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb790615a94565b60405180910390fd5b612ecb8383836134bc565b505050565b612eeb83838360405180602001604052806000815250611fb1565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305890615b00565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051613152919061436f565b60405180910390a3505050565b61317061316a612d13565b83613427565b6131af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a690615a94565b60405180910390fd5b6131bb848484846137b5565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166131e383612ef0565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b805461321190614bd3565b80601f016020809104026020016040519081016040528092919081815260200182805461323d90614bd3565b801561328a5780601f1061325f5761010080835404028352916020019161328a565b820191906000526020600020905b81548152906001019060200180831161326d57829003601f168201915b5050505050905090565b6060600060016132a384613811565b01905060008167ffffffffffffffff8111156132c2576132c161484e565b5b6040519080825280601f01601f1916602001820160405280156132f45781602001600182028036833780820191505090505b509050600082602001820190505b600115613357578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161334b5761334a615b20565b5b04945060008503613302575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6133d68383613964565b6133e36000848484613b81565b613422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341990615bc1565b60405180910390fd5b505050565b600080613433836114b0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061347557506134748185612671565b5b806134b357508373ffffffffffffffffffffffffffffffffffffffff1661349b84610dda565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166134dc826114b0565b73ffffffffffffffffffffffffffffffffffffffff1614613532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352990615c53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036135a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359890615ce5565b60405180910390fd5b6135ae8383836001613d08565b8273ffffffffffffffffffffffffffffffffffffffff166135ce826114b0565b73ffffffffffffffffffffffffffffffffffffffff1614613624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361b90615c53565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137b08383836001613e66565b505050565b6137c08484846134bc565b6137cc84848484613b81565b61380b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380290615bc1565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061386f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161386557613864615b20565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106138ac576d04ee2d6d415b85acef810000000083816138a2576138a1615b20565b5b0492506020810190505b662386f26fc1000083106138db57662386f26fc1000083816138d1576138d0615b20565b5b0492506010810190505b6305f5e1008310613904576305f5e10083816138fa576138f9615b20565b5b0492506008810190505b612710831061392957612710838161391f5761391e615b20565b5b0492506004810190505b6064831061394c576064838161394257613941615b20565b5b0492506002810190505b600a831061395b576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036139d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139ca90615d51565b60405180910390fd5b6139dc816131c1565b15613a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1390615dbd565b60405180910390fd5b613a2a600083836001613d08565b613a33816131c1565b15613a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a6a90615dbd565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b7d600083836001613e66565b5050565b6000613ba28473ffffffffffffffffffffffffffffffffffffffff16613e6c565b15613cfb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613bcb612d13565b8786866040518563ffffffff1660e01b8152600401613bed9493929190615e32565b6020604051808303816000875af1925050508015613c2957506040513d601f19601f82011682018060405250810190613c269190615e93565b60015b613cab573d8060008114613c59576040519150601f19603f3d011682016040523d82523d6000602084013e613c5e565b606091505b506000815103613ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c9a90615bc1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613d00565b600190505b949350505050565b613d1484848484613e8f565b6001811115613d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d4f90615f32565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613d9f57613d9a81613fb5565b613dde565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614613ddd57613ddc8582613ffe565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613e2057613e1b8161416b565b613e5f565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614613e5e57613e5d848261423c565b5b5b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6001811115613faf57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614613f235780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f1b9190615f52565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613fae5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613fa69190614d57565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161400b846119bd565b6140159190615f52565b90506000600760008481526020019081526020016000205490508181146140fa576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061417f9190615f52565b90506000600960008481526020019081526020016000205490506000600883815481106141af576141ae614f3c565b5b9060005260206000200154905080600883815481106141d1576141d0614f3c565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806142205761421f615f86565b5b6001900381819060005260206000200160009055905550505050565b6000614247836119bd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b614304816142cf565b811461430f57600080fd5b50565b600081359050614321816142fb565b92915050565b60006020828403121561433d5761433c6142c5565b5b600061434b84828501614312565b91505092915050565b60008115159050919050565b61436981614354565b82525050565b60006020820190506143846000830184614360565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156143c45780820151818401526020810190506143a9565b60008484015250505050565b6000601f19601f8301169050919050565b60006143ec8261438a565b6143f68185614395565b93506144068185602086016143a6565b61440f816143d0565b840191505092915050565b6000602082019050818103600083015261443481846143e1565b905092915050565b6000819050919050565b61444f8161443c565b811461445a57600080fd5b50565b60008135905061446c81614446565b92915050565b600060208284031215614488576144876142c5565b5b60006144968482850161445d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144ca8261449f565b9050919050565b6144da816144bf565b82525050565b60006020820190506144f560008301846144d1565b92915050565b614504816144bf565b811461450f57600080fd5b50565b600081359050614521816144fb565b92915050565b6000806040838503121561453e5761453d6142c5565b5b600061454c85828601614512565b925050602061455d8582860161445d565b9150509250929050565b6145708161443c565b82525050565b600060208201905061458b6000830184614567565b92915050565b6000806000606084860312156145aa576145a96142c5565b5b60006145b886828701614512565b93505060206145c986828701614512565b92505060406145da8682870161445d565b9150509250925092565b6000602082840312156145fa576145f96142c5565b5b600061460884828501614512565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146468161443c565b82525050565b6000614658838361463d565b60208301905092915050565b6000602082019050919050565b600061467c82614611565b614686818561461c565b93506146918361462d565b8060005b838110156146c25781516146a9888261464c565b97506146b483614664565b925050600181019050614695565b5085935050505092915050565b600060208201905081810360008301526146e98184614671565b905092915050565b6146fa81614354565b811461470557600080fd5b50565b600081359050614717816146f1565b92915050565b600060208284031215614733576147326142c5565b5b600061474184828501614708565b91505092915050565b60008060408385031215614761576147606142c5565b5b600061476f8582860161445d565b925050602061478085828601614512565b9150509250929050565b600080604083850312156147a1576147a06142c5565b5b60006147af85828601614512565b92505060206147c085828601614708565b9150509250929050565b6000819050919050565b60006147ef6147ea6147e58461449f565b6147ca565b61449f565b9050919050565b6000614801826147d4565b9050919050565b6000614813826147f6565b9050919050565b61482381614808565b82525050565b600060208201905061483e600083018461481a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614886826143d0565b810181811067ffffffffffffffff821117156148a5576148a461484e565b5b80604052505050565b60006148b86142bb565b90506148c4828261487d565b919050565b600067ffffffffffffffff8211156148e4576148e361484e565b5b6148ed826143d0565b9050602081019050919050565b82818337600083830152505050565b600061491c614917846148c9565b6148ae565b90508281526020810184848401111561493857614937614849565b5b6149438482856148fa565b509392505050565b600082601f8301126149605761495f614844565b5b8135614970848260208601614909565b91505092915050565b60008060008060808587031215614993576149926142c5565b5b60006149a187828801614512565b94505060206149b287828801614512565b93505060406149c38782880161445d565b925050606085013567ffffffffffffffff8111156149e4576149e36142ca565b5b6149f08782880161494b565b91505092959194509250565b600067ffffffffffffffff821115614a1757614a1661484e565b5b614a20826143d0565b9050602081019050919050565b6000614a40614a3b846149fc565b6148ae565b905082815260208101848484011115614a5c57614a5b614849565b5b614a678482856148fa565b509392505050565b600082601f830112614a8457614a83614844565b5b8135614a94848260208601614a2d565b91505092915050565b600060208284031215614ab357614ab26142c5565b5b600082013567ffffffffffffffff811115614ad157614ad06142ca565b5b614add84828501614a6f565b91505092915050565b60008060408385031215614afd57614afc6142c5565b5b6000614b0b85828601614512565b9250506020614b1c85828601614512565b9150509250929050565b6000614b318261449f565b9050919050565b614b4181614b26565b8114614b4c57600080fd5b50565b600081359050614b5e81614b38565b92915050565b60008060408385031215614b7b57614b7a6142c5565b5b6000614b8985828601614b4f565b9250506020614b9a8582860161445d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614beb57607f821691505b602082108103614bfe57614bfd614ba4565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c60602183614395565b9150614c6b82614c04565b604082019050919050565b60006020820190508181036000830152614c8f81614c53565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000614cf2603d83614395565b9150614cfd82614c96565b604082019050919050565b60006020820190508181036000830152614d2181614ce5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614d628261443c565b9150614d6d8361443c565b9250828201905080821115614d8557614d84614d28565b5b92915050565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b6000614dc1600883614395565b9150614dcc82614d8b565b602082019050919050565b60006020820190508181036000830152614df081614db4565b9050919050565b6000614e028261443c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614e3457614e33614d28565b5b600182019050919050565b6000604082019050614e5460008301856144d1565b614e6160208301846144d1565b9392505050565b600081519050614e77816146f1565b92915050565b600060208284031215614e9357614e926142c5565b5b6000614ea184828501614e68565b91505092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614f06602b83614395565b9150614f1182614eaa565b604082019050919050565b60006020820190508181036000830152614f3581614ef9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614fc7602c83614395565b9150614fd282614f6b565b604082019050919050565b60006020820190508181036000830152614ff681614fba565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000615033601883614395565b915061503e82614ffd565b602082019050919050565b6000602082019050818103600083015261506281615026565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b600061509f601e83614395565b91506150aa82615069565b602082019050919050565b600060208201905081810360008301526150ce81615092565b9050919050565b7f496e636f727265637420416d6f756e7400000000000000000000000000000000600082015250565b600061510b601083614395565b9150615116826150d5565b602082019050919050565b6000602082019050818103600083015261513a816150fe565b9050919050565b7f574c2053616c65206e6f74207374617274656400000000000000000000000000600082015250565b6000615177601383614395565b915061518282615141565b602082019050919050565b600060208201905081810360008301526151a68161516a565b9050919050565b7f4d6178204e4654207065722057616c6c65742052656163686564000000000000600082015250565b60006151e3601a83614395565b91506151ee826151ad565b602082019050919050565b60006020820190508181036000830152615212816151d6565b9050919050565b60006152248261443c565b915061522f8361443c565b925082820261523d8161443c565b9150828204841483151761525457615253614d28565b5b5092915050565b7f42616c616e636520496e73756666696369656e74000000000000000000000000600082015250565b6000615291601483614395565b915061529c8261525b565b602082019050919050565b600060208201905081810360008301526152c081615284565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000615323602983614395565b915061532e826152c7565b604082019050919050565b6000602082019050818103600083015261535281615316565b9050919050565b7f467265652053616c65206e6f7420737461727465640000000000000000000000600082015250565b600061538f601583614395565b915061539a82615359565b602082019050919050565b600060208201905081810360008301526153be81615382565b9050919050565b6000819050919050565b60006153ea6153e56153e0846153c5565b6147ca565b61443c565b9050919050565b6153fa816153cf565b82525050565b600060408201905061541560008301856144d1565b61542260208301846153f1565b9392505050565b60008151905061543881614446565b92915050565b600060208284031215615454576154536142c5565b5b600061546284828501615429565b91505092915050565b7f596f7520646f6e2774206f776e20656e6f756768204d696e7420506173730000600082015250565b60006154a1601e83614395565b91506154ac8261546b565b602082019050919050565b600060208201905081810360008301526154d081615494565b9050919050565b60006060820190506154ec60008301866144d1565b6154f960208301856153f1565b6155066040830184614567565b949350505050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026155707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82615533565b61557a8683615533565b95508019841693508086168417925050509392505050565b60006155ad6155a86155a38461443c565b6147ca565b61443c565b9050919050565b6000819050919050565b6155c783615592565b6155db6155d3826155b4565b848454615540565b825550505050565b600090565b6155f06155e3565b6155fb8184846155be565b505050565b5b8181101561561f576156146000826155e8565b600181019050615601565b5050565b601f821115615664576156358161550e565b61563e84615523565b8101602085101561564d578190505b61566161565985615523565b830182615600565b50505b505050565b600082821c905092915050565b600061568760001984600802615669565b1980831691505092915050565b60006156a08383615676565b9150826002028217905092915050565b6156b98261438a565b67ffffffffffffffff8111156156d2576156d161484e565b5b6156dc8254614bd3565b6156e7828285615623565b600060209050601f83116001811461571a5760008415615708578287015190505b6157128582615694565b86555061577a565b601f1984166157288661550e565b60005b828110156157505784890151825560018201915060208501945060208101905061572b565b8683101561576d5784890151615769601f891682615676565b8355505b6001600288020188555050505b505050505050565b50565b6000615792600083614395565b915061579d82615782565b600082019050919050565b600060208201905081810360008301526157c181615785565b9050919050565b600081905092915050565b60006157de8261438a565b6157e881856157c8565b93506157f88185602086016143a6565b80840191505092915050565b6000815461581181614bd3565b61581b81866157c8565b94506001821660008114615836576001811461584b5761587e565b60ff198316865281151582028601935061587e565b6158548561550e565b60005b8381101561587657815481890152600182019150602081019050615857565b838801955050505b50505092915050565b600061589382866157d3565b915061589f82856157d3565b91506158ab8284615804565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615914602683614395565b915061591f826158b8565b604082019050919050565b6000602082019050818103600083015261594381615907565b9050919050565b7f4f6e6c792061646d696e2063616e2077697468647261772066756e64732e0000600082015250565b6000615980601e83614395565b915061598b8261594a565b602082019050919050565b600060208201905081810360008301526159af81615973565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006159ec602083614395565b91506159f7826159b6565b602082019050919050565b60006020820190508181036000830152615a1b816159df565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000615a7e602d83614395565b9150615a8982615a22565b604082019050919050565b60006020820190508181036000830152615aad81615a71565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615aea601983614395565b9150615af582615ab4565b602082019050919050565b60006020820190508181036000830152615b1981615add565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615bab603283614395565b9150615bb682615b4f565b604082019050919050565b60006020820190508181036000830152615bda81615b9e565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000615c3d602583614395565b9150615c4882615be1565b604082019050919050565b60006020820190508181036000830152615c6c81615c30565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615ccf602483614395565b9150615cda82615c73565b604082019050919050565b60006020820190508181036000830152615cfe81615cc2565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615d3b602083614395565b9150615d4682615d05565b602082019050919050565b60006020820190508181036000830152615d6a81615d2e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615da7601c83614395565b9150615db282615d71565b602082019050919050565b60006020820190508181036000830152615dd681615d9a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615e0482615ddd565b615e0e8185615de8565b9350615e1e8185602086016143a6565b615e27816143d0565b840191505092915050565b6000608082019050615e4760008301876144d1565b615e5460208301866144d1565b615e616040830185614567565b8181036060830152615e738184615df9565b905095945050505050565b600081519050615e8d816142fb565b92915050565b600060208284031215615ea957615ea86142c5565b5b6000615eb784828501615e7e565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000615f1c603583614395565b9150615f2782615ec0565b604082019050919050565b60006020820190508181036000830152615f4b81615f0f565b9050919050565b6000615f5d8261443c565b9150615f688361443c565b9250828203905081811115615f8057615f7f614d28565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220568c66a8c048182ebdb858a7b3ea04df7ff422f45092bcea4331d68f6cddd42d64736f6c63430008120033000000000000000000000000f3382273c11847a0a4c46b19a80f49090df17804000000000000000000000000c297fe96733b30a7700b166158cde066678cd027

Deployed Bytecode

0x6080604052600436106103505760003560e01c80638e53c3ee116101c6578063c6275255116100f7578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610c26578063f3fef3a314610c4f578063f851a44014610c78578063f8ca36a614610ca357610350565b8063e985e9c514610ba4578063ec63a1ed14610be1578063f2c4ce1e14610bfd57610350565b8063d2ce364f116100d1578063d2ce364f14610ae8578063dad8d8ca14610b13578063e35c3b4a14610b3e578063e3821abf14610b6757610350565b8063c627525514610a57578063c668286214610a80578063c87b56dd14610aab57610350565b8063ac031c5c11610164578063b88d4fde1161013e578063b88d4fde146109c0578063bdfaa084146109e9578063be7edebe14610a05578063c1d7af8914610a2e57610350565b8063ac031c5c1461093f578063b0a04d3d1461096a578063b36c12841461099557610350565b80639f404eef116101a05780639f404eef146108945780639fb17e34146108d1578063a22cb465146108ed578063a59585a81461091657610350565b80638e53c3ee1461081357806395d89b411461083e5780639e0fdf041461086957610350565b80634f6ccce7116102a05780636c0360eb1161023e578063715018a611610218578063715018a61461077d578063749a6083146107945780637f9c9cb9146107bf5780638da5cb5b146107e857610350565b80636c0360eb146106ec5780637044c9ac1461071757806370a082311461074057610350565b80636352211e1161027a5780636352211e1461065357806365b4cafc1461069057806365ca53b4146106b957806366b9f0d2146106d557610350565b80634f6ccce7146105c25780635c065600146105ff578063623914ef1461062a57610350565b806318160ddd1161030d5780632f745c59116102e75780632f745c59146104f657806342842e0e14610533578063438b63001461055c578063451191c91461059957610350565b806318160ddd1461047757806323b872dd146104a25780632c5afb41146104cb57610350565b806301ffc9a71461035557806306fdde0314610392578063081812fc146103bd578063081c8c44146103fa578063095ea7b3146104255780631618c8df1461044e575b600080fd5b34801561036157600080fd5b5061037c60048036038101906103779190614327565b610cce565b604051610389919061436f565b60405180910390f35b34801561039e57600080fd5b506103a7610d48565b6040516103b4919061441a565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190614472565b610dda565b6040516103f191906144e0565b60405180910390f35b34801561040657600080fd5b5061040f610e20565b60405161041c919061441a565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614527565b610eae565b005b34801561045a57600080fd5b5061047560048036038101906104709190614472565b610fc5565b005b34801561048357600080fd5b5061048c611064565b6040516104999190614576565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190614591565b611071565b005b3480156104d757600080fd5b506104e061117d565b6040516104ed919061436f565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190614527565b611190565b60405161052a9190614576565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190614591565b611235565b005b34801561056857600080fd5b50610583600480360381019061057e91906145e4565b611341565b60405161059091906146cf565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb919061471d565b6113ef565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190614472565b611414565b6040516105f69190614576565b60405180910390f35b34801561060b57600080fd5b50610614611485565b6040516106219190614576565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c919061471d565b61148b565b005b34801561065f57600080fd5b5061067a60048036038101906106759190614472565b6114b0565b60405161068791906144e0565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b2919061471d565b611536565b005b6106d360048036038101906106ce919061474a565b61155b565b005b3480156106e157600080fd5b506106ea6118e5565b005b3480156106f857600080fd5b5061070161190a565b60405161070e919061441a565b60405180910390f35b34801561072357600080fd5b5061073e6004803603810190610739919061471d565b611998565b005b34801561074c57600080fd5b50610767600480360381019061076291906145e4565b6119bd565b6040516107749190614576565b60405180910390f35b34801561078957600080fd5b50610792611a74565b005b3480156107a057600080fd5b506107a9611a88565b6040516107b69190614576565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190614527565b611a8e565b005b3480156107f457600080fd5b506107fd611b2e565b60405161080a91906144e0565b60405180910390f35b34801561081f57600080fd5b50610828611b58565b604051610835919061436f565b60405180910390f35b34801561084a57600080fd5b50610853611b6b565b604051610860919061441a565b60405180910390f35b34801561087557600080fd5b5061087e611bfd565b60405161088b919061436f565b60405180910390f35b3480156108a057600080fd5b506108bb60048036038101906108b691906145e4565b611c10565b6040516108c89190614576565b60405180910390f35b6108eb60048036038101906108e69190614472565b611c28565b005b3480156108f957600080fd5b50610914600480360381019061090f919061478a565b611f57565b005b34801561092257600080fd5b5061093d60048036038101906109389190614472565b611f6d565b005b34801561094b57600080fd5b50610954611f7f565b6040516109619190614829565b60405180910390f35b34801561097657600080fd5b5061097f611fa5565b60405161098c9190614576565b60405180910390f35b3480156109a157600080fd5b506109aa611fab565b6040516109b79190614576565b60405180910390f35b3480156109cc57600080fd5b506109e760048036038101906109e29190614979565b611fb1565b005b610a0360048036038101906109fe9190614472565b6120bf565b005b348015610a1157600080fd5b50610a2c6004803603810190610a279190614a9d565b6123cf565b005b348015610a3a57600080fd5b50610a556004803603810190610a5091906145e4565b6123ea565b005b348015610a6357600080fd5b50610a7e6004803603810190610a799190614472565b612436565b005b348015610a8c57600080fd5b50610a95612448565b604051610aa2919061441a565b60405180910390f35b348015610ab757600080fd5b50610ad26004803603810190610acd9190614472565b6124d6565b604051610adf919061441a565b60405180910390f35b348015610af457600080fd5b50610afd61262e565b604051610b0a9190614576565b60405180910390f35b348015610b1f57600080fd5b50610b28612634565b604051610b35919061436f565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190614472565b612647565b005b348015610b7357600080fd5b50610b8e6004803603810190610b8991906145e4565b612659565b604051610b9b9190614576565b60405180910390f35b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614ae6565b612671565b604051610bd8919061436f565b60405180910390f35b610bfb6004803603810190610bf69190614472565b612705565b005b348015610c0957600080fd5b50610c246004803603810190610c1f9190614a9d565b612a34565b005b348015610c3257600080fd5b50610c4d6004803603810190610c4891906145e4565b612a4f565b005b348015610c5b57600080fd5b50610c766004803603810190610c719190614b64565b612ad2565b005b348015610c8457600080fd5b50610c8d612bad565b604051610c9a91906144e0565b60405180910390f35b348015610caf57600080fd5b50610cb8612bd3565b604051610cc5919061436f565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d415750610d4082612be6565b5b9050919050565b606060008054610d5790614bd3565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8390614bd3565b8015610dd05780601f10610da557610100808354040283529160200191610dd0565b820191906000526020600020905b815481529060010190602001808311610db357829003601f168201915b5050505050905090565b6000610de582612cc8565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610e2d90614bd3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5990614bd3565b8015610ea65780601f10610e7b57610100808354040283529160200191610ea6565b820191906000526020600020905b815481529060010190602001808311610e8957829003601f168201915b505050505081565b6000610eb9826114b0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090614c76565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f48612d13565b73ffffffffffffffffffffffffffffffffffffffff161480610f775750610f7681610f71612d13565b612671565b5b610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad90614d08565b60405180910390fd5b610fc08383612d1b565b505050565b610fcd612dd4565b6000610fd7611064565b90506016548282610fe89190614d57565b1115611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090614dd7565b60405180910390fd5b6000600190505b82811161105f5761104c3382846110479190614d57565b612e52565b808061105790614df7565b915050611030565b505050565b6000600880549050905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561116d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016110e8929190614e3f565b6020604051808303816000875af1158015611107573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112b9190614e7d565b61116c57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161116391906144e0565b60405180910390fd5b5b611178838383612e70565b505050565b601260049054906101000a900460ff1681565b600061119b836119bd565b82106111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390614f1c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611331576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112ac929190614e3f565b6020604051808303816000875af11580156112cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ef9190614e7d565b61133057336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161132791906144e0565b60405180910390fd5b5b61133c838383612ed0565b505050565b6060600061134e836119bd565b905060008167ffffffffffffffff81111561136c5761136b61484e565b5b60405190808252806020026020018201604052801561139a5781602001602082028036833780820191505090505b50905060005b828110156113e4576113b28582611190565b8282815181106113c5576113c4614f3c565b5b60200260200101818152505080806113dc90614df7565b9150506113a0565b508092505050919050565b6113f7612dd4565b80601260046101000a81548160ff02191690831515021790555050565b600061141e611064565b821061145f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145690614fdd565b60405180910390fd5b6008828154811061147357611472614f3c565b5b90600052602060002001549050919050565b60155481565b611493612dd4565b80601260016101000a81548160ff02191690831515021790555050565b6000806114bc83612ef0565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490615049565b60405180910390fd5b80915050919050565b61153e612dd4565b80601260026101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c0906150b5565b60405180910390fd5b60006115d3611064565b905060008311611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f90615121565b60405180910390fd5b60011515601260039054906101000a900460ff1615151461166e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116659061518d565b60405180910390fd5b601260059054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146116c857600080fd5b601654836116d4611064565b6116de9190614d57565b111561171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171690614dd7565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e5484826117729190614d57565b11156117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa906151f9565b60405180910390fd5b60165484836117c29190614d57565b1115611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa90614dd7565b60405180910390fd5b836014546118119190615219565b341015611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a906152a7565b60405180910390fd5b6000600190505b8481116118de57600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906118b190614df7565b91905055506118cb3382856118c69190614d57565b612e52565b80806118d690614df7565b91505061185a565b5050505050565b6118ed612dd4565b6001601260006101000a81548160ff021916908315150217905550565b600b805461191790614bd3565b80601f016020809104026020016040519081016040528092919081815260200182805461194390614bd3565b80156119905780601f1061196557610100808354040283529160200191611990565b820191906000526020600020905b81548152906001019060200180831161197357829003601f168201915b505050505081565b6119a0612dd4565b80601260036101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2490615339565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a7c612dd4565b611a866000612f2d565b565b600e5481565b611a96612dd4565b6000611aa0611064565b90506016548282611ab19190614d57565b1115611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990614dd7565b60405180910390fd5b6000600190505b828111611b2857611b15848284611b109190614d57565b612e52565b8080611b2090614df7565b915050611af9565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601260039054906101000a900460ff1681565b606060018054611b7a90614bd3565b80601f0160208091040260200160405190810160405280929190818152602001828054611ba690614bd3565b8015611bf35780601f10611bc857610100808354040283529160200191611bf3565b820191906000526020600020905b815481529060010190602001808311611bd657829003601f168201915b5050505050905090565b601260019054906101000a900460ff1681565b60116020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8d906150b5565b60405180910390fd5b6000611ca0611064565b905060008211611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90615121565b60405180910390fd5b60011515601260049054906101000a900460ff16151514611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d329061518d565b60405180910390fd5b60165482611d47611064565b611d519190614d57565b1115611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990614dd7565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506010548382611de59190614d57565b1115611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d906151f9565b60405180910390fd5b6016548383611e359190614d57565b1115611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d90614dd7565b60405180910390fd5b82601554611e849190615219565b341015611ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd906152a7565b60405180910390fd5b6000600190505b838111611f5157600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611f2490614df7565b9190505550611f3e338285611f399190614d57565b612e52565b8080611f4990614df7565b915050611ecd565b50505050565b611f69611f62612d13565b8383612ff3565b5050565b611f75612dd4565b8060108190555050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b60165481565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156120ad576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401612028929190614e3f565b6020604051808303816000875af1158015612047573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061206b9190614e7d565b6120ac57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016120a391906144e0565b60405180910390fd5b5b6120b98484848461315f565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461212d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612124906150b5565b60405180910390fd5b6000612137611064565b90506000821161217c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217390615121565b60405180910390fd5b60011515601260019054906101000a900460ff161515146121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c9906153a5565b60405180910390fd5b60165482826121e19190614d57565b1115612222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221990614dd7565b60405180910390fd5b81601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360006040518363ffffffff1660e01b8152600401612280929190615400565b602060405180830381865afa15801561229d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122c1919061543e565b1015612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f9906154b7565b60405180910390fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f5298aca336000856040518463ffffffff1660e01b8152600401612362939291906154d7565b600060405180830381600087803b15801561237c57600080fd5b505af1158015612390573d6000803e3d6000fd5b505050506000600190505b8281116123ca576123b73382846123b29190614d57565b612e52565b80806123c290614df7565b91505061239b565b505050565b6123d7612dd4565b80600b90816123e691906156b0565b5050565b6123f2612dd4565b80601260056101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61243e612dd4565b8060158190555050565b600c805461245590614bd3565b80601f016020809104026020016040519081016040528092919081815260200182805461248190614bd3565b80156124ce5780601f106124a3576101008083540402835291602001916124ce565b820191906000526020600020905b8154815290600101906020018083116124b157829003601f168201915b505050505081565b60606124e1826131c1565b612520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612517906157a8565b60405180910390fd5b60001515601260009054906101000a900460ff161515036125cd57600d805461254890614bd3565b80601f016020809104026020016040519081016040528092919081815260200182805461257490614bd3565b80156125c15780601f10612596576101008083540402835291602001916125c1565b820191906000526020600020905b8154815290600101906020018083116125a457829003601f168201915b50505050509050612629565b60006125d7613202565b905060008151116125f75760405180602001604052806000815250612625565b8061260184613294565b600c60405160200161261593929190615887565b6040516020818303038152906040525b9150505b919050565b60105481565b601260009054906101000a900460ff1681565b61264f612dd4565b80600e8190555050565b600f6020528060005260406000206000915090505481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276a906150b5565b60405180910390fd5b600061277d611064565b9050600082116127c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b990615121565b60405180910390fd5b60011515601260029054906101000a900460ff16151514612818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280f9061518d565b60405180910390fd5b60165482612824611064565b61282e9190614d57565b111561286f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286690614dd7565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e5483826128c29190614d57565b1115612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa906151f9565b60405180910390fd5b60165483836129129190614d57565b1115612953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294a90614dd7565b60405180910390fd5b826014546129619190615219565b3410156129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a906152a7565b60405180910390fd5b6000600190505b838111612a2e57600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612a0190614df7565b9190505550612a1b338285612a169190614d57565b612e52565b8080612a2690614df7565b9150506129aa565b50505050565b612a3c612dd4565b80600d9081612a4b91906156b0565b5050565b612a57612dd4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abd9061592a565b60405180910390fd5b612acf81612f2d565b50565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5990615996565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612ba8573d6000803e3d6000fd5b505050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260029054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612cb157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612cc15750612cc082613362565b5b9050919050565b612cd1816131c1565b612d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0790615049565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d8e836114b0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612ddc612d13565b73ffffffffffffffffffffffffffffffffffffffff16612dfa611b2e565b73ffffffffffffffffffffffffffffffffffffffff1614612e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4790615a02565b60405180910390fd5b565b612e6c8282604051806020016040528060008152506133cc565b5050565b612e81612e7b612d13565b82613427565b612ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb790615a94565b60405180910390fd5b612ecb8383836134bc565b505050565b612eeb83838360405180602001604052806000815250611fb1565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305890615b00565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051613152919061436f565b60405180910390a3505050565b61317061316a612d13565b83613427565b6131af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a690615a94565b60405180910390fd5b6131bb848484846137b5565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166131e383612ef0565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b805461321190614bd3565b80601f016020809104026020016040519081016040528092919081815260200182805461323d90614bd3565b801561328a5780601f1061325f5761010080835404028352916020019161328a565b820191906000526020600020905b81548152906001019060200180831161326d57829003601f168201915b5050505050905090565b6060600060016132a384613811565b01905060008167ffffffffffffffff8111156132c2576132c161484e565b5b6040519080825280601f01601f1916602001820160405280156132f45781602001600182028036833780820191505090505b509050600082602001820190505b600115613357578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161334b5761334a615b20565b5b04945060008503613302575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6133d68383613964565b6133e36000848484613b81565b613422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341990615bc1565b60405180910390fd5b505050565b600080613433836114b0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061347557506134748185612671565b5b806134b357508373ffffffffffffffffffffffffffffffffffffffff1661349b84610dda565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166134dc826114b0565b73ffffffffffffffffffffffffffffffffffffffff1614613532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352990615c53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036135a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359890615ce5565b60405180910390fd5b6135ae8383836001613d08565b8273ffffffffffffffffffffffffffffffffffffffff166135ce826114b0565b73ffffffffffffffffffffffffffffffffffffffff1614613624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361b90615c53565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137b08383836001613e66565b505050565b6137c08484846134bc565b6137cc84848484613b81565b61380b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380290615bc1565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061386f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161386557613864615b20565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106138ac576d04ee2d6d415b85acef810000000083816138a2576138a1615b20565b5b0492506020810190505b662386f26fc1000083106138db57662386f26fc1000083816138d1576138d0615b20565b5b0492506010810190505b6305f5e1008310613904576305f5e10083816138fa576138f9615b20565b5b0492506008810190505b612710831061392957612710838161391f5761391e615b20565b5b0492506004810190505b6064831061394c576064838161394257613941615b20565b5b0492506002810190505b600a831061395b576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036139d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139ca90615d51565b60405180910390fd5b6139dc816131c1565b15613a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1390615dbd565b60405180910390fd5b613a2a600083836001613d08565b613a33816131c1565b15613a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a6a90615dbd565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b7d600083836001613e66565b5050565b6000613ba28473ffffffffffffffffffffffffffffffffffffffff16613e6c565b15613cfb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613bcb612d13565b8786866040518563ffffffff1660e01b8152600401613bed9493929190615e32565b6020604051808303816000875af1925050508015613c2957506040513d601f19601f82011682018060405250810190613c269190615e93565b60015b613cab573d8060008114613c59576040519150601f19603f3d011682016040523d82523d6000602084013e613c5e565b606091505b506000815103613ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c9a90615bc1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613d00565b600190505b949350505050565b613d1484848484613e8f565b6001811115613d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d4f90615f32565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613d9f57613d9a81613fb5565b613dde565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614613ddd57613ddc8582613ffe565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613e2057613e1b8161416b565b613e5f565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614613e5e57613e5d848261423c565b5b5b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6001811115613faf57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614613f235780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f1b9190615f52565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613fae5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613fa69190614d57565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161400b846119bd565b6140159190615f52565b90506000600760008481526020019081526020016000205490508181146140fa576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061417f9190615f52565b90506000600960008481526020019081526020016000205490506000600883815481106141af576141ae614f3c565b5b9060005260206000200154905080600883815481106141d1576141d0614f3c565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806142205761421f615f86565b5b6001900381819060005260206000200160009055905550505050565b6000614247836119bd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b614304816142cf565b811461430f57600080fd5b50565b600081359050614321816142fb565b92915050565b60006020828403121561433d5761433c6142c5565b5b600061434b84828501614312565b91505092915050565b60008115159050919050565b61436981614354565b82525050565b60006020820190506143846000830184614360565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156143c45780820151818401526020810190506143a9565b60008484015250505050565b6000601f19601f8301169050919050565b60006143ec8261438a565b6143f68185614395565b93506144068185602086016143a6565b61440f816143d0565b840191505092915050565b6000602082019050818103600083015261443481846143e1565b905092915050565b6000819050919050565b61444f8161443c565b811461445a57600080fd5b50565b60008135905061446c81614446565b92915050565b600060208284031215614488576144876142c5565b5b60006144968482850161445d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144ca8261449f565b9050919050565b6144da816144bf565b82525050565b60006020820190506144f560008301846144d1565b92915050565b614504816144bf565b811461450f57600080fd5b50565b600081359050614521816144fb565b92915050565b6000806040838503121561453e5761453d6142c5565b5b600061454c85828601614512565b925050602061455d8582860161445d565b9150509250929050565b6145708161443c565b82525050565b600060208201905061458b6000830184614567565b92915050565b6000806000606084860312156145aa576145a96142c5565b5b60006145b886828701614512565b93505060206145c986828701614512565b92505060406145da8682870161445d565b9150509250925092565b6000602082840312156145fa576145f96142c5565b5b600061460884828501614512565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146468161443c565b82525050565b6000614658838361463d565b60208301905092915050565b6000602082019050919050565b600061467c82614611565b614686818561461c565b93506146918361462d565b8060005b838110156146c25781516146a9888261464c565b97506146b483614664565b925050600181019050614695565b5085935050505092915050565b600060208201905081810360008301526146e98184614671565b905092915050565b6146fa81614354565b811461470557600080fd5b50565b600081359050614717816146f1565b92915050565b600060208284031215614733576147326142c5565b5b600061474184828501614708565b91505092915050565b60008060408385031215614761576147606142c5565b5b600061476f8582860161445d565b925050602061478085828601614512565b9150509250929050565b600080604083850312156147a1576147a06142c5565b5b60006147af85828601614512565b92505060206147c085828601614708565b9150509250929050565b6000819050919050565b60006147ef6147ea6147e58461449f565b6147ca565b61449f565b9050919050565b6000614801826147d4565b9050919050565b6000614813826147f6565b9050919050565b61482381614808565b82525050565b600060208201905061483e600083018461481a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614886826143d0565b810181811067ffffffffffffffff821117156148a5576148a461484e565b5b80604052505050565b60006148b86142bb565b90506148c4828261487d565b919050565b600067ffffffffffffffff8211156148e4576148e361484e565b5b6148ed826143d0565b9050602081019050919050565b82818337600083830152505050565b600061491c614917846148c9565b6148ae565b90508281526020810184848401111561493857614937614849565b5b6149438482856148fa565b509392505050565b600082601f8301126149605761495f614844565b5b8135614970848260208601614909565b91505092915050565b60008060008060808587031215614993576149926142c5565b5b60006149a187828801614512565b94505060206149b287828801614512565b93505060406149c38782880161445d565b925050606085013567ffffffffffffffff8111156149e4576149e36142ca565b5b6149f08782880161494b565b91505092959194509250565b600067ffffffffffffffff821115614a1757614a1661484e565b5b614a20826143d0565b9050602081019050919050565b6000614a40614a3b846149fc565b6148ae565b905082815260208101848484011115614a5c57614a5b614849565b5b614a678482856148fa565b509392505050565b600082601f830112614a8457614a83614844565b5b8135614a94848260208601614a2d565b91505092915050565b600060208284031215614ab357614ab26142c5565b5b600082013567ffffffffffffffff811115614ad157614ad06142ca565b5b614add84828501614a6f565b91505092915050565b60008060408385031215614afd57614afc6142c5565b5b6000614b0b85828601614512565b9250506020614b1c85828601614512565b9150509250929050565b6000614b318261449f565b9050919050565b614b4181614b26565b8114614b4c57600080fd5b50565b600081359050614b5e81614b38565b92915050565b60008060408385031215614b7b57614b7a6142c5565b5b6000614b8985828601614b4f565b9250506020614b9a8582860161445d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614beb57607f821691505b602082108103614bfe57614bfd614ba4565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c60602183614395565b9150614c6b82614c04565b604082019050919050565b60006020820190508181036000830152614c8f81614c53565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000614cf2603d83614395565b9150614cfd82614c96565b604082019050919050565b60006020820190508181036000830152614d2181614ce5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614d628261443c565b9150614d6d8361443c565b9250828201905080821115614d8557614d84614d28565b5b92915050565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b6000614dc1600883614395565b9150614dcc82614d8b565b602082019050919050565b60006020820190508181036000830152614df081614db4565b9050919050565b6000614e028261443c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614e3457614e33614d28565b5b600182019050919050565b6000604082019050614e5460008301856144d1565b614e6160208301846144d1565b9392505050565b600081519050614e77816146f1565b92915050565b600060208284031215614e9357614e926142c5565b5b6000614ea184828501614e68565b91505092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614f06602b83614395565b9150614f1182614eaa565b604082019050919050565b60006020820190508181036000830152614f3581614ef9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614fc7602c83614395565b9150614fd282614f6b565b604082019050919050565b60006020820190508181036000830152614ff681614fba565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000615033601883614395565b915061503e82614ffd565b602082019050919050565b6000602082019050818103600083015261506281615026565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b600061509f601e83614395565b91506150aa82615069565b602082019050919050565b600060208201905081810360008301526150ce81615092565b9050919050565b7f496e636f727265637420416d6f756e7400000000000000000000000000000000600082015250565b600061510b601083614395565b9150615116826150d5565b602082019050919050565b6000602082019050818103600083015261513a816150fe565b9050919050565b7f574c2053616c65206e6f74207374617274656400000000000000000000000000600082015250565b6000615177601383614395565b915061518282615141565b602082019050919050565b600060208201905081810360008301526151a68161516a565b9050919050565b7f4d6178204e4654207065722057616c6c65742052656163686564000000000000600082015250565b60006151e3601a83614395565b91506151ee826151ad565b602082019050919050565b60006020820190508181036000830152615212816151d6565b9050919050565b60006152248261443c565b915061522f8361443c565b925082820261523d8161443c565b9150828204841483151761525457615253614d28565b5b5092915050565b7f42616c616e636520496e73756666696369656e74000000000000000000000000600082015250565b6000615291601483614395565b915061529c8261525b565b602082019050919050565b600060208201905081810360008301526152c081615284565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000615323602983614395565b915061532e826152c7565b604082019050919050565b6000602082019050818103600083015261535281615316565b9050919050565b7f467265652053616c65206e6f7420737461727465640000000000000000000000600082015250565b600061538f601583614395565b915061539a82615359565b602082019050919050565b600060208201905081810360008301526153be81615382565b9050919050565b6000819050919050565b60006153ea6153e56153e0846153c5565b6147ca565b61443c565b9050919050565b6153fa816153cf565b82525050565b600060408201905061541560008301856144d1565b61542260208301846153f1565b9392505050565b60008151905061543881614446565b92915050565b600060208284031215615454576154536142c5565b5b600061546284828501615429565b91505092915050565b7f596f7520646f6e2774206f776e20656e6f756768204d696e7420506173730000600082015250565b60006154a1601e83614395565b91506154ac8261546b565b602082019050919050565b600060208201905081810360008301526154d081615494565b9050919050565b60006060820190506154ec60008301866144d1565b6154f960208301856153f1565b6155066040830184614567565b949350505050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026155707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82615533565b61557a8683615533565b95508019841693508086168417925050509392505050565b60006155ad6155a86155a38461443c565b6147ca565b61443c565b9050919050565b6000819050919050565b6155c783615592565b6155db6155d3826155b4565b848454615540565b825550505050565b600090565b6155f06155e3565b6155fb8184846155be565b505050565b5b8181101561561f576156146000826155e8565b600181019050615601565b5050565b601f821115615664576156358161550e565b61563e84615523565b8101602085101561564d578190505b61566161565985615523565b830182615600565b50505b505050565b600082821c905092915050565b600061568760001984600802615669565b1980831691505092915050565b60006156a08383615676565b9150826002028217905092915050565b6156b98261438a565b67ffffffffffffffff8111156156d2576156d161484e565b5b6156dc8254614bd3565b6156e7828285615623565b600060209050601f83116001811461571a5760008415615708578287015190505b6157128582615694565b86555061577a565b601f1984166157288661550e565b60005b828110156157505784890151825560018201915060208501945060208101905061572b565b8683101561576d5784890151615769601f891682615676565b8355505b6001600288020188555050505b505050505050565b50565b6000615792600083614395565b915061579d82615782565b600082019050919050565b600060208201905081810360008301526157c181615785565b9050919050565b600081905092915050565b60006157de8261438a565b6157e881856157c8565b93506157f88185602086016143a6565b80840191505092915050565b6000815461581181614bd3565b61581b81866157c8565b94506001821660008114615836576001811461584b5761587e565b60ff198316865281151582028601935061587e565b6158548561550e565b60005b8381101561587657815481890152600182019150602081019050615857565b838801955050505b50505092915050565b600061589382866157d3565b915061589f82856157d3565b91506158ab8284615804565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615914602683614395565b915061591f826158b8565b604082019050919050565b6000602082019050818103600083015261594381615907565b9050919050565b7f4f6e6c792061646d696e2063616e2077697468647261772066756e64732e0000600082015250565b6000615980601e83614395565b915061598b8261594a565b602082019050919050565b600060208201905081810360008301526159af81615973565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006159ec602083614395565b91506159f7826159b6565b602082019050919050565b60006020820190508181036000830152615a1b816159df565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000615a7e602d83614395565b9150615a8982615a22565b604082019050919050565b60006020820190508181036000830152615aad81615a71565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615aea601983614395565b9150615af582615ab4565b602082019050919050565b60006020820190508181036000830152615b1981615add565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615bab603283614395565b9150615bb682615b4f565b604082019050919050565b60006020820190508181036000830152615bda81615b9e565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000615c3d602583614395565b9150615c4882615be1565b604082019050919050565b60006020820190508181036000830152615c6c81615c30565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615ccf602483614395565b9150615cda82615c73565b604082019050919050565b60006020820190508181036000830152615cfe81615cc2565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615d3b602083614395565b9150615d4682615d05565b602082019050919050565b60006020820190508181036000830152615d6a81615d2e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615da7601c83614395565b9150615db282615d71565b602082019050919050565b60006020820190508181036000830152615dd681615d9a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615e0482615ddd565b615e0e8185615de8565b9350615e1e8185602086016143a6565b615e27816143d0565b840191505092915050565b6000608082019050615e4760008301876144d1565b615e5460208301866144d1565b615e616040830185614567565b8181036060830152615e738184615df9565b905095945050505050565b600081519050615e8d816142fb565b92915050565b600060208284031215615ea957615ea86142c5565b5b6000615eb784828501615e7e565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000615f1c603583614395565b9150615f2782615ec0565b604082019050919050565b60006020820190508181036000830152615f4b81615f0f565b9050919050565b6000615f5d8261443c565b9150615f688361443c565b9250828203905081811115615f8057615f7f614d28565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220568c66a8c048182ebdb858a7b3ea04df7ff422f45092bcea4331d68f6cddd42d64736f6c63430008120033

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

000000000000000000000000f3382273c11847a0a4c46b19a80f49090df17804000000000000000000000000c297fe96733b30a7700b166158cde066678cd027

-----Decoded View---------------
Arg [0] : _erc1155Address (address): 0xf3382273c11847A0a4C46b19a80f49090Df17804
Arg [1] : _admin (address): 0xC297fE96733b30a7700b166158cdE066678cD027

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000f3382273c11847a0a4c46b19a80f49090df17804
Arg [1] : 000000000000000000000000c297fe96733b30a7700b166158cde066678cd027


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.