ETH Price: $3,313.12 (+1.36%)
Gas: 6 Gwei

Token

OnChainBunnies (OCB)
 

Overview

Max Total Supply

333 OCB

Holders

55

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mchexley.eth
Balance
2 OCB
0xebfd774c1c2008e56ce40e0a4504ebecc81b1921
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
OnChainBunnies

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion
File 1 of 22 : IERC4883.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9 <0.9.0;

import "@openzeppelin/contracts/interfaces/IERC165.sol";

/// @title EIP-4883 Non-Fungible Token Standard
/// Based on https://eips.ethereum.org/EIPS/eip-4883
interface IERC4883 is IERC165 {
    /**
     * @dev Generates the SVG image of `id`
     *
     * Requirements:
     *
     * - `id` must exist
     * - must return the SVG body for the specified token `id`
     * - must either be an empty string or a valid SVG element(s)
     */
    function renderTokenById(uint256 id) external view returns (string memory);
}

File 2 of 22 : ERC721F.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9 <0.9.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

/**
 * @title ERC721F
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation.
 * Optimized to no longer use ERC721Enumerable , but still provide a totalSupply() and walletOfOwner(address _owner) implementation.
 * @author @FrankNFT.eth
 *
 */

contract ERC721F is Ownable, ERC721 {
    uint256 private _tokenSupply;
    uint256 private _burnCounter;

    // Base URI for Meta data
    string private _baseTokenURI;

    constructor(string memory name_, string memory symbol_)
        ERC721(name_, symbol_)
    {}

    /**
     * @dev walletofOwner
     * @return tokens id owned by the given address
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function walletOfOwner(address _owner)
        external
        view
        virtual
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = _startTokenId();
        uint256 ownedTokenIndex = 0;
        uint256 tokenSupply = _tokenSupply;

        unchecked {
            for(;;) {
                if (ownedTokenIndex >= ownerTokenCount) {
                    break;
                }
                if (currentTokenId >= tokenSupply) {
                    break;
                }
                if (_ownerOf(currentTokenId) == _owner) {
                    ownedTokenIds[ownedTokenIndex] = currentTokenId;
                    ownedTokenIndex++;
                }
                currentTokenId++;
            }
        }
        return ownedTokenIds;
    }

    /**
     * To change the starting tokenId, override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

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

    /**
     * @dev Set the base token URI
     */
    function setBaseTokenURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    /**
     *
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     */
    function _mint(address to, uint256 tokenId) internal virtual override {
        super._mint(to, tokenId);
        unchecked {
            _tokenSupply++;
        }
    }

    /**
     * @dev See {ERC721-_burn}
     * Increases value of _burnCounter
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Gets the total amount of existing tokens stored by the contract.
     * @return uint256 representing the total amount of tokens
     */
    function totalSupply() public view virtual returns (uint256) {
        return _tokenSupply - _burnCounter;
    }

    /**
     * @dev Gets total amount of tokens minted by the contract
     */
    function _totalMinted() internal view virtual returns (uint256) {
        return _tokenSupply;
    }

    /**
     * @dev Gets total amount of burned tokens
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }
}

File 3 of 22 : ERC721FCOMMON.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9 <0.9.0;

import "./ERC721F.sol";
import "../../utils/Payable.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";

contract ERC721FCOMMON is ERC721F, Payable, ERC2981 {
    uint16 private royalties = 500;
    address private royaltyReceiver;

    event ROYALTIESUPDATED(uint256 royalties);

    constructor(string memory name_, string memory symbol_) ERC721F(name_, symbol_) {
        setRoyaltyReceiver(address(this));
    }

    /**
     * @notice Indicates whether this contract supports an interface
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * @return `true` if the contract implements `interfaceID` or is 0x2a55205a, `false` otherwise
     */
    function supportsInterface(bytes4 _interfaceId)
        public
        view
        virtual
        override(ERC721, ERC2981)
        returns (bool)
    {
        return
            _interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(_interfaceId);
    }

    /**
     * @dev it will update the royalties for token
     * @param _royalties is new percentage of royalties. It should be more than 0 and least 90
     */
    function setRoyalties(uint16 _royalties) external onlyOwner {
        require(
            _royalties != 0 && _royalties < 90,
            "royalties should be between 0 and 90"
        );

        royalties = (_royalties * 100);

        emit ROYALTIESUPDATED(_royalties);
    }

    /**
     * @notice Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     * @param _tokenId is the token being sold and should exist.
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        public
        view
        virtual
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(
            _exists(_tokenId),
            "ERC2981RoyaltyStandard: Royalty info for nonexistent token"
        );
        return (royaltyReceiver, (_salePrice * royalties) / 10000);
    }

    /**
     * @notice Sets `receiver` as royaltyReceiver
     */
    function setRoyaltyReceiver(address receiver) public virtual onlyOwner {
        royaltyReceiver = receiver;
    }
}

File 4 of 22 : AllowList.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9 <0.9.0;

import "@openzeppelin/contracts/access/Ownable.sol";

abstract contract AllowList is Ownable {
    mapping(address => bool) private allowList;

    modifier onlyAllowList() {
        require(isAllowList(msg.sender), "Address is not within allowList");
        _;
    }

    /**
     * @notice Adds an address to the allowList
     */
    function allowAddress(address _address) public onlyOwner {
        allowList[_address] = true;
    }

    /**
     * @notice Adds an array of addresses to the allowList
     */
    function allowAddresses(address[] calldata _addresses) external onlyOwner {
        uint length = _addresses.length;
        for (uint i; i < length; ) {
            allowAddress(_addresses[i]);
            unchecked {
                i++;
            }
        }
    }

    /**
     * @notice Removes an address off the allowList
     */
    function disallowAddress(address _address) external onlyOwner {
        _disallowAddress(_address);
    }

    /**
     * @dev Sets `_address` to `false` in allowList
     */
    function _disallowAddress(address _address) internal {
        delete allowList[_address];
    }

    /**
     * @notice Returns `true` if `_address` is in and `true` in the allowList
     */
    function isAllowList(address _address) public view returns (bool) {
        return allowList[_address];
    }
}

File 5 of 22 : Payable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9 <0.9.0;

abstract contract Payable {
    /**
    * Helper method to allow ETH withdraws.
    */
    function _withdraw(address _address, uint256 _amount) internal {
        (bool success, ) = _address.call{ value: _amount }("");
        require(success, "Failed to withdraw Ether");
    }

    // contract can recieve Ether
    receive() external payable { }
}

File 6 of 22 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 7 of 22 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

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

File 8 of 22 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

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

File 9 of 22 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

File 10 of 22 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 {}

    /**
     * @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 {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

File 11 of 22 : 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 12 of 22 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 22 : 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 14 of 22 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 15 of 22 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

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

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

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 16 of 22 : 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 17 of 22 : 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 18 of 22 : 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 19 of 22 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 22 of 22 : OnChainBunnies.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9 <0.9.0;

import "@franknft.eth/erc721-f/contracts/interfaces/IERC4883.sol";
import "@franknft.eth/erc721-f/contracts/token/ERC721/ERC721FCOMMON.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@franknft.eth/erc721-f/contracts/utils/AllowList.sol";


/**
   ___       ___ _         _      ___                _        
  / _ \ _ _ / __| |_  __ _(_)_ _ | _ )_  _ _ _  _ _ (_)___ ___     
 | (_) | ' \ (__| ' \/ _` | | ' \| _ \ || | ' \| ' \| / -_|_-<
  \___/|_||_\___|_||_\__,_|_|_||_|___/\_,_|_||_|_||_|_\___/__/
                                                              
 * 99.95% deployment cost reduction
 * Excluding insider trading with a new sampling algorithm without replacement
 * 
 */
contract OnChainBunnies is IERC4883, ERC721FCOMMON, AllowList {
    
    uint256 public last_selected = 0; 
    bool public saleIsActive;
    uint public tokenPrice = 0.01 ether;
    mapping(uint256 => uint256) public IdToAlgorithmId;


    string[5] private frame = ['<svg width="1080" height="1080" style="background-color:#',
            '" stroke="#000" xmlns="http://www.w3.org/2000/svg">',
            '<ellipse stroke-width="10" ry="266" rx="200" cy="540" cx="540" fill="#fff"/>',
            '<ellipse transform="rotate(25 660 250)" ry="107" rx="45" cy="250" cx="660" stroke-width="10" fill="#fff"/><ellipse transform="rotate(-25 420 250)" ry="107" rx="45" cy="250" cx="420" stroke-width="10" fill="#fff"/><ellipse transform="rotate(-25 435 283)" ry="68" rx="26" cy="283" cx="435" stroke-width="10" fill="#FFAFCC"/><ellipse transform="rotate(25 645 283)" ry="68" rx="26" cy="283" cx="645" stroke-width="10" fill="#FFAFCC"/><circle cy="427" cx="470" stroke-width="10" r="30"/><circle cy="427" cx="610" stroke-width="10" r="30"/><circle cy="418" cx="465" r="12" fill="#fff" stroke="none"/><circle cy="440" cx="484" r="6" fill="#fff" stroke="none"/><circle cy="418" cx="615" r="12" fill="#fff" stroke="none"/><circle cy="440" cx="600" r="8" fill="#fff" stroke="none"/><circle cy="520" cx="540" stroke-width="4" fill="#FFAFCC" r="14"/><ellipse ry="120" rx="100" cy="685" cx="540" stroke-width="4" fill="#FFE2FF"/><ellipse ry="106" rx="80" cy="697" cx="540" fill="#FFAFCC" stroke="none"/><ellipse transform="rotate(-17 610 804)" ry="43" rx="30" cy="804" cx="610" stroke-width="10" fill="#fff"/><ellipse transform="rotate(17 470 804)" ry="43" rx="30" cy="804" cx="470" stroke-width="10" fill="#fff"/><ellipse transform="rotate(30 750 518)" ry="48" rx="31" cy="518" cx="750" stroke-width="10" fill="#fff"/><ellipse transform="rotate(-30 330 518)" ry="48" rx="31" cy="518" cx="330" stroke-width="10" fill="#fff"/>',
            '</svg>']; 

    constructor() ERC721FCOMMON("OnChainBunnies", "OCB") {
    }


    /**
     * Changes the state of saleIsActive from true to false and false to true
     */
    function flipSaleState() external onlyOwner {
        saleIsActive = !saleIsActive;
    }

    /**
     * @notice Creates the tokenURI which contains the name, description, generated SVG image and token traits
     */
    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Non-Existing");
        string memory svgData = renderTokenById(tokenId);
        string memory traits = getTraits(tokenId);
        string memory json = Base64.encode(
            bytes(
                string(
                    abi.encodePacked(
                        '{"name": "',
                        name(),
                        " ",
                        Strings.toString(tokenId),
                        '", "description": "',
                        "ocb"
                        '", "image": "data:image/svg+xml;base64,',
                        Base64.encode(bytes(svgData)),
                        bytes(traits).length == 0 ? '"' : '", "attributes": ',
                        traits,
                        "}"
                    )
                )
            )
        );
        return string(abi.encodePacked("data:application/json;base64,", json));
    }

    


    function sample(uint256 numberOfTokens, address to) internal {
        require(msg.sender == tx.origin, "No Contracts allowed");
        require(numberOfTokens > 0, "#NFTS != 0");
        uint256 supply = _totalMinted(); 
        require(
            supply + numberOfTokens <= 2000,
            "Sold out"
        );
        while (numberOfTokens != 0 ) {
            uint256 randomNumber = uint256(keccak256(abi.encodePacked(block.timestamp, block.difficulty, supply, msg.sender))) % 65217;
            uint256 algorithmId = last_selected + randomNumber;
            if (checkId(algorithmId)){
                _mint(to, supply + 1); 
                unchecked {
                    supply++;
                    numberOfTokens--;
                }
                IdToAlgorithmId[supply + 1] = algorithmId;
            }
            last_selected = algorithmId;
        }
    }

    /**
     * @notice Mints `numberOfTokens` tokens for `sender`
     */
    function mint(uint256 numberOfTokens) external payable {
        require(saleIsActive, "Sale inactive");
        require(
            tokenPrice * numberOfTokens <= msg.value,
            "Value incorrect"
        );
        require(
            numberOfTokens < 31,
            "Max 30 NFTs"
        );
        sample(numberOfTokens, msg.sender);
    }

     /**
     * Mint Tokens to a wallet.
     */
    function airdrop(address to, uint256 numberOfTokens) public onlyOwner {
        uint256 supply = _totalMinted();
        require(
            supply + numberOfTokens <= 2000,
            "Reserve would exceed max supply of Tokens"
        );
        sample(numberOfTokens, to);
    }

    function getPurseId(uint256 Id) internal pure returns (uint256 purseId){
        uint256 bit_1 = (Id >> 4) & 1;
        uint256 bit_2 = (Id >> 9) & 1;
        uint256 bit_3 = (Id >> 23) & 1;
        return ((bit_3 << 2) | (bit_2 << 1) | bit_1);
    }

    function getBraceletId(uint256 Id) internal pure returns (uint256 braceletId){
        uint256 bit_1 = (Id >> 3) & 1;
        uint256 bit_2 = (Id >> 8) & 1;
        uint256 bit_3 = (Id >> 22) & 1;
        return ((bit_3 << 2) | (bit_2 << 1) | bit_1);
    }

    function getWizardId(uint256 Id) internal pure returns (uint256 wizardId){
        uint256 bit_1 = (Id >> 2) & 1;
        uint256 bit_2 = (Id >> 21) & 1;
        return ((bit_2 << 1) | bit_1);
    }

    function getWhiskersId(uint256 Id) internal pure returns (uint256 whiskersId){
        uint256 bit_1 = (Id >> 1) & 1;
        uint256 bit_2 = (Id >> 20) & 1;
        return ((bit_2 << 1) | bit_1);
    }
    
    function getEyebrowsId(uint256 Id) internal pure returns (uint256 eyebrowsId){
        uint256 bit_1 = Id & 1;
        uint256 bit_2 = (Id >> 20) & 1;
        return ((bit_2 << 1) | bit_1);
    }

    function getHatId(uint256 Id) internal pure returns (uint256 hatId){
        uint256 bit_1 = (Id >> 5) & 1;
        uint256 bit_5 = (Id >> 24) & 1;
        uint256 trait_mask = 7; //0b111 = 7
        uint256 bitMask = trait_mask << 10;
        uint256 bit_234 = ((Id & bitMask) >> 10);
        return ((bit_5 << 4) | (bit_234 << 1) | bit_1);
    }

    function getGlassesId(uint256 Id) internal pure returns (uint256 glassesId){
        uint256 bit_1 = (Id >> 6) & 1;
        uint256 bit_5 = (Id >> 25) & 1;
        uint256 trait_mask = 7; //0b111 = 7
        uint256 bitMask = trait_mask << 13;
        uint256 bit_234 = ((Id & bitMask) >> 13);
        return ((bit_5 << 4) | (bit_234 << 1) | bit_1);
    }

    function getTieId(uint256 Id) internal pure returns (uint256 tieId){
        uint256 bit_1 = (Id >> 7) & 1;
        uint256 bit_5 = (Id >> 26) & 1;
        uint256 trait_mask = 7; //0b111 = 7
        uint256 bitMask = trait_mask << 16;
        uint256 bit_234 = ((Id & bitMask) >> 16);
        return ((bit_5 << 4) | (bit_234 << 1) | bit_1);
    }

    function checkId(uint256 Id) private pure returns (bool ok){
        return !(getGlassesId(Id) == 31 || getTieId(Id) > 27 || getHatId(Id) == 31);
    }


    function getTie(uint256 tie_id) internal pure returns(string memory){
        string memory bow = '<path stroke-width="8" fill="#';
        string[2] memory bow_tie_circle = [
            '" d="m540 570 80-20v40zm0 0-80-20v40z"/><circle cy="570" cx="540" r="14" stroke-width="8" fill="#',
            '"/>'];
        string[2] memory bow_tie_square = [
            '" d="m540 570 80-20v40zm0 0-80-20v40z"/><rect x="527" y="557" width="26" height="26" stroke-width="8" fill="',
            '"/>'];
        string[3] memory tie = ['<polygon points="540,555 510,710 570,710"  stroke-width="8" fill="#',
        '"/><circle cy="570" cx="540" r="15" stroke-width="8" fill="#',
        '"/>'];
        string[3] memory tie_colors = ['56aaff', '5f00bf', 'ff7f00'];
        
        if (tie_id == 0){
            return'';
        }
        //bow_ties
        if (tie_id%3 == 0){
            //tie circle
            return string(abi.encodePacked(
                bow,
                tie_colors[tie_id/3%3],
                bow_tie_circle[0],
                tie_colors[tie_id/9%3],
                bow_tie_circle[1]
        )
        );
        }
        if (tie_id%3 == 1){
            //tie square
            return string(abi.encodePacked(
                bow,
                tie_colors[tie_id/3%3],
                bow_tie_square[0],
                tie_colors[tie_id/9%3],
                bow_tie_square[1]
        )
        );
        }
        
        //normal tie 
        return string(abi.encodePacked(
                tie[0],
                tie_colors[tie_id/3%3],
                tie[1],
                tie_colors[tie_id/9%3],
                tie[2]
        )
        );

        
        
    }

    function getWhiskers(uint256 whiskers_id) internal pure returns(string memory){
        string[13] memory whiskers = ['<path stroke-width="4" d="M', ' 520h','v2', 'zm','L512 510l-.347 1.97-', 'zm0', 'L512 530l.347 1.97-', 'zM570 520h', 'v2', 'zm-2-10', 'zm0 20 ', '1.97-', 'z"/>'];
        string[12] memory whiskers_short = ['430', '80', 'h-80', '3.215-23.8922', '78.785-13.892', ' 47.784', '78.784 13.891', '80', 'h-80', ' 78.785-13.892.347 1.97-78.785 13.892', ' 78.785 13.892-.348 ', '78.784-13.892'];
        string[12] memory whiskers_long = ['390', '120', 'H390', '3.823-30.8382', '118.177-20.838', ' 61.676', '118.177 20.837', '120','H570', ' 118.177-20.838.347 1.97-118.177 20.838', ' 118.177 20.838-.347 ', '118.177-20.838' ];
        string[12] memory whiskers_very_short = ['490', '20', 'h-20', '2.304-13.473', '19.696-3.473', ' 26.946', '19.696 3.473', '20', 'h-20', ' 19.696-3.473.347 1.97-19.696 3.473', ' 19.696 3.473-.347 ', '19.696-3.473'];
    
        string[12] memory short_or_long;
        if (whiskers_id == 0){
            return '';
        }
        else if (whiskers_id == 1){
            short_or_long = whiskers_short;
        }
        else if (whiskers_id == 2){
            short_or_long = whiskers_long;
        }
        else if (whiskers_id > 2){
            short_or_long = whiskers_very_short;
        }
        string memory whisker_string;
        
        for (uint i=0; i<12;){
            whisker_string = string(abi.encodePacked(whisker_string, whiskers[i], short_or_long[i]));
            unchecked{
                i++;
              }
        }
    
        return string(abi.encodePacked(
            whisker_string, 
            whiskers[12]
        )
        ); 
    }

    function getMagic(uint256 magic_id) internal pure returns(string memory){
        string[2] memory magic = ['<rect y="350" x="750" width="20" height="160" stroke-width="8" fill="#', '"/><rect y="350" x="748" width="24" height="40" stroke-width="8" fill="#FFEA00"/><circle cy="300" cx="710" r="12" fill="#FFEA00" stroke-width="8"/><circle cy="260" cx="800" r="12" fill="#FFEA00" stroke-width="8"/><circle cy="230" cx="730" r="12" fill="#FFEA00" stroke-width="8"/><circle cy="300" cx="760" r="12" fill="#FFEA00" stroke-width="8"/><circle cy="340" cx="810" r="12" fill="#FFEA00" stroke-width="8"/>'];
        string[3] memory magic_colors = ['f', 'CEC9DF','FDF1CA'];

        if (magic_id == 0){
            return '';
        }
        return string(abi.encodePacked(
            magic[0],
            magic_colors[magic_id-1],
            magic[1]
        )
        ); 

        
    }

    function getBracelet(uint256 bracelet_id) internal pure returns(string memory){
        string[7] memory bracelet_colors = ['FFF093', '05faf6', '07ab2d', 'f70505', 'f768e2','68f7c5','ba70ff'];
        string[2] memory bracelet = ['<circle cy="520" cx="310" r="8" fill="#FFF093" stroke-width="4"/><circle cy="510" cx="350" r="8" fill="#FFF093" stroke-width="4"/><circle cy="519" cx="331" r="12" fill="#',
    '       " stroke-width="4"/>'];
        if (bracelet_id == 0){
            return '';
        }
        return string(abi.encodePacked(
            bracelet[0],
            bracelet_colors[bracelet_id-1],
            bracelet[1]
        )
        ); 
    }

    function getPurse(uint256 purse_id) internal pure returns(string memory){
        string[2] memory upper_part_purse = ['<circle cy="580" cx="330" r="60" stroke="none"/><circle cy="580" cx="330" r="40" fill="#fff" stroke="none"/>','<rect y="530" x="280" width="100" height="120" stroke-width="8"/><rect y="530" x="290" width="80" height="100" stroke-width="8" fill="#fff"/>'];
        string memory lower_part_purse = '<rect y="580" x="240" width="180" height="120" stroke-width="8" ';
        string[7] memory design_purse = ['fill="#f05de4"/><circle cy="600" cx="340" r="15" fill="#f0b267" stroke-width="8"/><circle cy="650" cx="380" r="20" fill="#f0b267" stroke-width="8"/><circle cy="650" cx="280" r="16" fill="#f0b267" stroke-width="8"/><circle cy="600" cx="400" r="13" fill="#f0b267" stroke-width="8"/>', 
            'fill="#f73149"/><rect y="600" x="260" width="140" height="80" stroke-width="8" fill="#f58822"/><rect y="620" x="280" width="100" height="40" stroke-width="8" fill="#f5c43d"/>', 
            'fill="#ff7f00"/><path fill="#ffff56" stroke="null" stroke-width="3" d="M315 676c-4-1 1-4 3-5 1 0-7 0-4-2 4-3 2-7-1-8-5-3-12-5-13-10-2-3 2-6-1-9-2-3 1-7 2-10 1-5-3-8-6-12s-5-8-5-12c-1-2 0-5 3-2 5 3 12 7 16 11 0 2 3 7 4 3 0-7 2-14 9-18 4-3 6 2 7 5 1 6-1 11-3 16-1 2-3 9 3 6 13-3 29 1 38 9 4 4 5 9 5 15-2 2 6-1 3 3-1 4-6 6-9 9-4 2-1 7-6 8l-25 3c-4 0-7-4-2-5 2-3 8-3 10-3-5 0-10-1-13 1s-4 6-9 7h-6z"/>',
            'fill="#ff5656"/><path d="M330.97 628.635c11.75-31.304 57.79 0 0 40.249-57.789-40.249-11.75-71.553 0-40.249z" stroke-width="8" fill="#f05de4"/>',
            'fill="#9F87FB"/><rect y="650" x="310" width="30" height="30" stroke-width="8" fill="#e06cf5"/><rect y="590" x="350" width="30" height="30" stroke-width="8" fill="#e06cf5"/><rect y="640" x="380" width="30" height="30" stroke-width="8" fill="#e06cf5"/><rect y="610" x="260" width="30" height="30" stroke-width="8" fill="#e06cf5"/>', 
            '<rect y="550" x="240" width="180" height="30" stroke-width="8" fill="#9efa84"/><rect y="580" x="240" width="180" height="30" stroke-width="8" fill="#7ac9fa"/><rect y="610" x="240" width="180" height="30" stroke-width="8" fill="#b67afa"/><rect y="640" x="240" width="180" height="30" stroke-width="8" fill="#ea72f7"/>', 
            '<rect y="560" x="240" width="45" height="120" stroke-width="8" fill="#9efa84"/><rect y="560" x="285" width="45" height="120" stroke-width="8" fill="#7ac9fa"/><rect y="560" x="330" width="45" height="120" stroke-width="8" fill="#b67afa"/><rect y="560" x="375" width="45" height="120" stroke-width="8" fill="#ea72f7"/>'];
  
        if (purse_id == 0){
            return '';
        }
        if (purse_id == 7){
            return string(abi.encodePacked(
            upper_part_purse[1],
            design_purse[6]
        )
        ); 
        }

        if (purse_id == 6){
            return string(abi.encodePacked(
            upper_part_purse[1],
            design_purse[5]
        )
        ); 
        }

        return string(abi.encodePacked(
            upper_part_purse[0],
            lower_part_purse,
            design_purse[purse_id - 1])
        ); 
        
    }

    /**
     * 3 types of eyebrows + None = 4 options
     */
    function getEyeBrows(uint256 eyebrows_id) internal pure returns(string memory){
        string[3] memory rotations_left_eyebrows = ['25', '-25', '0'];
        string[3] memory rotations_right_eyebrows = ['-25', '25', '0'];
        string[3] memory eyebrows = ['<rect transform="rotate(',' 465 350)" height="8" width="80" y="370" x="425" fill="#000000"/><rect transform="rotate(',' 615 350)" height="8" width="80" y="370" x="575" fill="#000000"/>'];
    
    
        if (eyebrows_id%4 == 0){
            return '';
        }
        return string(abi.encodePacked(
            eyebrows[0],
            rotations_left_eyebrows[eyebrows_id%4-1],
            eyebrows[1],
            rotations_right_eyebrows[eyebrows_id%4-1],
            eyebrows[2]
        )
        );
    }

    /**
     * 5 types of hats
     * Should give 30 different combo's: 3 possibilities for up, 2 for down and 5 colors = 6*5=30
     */
    function getHat(uint256 hat_id) internal pure returns(string memory){
        string memory hat_basic = '"/>';
        string[3] memory hat_up = ['<rect y="205" x="475" width="130" height="60" stroke-width="8" fill="#',
            '<rect y="140" x="485" width="110" height="120" stroke-width="8" fill="#',
            '<circle cy="238" cx="540" stroke-width="10" r="62" fill="#'];
        string[2] memory hat_down = ['<rect y="262" x="440" width="200" height="40" stroke-width="8"  fill="#',
            '<ellipse ry="22" rx="70" cy="280" cx="540" stroke-width="8" fill="#'];
        string[5] memory hat_colors_up = ['5fbf00', '000000','e960ff', '56aaff', '5fbf00'];
        string[5] memory hat_colors_down = ['56aaff','ff0000','ff0000', 'ffff93', 'ffff93'];
        if (hat_id == 0){
            return '';
        }
        return string(abi.encodePacked(
            hat_up[hat_id/5%3],
            hat_colors_up[hat_id%5],
            hat_basic,
            hat_down[hat_id/15%2],
            hat_colors_down[hat_id%5],
            hat_basic
        )
        );
    }

    function getGlasses(uint256 glasses_id) internal pure returns(string memory){
        string[10] memory glasses_colors = ['ed4949','ffff56', 'ff7f00', '00bf00', '1900bf', 'e960ff', '68f7ce', '56aaff', 'DAFFB3', 'D5B3FF'];
        string memory glasses_common = '<path stroke-width="4" fill="#';
        string[3] memory small_glasses = ['" d="M492 417h140v20H492z"/><circle cy="427" cx="470" stroke-width="4" r="45" fill="#',
            '"/><circle cy="427" cx="610" stroke-width="4" r="45" fill="#',
            '"/>'];
        string[3] memory big_glasses = ['" d="M492 417h140v20H492z"/><circle cy="427" cx="470" stroke-width="4" r="55" fill="#',
            '"/><circle cy="427" cx="470" stroke-width="4" r="45" fill="#fff"/><circle cy="427" cx="610" stroke-width="4" r="55" fill="#',
            '"/><circle cy="427" cx="610" stroke-width="4" r="45" fill="#fff"/>'];

        string[3] memory square_glasses = ['" d="M492 417h140v20H492z"/><rect x="420" y="377" width="100" height="100" fill="#',
        '" stroke-width="4"/><rect x="430" y="387" width="80" height="80" fill="#fff" stroke-width="4"/><rect x="560" y="377" width="100" height="100" fill="#',
        '" stroke-width="4"/><rect x="570" y="387" width="80" height="80" fill="#fff" stroke-width="4"/>'];

        string memory output;
        if (glasses_id == 0){
            return '';
        }

        else if (glasses_id%3 == 0){
            output = string(abi.encodePacked(
                glasses_common,
                glasses_colors[glasses_id/3%10],
                small_glasses[0]));

            return string(abi.encodePacked(output,
                glasses_colors[glasses_id/3%10],
                small_glasses[1],
                glasses_colors[glasses_id/3%10],
                small_glasses[2]
                ));
        }
        else if (glasses_id%3 == 1){
            output = string(abi.encodePacked(
                glasses_common,
                glasses_colors[glasses_id/3%10],
                big_glasses[0]));

            return string(abi.encodePacked(
                output,
                glasses_colors[glasses_id/3%10],
                big_glasses[1],
                glasses_colors[glasses_id/3%10],
                big_glasses[2]
                ));
        }
        //enabling optimizer: 7 is too deep for stack so split up
        output = string(abi.encodePacked(
                glasses_common,
                glasses_colors[glasses_id/3%10],
                square_glasses[0]));

        return string(abi.encodePacked(
                output,
                glasses_colors[glasses_id/3%10],
                square_glasses[1],
                glasses_colors[glasses_id/3%10],
                square_glasses[2]
                ));
    }


    function getBackground(uint256 id) internal pure returns(string memory){
        string[6] memory colors = ["CEC9DF", "FDF1CA", "EDCCB6", "B2C6DE", "E1E1E1", "C8DCB8"];
        return colors[id%6];
    }

    /**
     * @notice Overridden function which creates custom SVG image
     * 
     */
    function renderTokenById(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        
        require(_exists(tokenId), "Non-Existing");
        uint256 algorithmId = IdToAlgorithmId[tokenId];        

        string memory output = string(abi.encodePacked(frame[0],getBackground(algorithmId % 6), frame[1], frame[2], getGlasses(getGlassesId(algorithmId))));
        output = string(abi.encodePacked(output,
        getHat(getHatId(algorithmId)), 
        getEyeBrows(getEyebrowsId(algorithmId))));
        output = string(abi.encodePacked(output,frame[3], 
        getBracelet(getBraceletId(algorithmId)), 
        getTie(getTieId(algorithmId)), 
        getMagic(getWizardId(algorithmId)),
        getPurse(getPurseId(algorithmId)),
        getWhiskers(getWhiskersId(algorithmId)),
        frame[4]));
        return string(output);
    }


    /**
     * @notice Overridden function to show how to disable traits being included in the URI
     * Optional: with mapping int to text
     * Lot of extra work because recreate bunnie
     * Does not print out integer
     */
    function getTraits(
        uint256 tokenId
    ) internal view returns (string memory) {
        string memory tr1='[{"trait_type": "Background","value": "';
        string memory tr2='"},{"trait_type": "Bracelet","value": "';
        string memory tr3='"},{"trait_type": "Eyebrows","value": "';
        string memory tr4='"},{"trait_type": "Hat","value": "';
        string memory tr5='"},{"trait_type": "Glasses","value": "';
        string memory tr6='"},{"trait_type": "Tie","value": "';
        string memory tr7='"},{"trait_type": "Wizard","value": "';
        string memory tr8='"},{"trait_type": "Whiskers","value": "';
        string memory tr9='"},{"trait_type": "Purse","value": "';
        string memory tr10='"}]';
        uint256 algorithmId = IdToAlgorithmId[tokenId];
        require(_exists(tokenId), "Non-Existing");
        string memory o=string(abi.encodePacked(tr1,Strings.toString(algorithmId % 6),tr2,Strings.toString(getBraceletId(algorithmId)),tr3,Strings.toString(getEyebrowsId(algorithmId))));
        o = string(abi.encodePacked(o, tr4,Strings.toString(getHatId(algorithmId)),tr5,Strings.toString(getGlassesId(algorithmId)), tr6,Strings.toString(getTieId(algorithmId))));
        return string(abi.encodePacked(o,tr7,Strings.toString(getWizardId(algorithmId)), tr8, Strings.toString(getWhiskersId(algorithmId)), tr9, Strings.toString(getPurseId(algorithmId)),tr10));
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "0 balance");
        _withdraw(owner(), balance);
    }
    
    
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"royalties","type":"uint256"}],"name":"ROYALTIESUPDATED","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":"uint256","name":"","type":"uint256"}],"name":"IdToAlgorithmId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"allowAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"allowAddresses","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"disallowAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"last_selected","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"renderTokenById","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_royalties","type":"uint16"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"setRoyaltyReceiver","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":[],"name":"tokenPrice","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600c805461ffff19166101f41790556000600e55662386f26fc10000601055610180604052603961012081815260809182919062006226610140398152602001604051806060016040528060338152602001620061a76033913981526020016040518060800160405280604c8152602001620061da604c91398152602001604051806105c0016040528061058481526020016200625f61058491398152602001604051806040016040528060068152602001651e17b9bb339f60d11b8152508152506012906005620000d392919062000275565b50348015620000e157600080fd5b506040518060400160405280600e81526020016d4f6e436861696e42756e6e69657360901b8152506040518060400160405280600381526020016227a1a160e91b81525081818181620001436200013d6200018c60201b60201c565b62000190565b815162000158906001906020850190620002cc565b5080516200016e906002906020840190620002cc565b50505050506200018430620001e060201b60201c565b50506200040d565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620001ea62000214565b600c80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6000546001600160a01b03163314620002735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b8260058101928215620002ba579160200282015b82811115620002ba5782518051620002a9918491602090910190620002cc565b509160200191906001019062000289565b50620002c892915062000357565b5090565b828054620002da90620003d1565b90600052602060002090601f016020900481019282620002fe576000855562000349565b82601f106200031957805160ff191683800117855562000349565b8280016001018555821562000349579182015b82811115620003495782518255916020019190600101906200032c565b50620002c892915062000378565b80821115620002c85760006200036e82826200038f565b5060010162000357565b5b80821115620002c8576000815560010162000379565b5080546200039d90620003d1565b6000825580601f10620003ae575050565b601f016020900490600052602060002090810190620003ce919062000378565b50565b600181811c90821680620003e657607f821691505b6020821081036200040757634e487b7160e01b600052602260045260246000fd5b50919050565b615d8a806200041d6000396000f3fe6080604052600436106101985760003560e01c806301ffc9a7146101a457806306fdde03146101d9578063081812fc146101fb57806308af4d8814610233578063095ea7b31461025557806318160ddd1461027557806323b872dd1461029857806324d38d9f146102b85780632a55205a146102ce57806330176e131461030d57806334918dfd1461032d5780633863b1f5146103425780633ccfd60b1461036257806342842e0e14610377578063438b6300146103975780636352211e146103c457806370a08231146103e4578063715018a6146104045780637ff9b596146104195780638ba4cc3c1461042f5780638da5cb5b1461044f5780638dc251e31461046457806395d89b4114610484578063a0712d6814610499578063a22cb465146104ac578063a2d6c6da146104cc578063b7c58d7a146104ec578063b88d4fde1461050c578063c87b56dd1461052c578063e63427121461054c578063e985e9c514610579578063eb8d244414610599578063f2fde38b146105b3578063f5964e08146105d3578063f7e079671461060c57600080fd5b3661019f57005b600080fd5b3480156101b057600080fd5b506101c46101bf366004613d7c565b61062c565b60405190151581526020015b60405180910390f35b3480156101e557600080fd5b506101ee610657565b6040516101d09190613df8565b34801561020757600080fd5b5061021b610216366004613e0b565b6106e9565b6040516001600160a01b0390911681526020016101d0565b34801561023f57600080fd5b5061025361024e366004613e40565b610710565b005b34801561026157600080fd5b50610253610270366004613e5b565b61073c565b34801561028157600080fd5b5061028a610856565b6040519081526020016101d0565b3480156102a457600080fd5b506102536102b3366004613e85565b61086d565b3480156102c457600080fd5b5061028a600e5481565b3480156102da57600080fd5b506102ee6102e9366004613ec1565b61089e565b604080516001600160a01b0390931683526020830191909152016101d0565b34801561031957600080fd5b50610253610328366004613f6e565b610953565b34801561033957600080fd5b50610253610972565b34801561034e57600080fd5b5061025361035d366004613fb6565b61098e565b34801561036e57600080fd5b506102536109da565b34801561038357600080fd5b50610253610392366004613e85565b610a30565b3480156103a357600080fd5b506103b76103b2366004613e40565b610a4b565b6040516101d0919061402a565b3480156103d057600080fd5b5061021b6103df366004613e0b565b610b16565b3480156103f057600080fd5b5061028a6103ff366004613e40565b610b4a565b34801561041057600080fd5b50610253610bd0565b34801561042557600080fd5b5061028a60105481565b34801561043b57600080fd5b5061025361044a366004613e5b565b610be4565b34801561045b57600080fd5b5061021b610c70565b34801561047057600080fd5b5061025361047f366004613e40565b610c7f565b34801561049057600080fd5b506101ee610cb1565b6102536104a7366004613e0b565b610cc0565b3480156104b857600080fd5b506102536104c736600461406e565b610d99565b3480156104d857600080fd5b506101ee6104e7366004613e0b565b610da4565b3480156104f857600080fd5b50610253610507366004613e40565b610f12565b34801561051857600080fd5b506102536105273660046140aa565b610f3f565b34801561053857600080fd5b506101ee610547366004613e0b565b610f71565b34801561055857600080fd5b5061028a610567366004613e0b565b60116020526000908152604090205481565b34801561058557600080fd5b506101c4610594366004614125565b611077565b3480156105a557600080fd5b50600f546101c49060ff1681565b3480156105bf57600080fd5b506102536105ce366004613e40565b6110a5565b3480156105df57600080fd5b506101c46105ee366004613e40565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561061857600080fd5b50610253610627366004614158565b61111b565b60006001600160e01b0319821663152a902d60e11b14806106515750610651826111e7565b92915050565b6060600180546106669061417c565b80601f01602080910402602001604051908101604052809291908181526020018280546106929061417c565b80156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b60006106f48261120c565b506000908152600560205260409020546001600160a01b031690565b610718611231565b6001600160a01b03166000908152600d60205260409020805460ff19166001179055565b600061074782610b16565b9050806001600160a01b0316836001600160a01b0316036107b95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107d557506107d58133611077565b6108475760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016107b0565b6108518383611290565b505050565b600060085460075461086891906141cc565b905090565b61087733826112fe565b6108935760405162461bcd60e51b81526004016107b0906141e3565b61085183838361135d565b6000806108aa846114af565b6109195760405162461bcd60e51b815260206004820152603a60248201527f45524332393831526f79616c74795374616e646172643a20526f79616c74792060448201527934b73337903337b9103737b732bc34b9ba32b73a103a37b5b2b760311b60648201526084016107b0565b600c546001600160a01b0362010000820416906127109061093e9061ffff1686614230565b6109489190614265565b915091509250929050565b61095b611231565b805161096e906009906020840190613ca5565b5050565b61097a611231565b600f805460ff19811660ff90911615179055565b610996611231565b8060005b818110156109d4576109cc8484838181106109b7576109b7614279565b905060200201602081019061024e9190613e40565b60010161099a565b50505050565b6109e2611231565b4780610a1c5760405162461bcd60e51b8152602060048201526009602482015268302062616c616e636560b81b60448201526064016107b0565b610a2d610a27610c70565b826114cc565b50565b61085183838360405180602001604052806000815250610f3f565b60606000610a5883610b4a565b90506000816001600160401b03811115610a7457610a74613ee3565b604051908082528060200260200182016040528015610a9d578160200160208202803683370190505b5060075490915060009081905b84821015610b0b5780831015610b0b57866001600160a01b0316610acd8461156a565b6001600160a01b031603610b005782848381518110610aee57610aee614279565b60209081029190910101526001909101905b600190920191610aaa565b509195945050505050565b600080610b228361156a565b90506001600160a01b0381166106515760405162461bcd60e51b81526004016107b09061428f565b60006001600160a01b038216610bb45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016107b0565b506001600160a01b031660009081526004602052604090205490565b610bd8611231565b610be26000611585565b565b610bec611231565b6000610bf760075490565b90506107d0610c0683836142c1565b1115610c665760405162461bcd60e51b815260206004820152602960248201527f5265736572766520776f756c6420657863656564206d617820737570706c79206044820152686f6620546f6b656e7360b81b60648201526084016107b0565b61085182846115d5565b6000546001600160a01b031690565b610c87611231565b600c80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6060600280546106669061417c565b600f5460ff16610d025760405162461bcd60e51b815260206004820152600d60248201526c53616c6520696e61637469766560981b60448201526064016107b0565b3481601054610d119190614230565b1115610d515760405162461bcd60e51b815260206004820152600f60248201526e15985b1d59481a5b98dbdc9c9958dd608a1b60448201526064016107b0565b601f8110610d8f5760405162461bcd60e51b815260206004820152600b60248201526a4d6178203330204e46547360a81b60448201526064016107b0565b610a2d81336115d5565b61096e33838361177b565b6060610daf826114af565b610dcb5760405162461bcd60e51b81526004016107b0906142d9565b600082815260116020526040812054906012610df0610deb6006856142ff565b611845565b60136014610e05610e0087611934565b611955565b604051602001610e199594939291906143ac565b604051602081830303815290604052905080610e3c610e3784611eb6565b611ed7565b610e5160018516601386901c60021617612210565b604051602001610e63939291906143fc565b60408051808303601f190181529190529050806015610e89610e8485612414565b612435565b610e9a610e95866125eb565b61260c565b610eb9610eb487600281811c60011660149290921c161790565b61292a565b610eca610ec588612a36565b612a57565b610ee1600189811c1660138a901c60021617612c3f565b604051610efa979695949392919060169060200161443f565b60408051601f19818403018152919052949350505050565b610f1a611231565b610a2d816001600160a01b03166000908152600d60205260409020805460ff19169055565b610f4933836112fe565b610f655760405162461bcd60e51b81526004016107b0906141e3565b6109d484848484613498565b6060610f7c826114af565b610f985760405162461bcd60e51b81526004016107b0906142d9565b6000610fa383610da4565b90506000610fb0846134cb565b9050600061104b610fbf610657565b610fc88761374e565b610fd1866137e0565b855115611007576040518060400160405280601181526020017001116101130ba3a3934b13aba32b9911d1607d1b815250611022565b604051806040016040528060018152602001601160f91b8152505b866040516020016110379594939291906144d4565b6040516020818303038152906040526137e0565b90508060405160200161105e91906145d7565b6040516020818303038152906040529350505050919050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6110ad611231565b6001600160a01b0381166111125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b0565b610a2d81611585565b611123611231565b61ffff81161580159061113a5750605a8161ffff16105b6111925760405162461bcd60e51b8152602060048201526024808201527f726f79616c746965732073686f756c64206265206265747765656e203020616e6044820152630642039360e41b60648201526084016107b0565b61119d81606461461c565b600c805461ffff191661ffff92831617905560405190821681527f4d6cb9294cbdb904203aa4a781e367c3d90e784c5d71bda09274843ee48436e59060200160405180910390a150565b60006001600160e01b0319821663152a902d60e11b1480610651575061065182613931565b611215816114af565b610a2d5760405162461bcd60e51b81526004016107b09061428f565b3361123a610c70565b6001600160a01b031614610be25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b0565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112c582610b16565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061130a83610b16565b9050806001600160a01b0316846001600160a01b0316148061133157506113318185611077565b806113555750836001600160a01b031661134a846106e9565b6001600160a01b0316145b949350505050565b826001600160a01b031661137082610b16565b6001600160a01b0316146113965760405162461bcd60e51b81526004016107b090614646565b6001600160a01b0382166113f85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107b0565b826001600160a01b031661140b82610b16565b6001600160a01b0316146114315760405162461bcd60e51b81526004016107b090614646565b600081815260056020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260048552838620805460001901905590871680865283862080546001019055868652600390945282852080549092168417909155905184936000805160206154ed83398151915291a4505050565b6000806114bb8361156a565b6001600160a01b0316141592915050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611519576040519150601f19603f3d011682016040523d82523d6000602084013e61151e565b606091505b50509050806108515760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b60448201526064016107b0565b6000908152600360205260409020546001600160a01b031690565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b33321461161b5760405162461bcd60e51b8152602060048201526014602482015273139bc810dbdb9d1c9858dd1cc8185b1b1bddd95960621b60448201526064016107b0565b600082116116585760405162461bcd60e51b815260206004820152600a6024820152690234e46545320213d20360b41b60448201526064016107b0565b600061166360075490565b90506107d061167284836142c1565b11156116ab5760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b60448201526064016107b0565b821561085157604080514260208201524491810191909152606080820183905233901b6001600160601b031916608082015260009061fec1906094016040516020818303038152906040528051906020012060001c61170a91906142ff565b9050600081600e5461171c91906142c1565b905061172781613981565b15611772576117408461173b8560016142c1565b6139bc565b6000199094019360019283019281906011906000906117609087906142c1565b81526020810191909152604001600020555b600e55506116ab565b816001600160a01b0316836001600160a01b0316036117d85760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016107b0565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6040805161010081018252600660c082018181526521a2a19ca22360d11b60e08401528252825180840184528181526546444631434160d01b60208281019190915280840191909152835180850185528281526522a221a1a11b60d11b8183015283850152835180850185528281526542324336444560d01b81830152606084810191909152845180860186528381526545314531453160d01b81840152608085015284518086019095528285526508670888684760d31b9185019190915260a0830193909352819061191890856142ff565b6006811061192857611928614279565b60200201519392505050565b6010601582901c16600e600c83901c1617600160069290921c919091161790565b6040805161018081018252600661014082018181526565643439343960d01b61016084015282528251808401845281815265333333331a9b60d11b60208281019190915280840191909152835180850185528281526506666376630360d41b8183015283850152835180850185528281526503030626630360d41b818301526060848101919091528451808601865283815265189c9818313360d11b818401526080808601919091528551808701875284815265329c9b18333360d11b8185015260a0860152855180870187528481526536386637636560d01b8185015260c086015285518087018752848152651a9b30b0b33360d11b8185015260e080870191909152865180880188528581526544414646423360d01b818601526101008701528651808801885294855265221aa119a32360d11b8585015261012086019490945285518087018752601e81527f3c70617468207374726f6b652d77696474683d2234222066696c6c3d222300009381019390935285519384019095526055838201818152919592936000939092839290916156229084013981526020016040518060600160405280603c8152602001615980603c913981526020016040518060400160405280600381526020016211179f60e91b8152508152509050600060405180606001604052806040518060800160405280605581526020016152686055913981526020016040518060a00160405280607b8152602001614fb9607b91398152602001604051806080016040528060428152602001614d5f6042913990526040805160e0810190915260526060820181815292935060009282916159bc608084013981526020016040518060c00160405280609581526020016154586095913981526020016040518060800160405280605f8152602001614da1605f91398152509050606087600003611c215750506040805160208101909152600081529695505050505050565b611c2c6003896142ff565b600003611d24578486600a611c4260038c614265565b611c4c91906142ff565b600a8110611c5c57611c5c614279565b602090810291909101518651604051611c769493016143fc565b60408051601f1981840301815291905290508086600a611c9760038c614265565b611ca191906142ff565b600a8110611cb157611cb1614279565b6020020151856001602002015188600a611ccc60038e614265565b611cd691906142ff565b600a8110611ce657611ce6614279565b60200201518760025b6020020151604051602001611d0895949392919061468b565b6040516020818303038152906040529650505050505050919050565b611d2f6003896142ff565b600103611df6578486600a611d4560038c614265565b611d4f91906142ff565b600a8110611d5f57611d5f614279565b602090810291909101518551604051611d799493016143fc565b60408051601f1981840301815291905290508086600a611d9a60038c614265565b611da491906142ff565b600a8110611db457611db4614279565b6020020151846001602002015188600a611dcf60038e614265565b611dd991906142ff565b600a8110611de957611de9614279565b6020020151866002611cef565b8486600a611e0560038c614265565b611e0f91906142ff565b600a8110611e1f57611e1f614279565b602090810291909101518451604051611e399493016143fc565b60408051601f1981840301815291905290508086600a611e5a60038c614265565b611e6491906142ff565b600a8110611e7457611e74614279565b6020020151836001602002015188600a611e8f60038e614265565b611e9991906142ff565b600a8110611ea957611ea9614279565b6020020151856002611cef565b6010601482901c16600e600983901c1617600160059290921c919091161790565b604080518082018252600381526211179f60e91b6020820152815160e081019092526046606083810182815290936000929091829161550d6080840139815260200160405180608001604052806047815260200161559a6047913981526020016040518060600160405280603a8152602001615c67603a91398152509050600060405180604001604052806040518060800160405280604781526020016149d5604791398152602001604051806080016040528060438152602001614e8860439139815250905060006040518060a001604052806040518060400160405280600681526020016503566626630360d41b81525081526020016040518060400160405280600681526020016503030303030360d41b815250815260200160405180604001604052806006815260200165329c9b18333360d11b8152508152602001604051806040016040528060068152602001651a9b30b0b33360d11b81525081526020016040518060400160405280600681526020016503566626630360d41b815250815250905060006040518060a00160405280604051806040016040528060068152602001651a9b30b0b33360d11b81525081526020016040518060400160405280600681526020016506666303030360d41b81525081526020016040518060400160405280600681526020016506666303030360d41b81525081526020016040518060400160405280600681526020016566666666393360d01b81525081526020016040518060400160405280600681526020016566666666393360d01b81525081525090508660000361214257505060408051602081019091526000815295945050505050565b83600361215060058a614265565b61215a91906142ff565b6003811061216a5761216a614279565b60200201518261217b60058a6142ff565b6005811061218b5761218b614279565b60200201518685600261219f600f8d614265565b6121a991906142ff565b600281106121b9576121b9614279565b6020020151846121ca60058d6142ff565b600581106121da576121da614279565b6020020151896040516020016121f5969594939291906146ea565b60405160208183030381529060405295505050505050919050565b60606000604051806060016040528060405180604001604052806002815260200161323560f01b8152508152602001604051806040016040528060038152602001622d323560e81b8152508152602001604051806040016040528060018152602001600360fc1b815250815250905060006040518060600160405280604051806040016040528060038152602001622d323560e81b815250815260200160405180604001604052806002815260200161323560f01b8152508152602001604051806040016040528060018152602001600360fc1b81525081525090506000604051806060016040528060405180604001604052806018815260200177078e4cac6e840e8e4c2dce6ccdee4da7a44e4dee8c2e8ca560431b8152508152602001604051806080016040528060598152602001614b7b6059913981526020016040518060800160405280604181526020016155e160419139905290506123756004866142ff565b6000036123945750506040805160208101909152600081529392505050565b80518360016123a46004896142ff565b6123ae91906141cc565b600381106123be576123be614279565b602002015182600160200201518460016123d960048b6142ff565b6123e391906141cc565b600381106123f3576123f3614279565b6020020151846002602002015160405160200161105e95949392919061468b565b6004601482901c166002600783901c1617600160039290921c919091161790565b604080516101208082018352600660e083018181526546464630393360d01b61010085015283528351808501855281815265181ab330b31b60d11b6020828101919091528085019190915284518086018652828152650c0dd8588c9960d21b8183015284860152845180860186528281526566373035303560d01b818301526060858101919091528551808701875283815265331b9b1c329960d11b818401526080860152855180870187528381526536386637633560d01b8184015260a0860152855180870187529283526531309b98333360d11b9183019190915260c08401919091528351918201845260aa9382018481529093600092918291614ad18388013981526020016040518060400160405280601b81526020017a10101010101010111039ba3937b5b296bbb4b23a341e911a11179f60291b81525081525090508360000361259557505060408051602081019091526000815292915050565b8051826125a36001876141cc565b600781106125b3576125b3614279565b60200201518260015b60200201516040516020016125d3939291906143fc565b60405160208183030381529060405292505050919050565b601681901c601016600e600f83901c1617600160079290921c919091161790565b604080518082018252601e81527f3c70617468207374726f6b652d77696474683d2238222066696c6c3d222300006020820152815160e0810183526061928101838152606093600092918291614e008388013981526020016040518060400160405280600381526020016211179f60e91b8152508152509050600060405180604001604052806040518060a00160405280606c81526020016150c0606c913981526020016040518060400160405280600381526020016211179f60e91b815250815250905060006040518060600160405280604051806080016040528060438152602001614d1c6043913981526020016040518060600160405280603c8152602001614eed603c91398152604080518082018252600381526211179f60e91b60208281019190915292830152805160a081018252600660608201818152651a9b30b0b33360d11b6080840152825282518084018452818152651ab31818313360d11b8186015282850152825180840184529081526506666376630360d41b938101939093529081019190915290915060008790036127be57505060408051602081019091526000815295945050505050565b6127c96003886142ff565b60000361284957848160036127de818b614265565b6127e891906142ff565b600381106127f8576127f8614279565b6020020151855183600361280d60098d614265565b61281791906142ff565b6003811061282757612827614279565b60200201518760015b60200201516040516020016121f595949392919061468b565b6128546003886142ff565b6001036128bf5784816003612869818b614265565b61287391906142ff565b6003811061288357612883614279565b6020020151845183600361289860098d614265565b6128a291906142ff565b600381106128b2576128b2614279565b6020020151866001612830565b81518160036128ce818b614265565b6128d891906142ff565b600381106128e8576128e8614279565b6020020151836001602002015183600361290360098d614265565b61290d91906142ff565b6003811061291d5761291d614279565b6020020151856002612830565b606060006040518060400160405280604051806080016040528060468152602001614f4d604691398152602001604051806101c0016040528061019b81526020016152bd61019b9139815250905060006040518060600160405280604051806040016040528060018152602001603360f91b81525081526020016040518060400160405280600681526020016521a2a19ca22360d11b81525081526020016040518060400160405280600681526020016546444631434160d01b815250815250905083600003612a0b57505060408051602081019091526000815292915050565b815181612a196001876141cc565b60038110612a2957612a29614279565b60200201518360016125bc565b601581901c60049081166002600884901c161760019290911c919091161790565b6060600060405180604001604052806040518060a00160405280606c8152602001615b4d606c913981526020016040518060c00160405280608d8152602001615ca1608d91398152509050600060405180606001604052806040815260200161594060409139905060006040518060e001604052806040518061014001604052806101188152602001615a0e610118913981526020016040518060e0016040528060ae8152602001615bb960ae91398152602001604051806101c0016040528061018d81526020016157b361018d913981526020016040518060c00160405280608e8152602001614a43608e913981526020016040518061018001604052806101488152602001614bd46101489139815260200160405180610160016040528061013c815260200161512c61013c9139815260200160405180610160016040528061013c815260200161567761013c9139815250905084600003612bcd5750506040805160208101909152600081529392505050565b84600703612bf45760208301518160065b602002015160405160200161105e929190614769565b84600603612c09576020830151816005612bde565b82518282612c186001896141cc565b60078110612c2857612c28614279565b602002015160405160200161105e939291906143fc565b60606000604051806101a001604052806040518060400160405280601b81526020017a3c70617468207374726f6b652d77696474683d22342220643d224d60281b8152508152602001604051806040016040528060058152602001640406a6460d60db1b8152508152602001604051806040016040528060028152602001613b1960f11b8152508152602001604051806040016040528060028152602001617a6d60f01b8152508152602001604051806040016040528060148152602001734c353132203531306c2d2e33343720312e39372d60601b81525081526020016040518060400160405280600381526020016207a6d360ec1b8152508152602001604051806040016040528060138152602001724c353132203533306c2e33343720312e39372d60681b81525081526020016040518060400160405280600a8152602001690f49a6a6e60406a6460d60b31b8152508152602001604051806040016040528060028152602001613b1960f11b81525081526020016040518060400160405280600781526020016607a6d2d322d31360cc1b81525081526020016040518060400160405280600781526020016603d3698101918160cd1b815250815260200160405180604001604052806005815260200164312e39372d60d81b8152508152602001604051806040016040528060048152602001633d11179f60e11b815250815250905060006040518061018001604052806040518060400160405280600381526020016203433360ec1b815250815260200160405180604001604052806002815260200161038360f41b8152508152602001604051806040016040528060048152602001630682d38360e41b81525081526020016040518060400160405280600d81526020016c199719189a969919971c1c991960991b81525081526020016040518060400160405280600d81526020016c1b9c171b9c1a969899971c1c9960991b815250815260200160405180604001604052806007815260200166080d0dcb8dce0d60ca1b81525081526020016040518060400160405280600d81526020016c37382e3738342031332e38393160981b815250815260200160405180604001604052806002815260200161038360f41b8152508152602001604051806040016040528060048152602001630682d38360e41b8152508152602001604051806060016040528060258152602001615074602591398152602001604051806040016040528060148152602001730101b9c171b9c1a901899971c1c991697199a1c160651b81525081526020016040518060400160405280600d81526020016c1b9c171b9c1a169899971c1c9960991b815250815250905060006040518061018001604052806040518060400160405280600381526020016203339360ec1b81525081526020016040518060400160405280600381526020016203132360ec1b8152508152602001604051806040016040528060048152602001630483339360e41b81525081526020016040518060400160405280600d81526020016c19971c1919969998171c199c1960991b81525081526020016040518060400160405280600e81526020016d06262705c626e6e5a64605c7066760931b815250815260200160405180604001604052806007815260200166101b18971b1b9b60c91b81525081526020016040518060400160405280600e81526020016d3131382e3137372032302e38333760901b81525081526020016040518060400160405280600381526020016203132360ec1b8152508152602001604051806040016040528060048152602001630483537360e41b8152508152602001604051806060016040528060278152602001615b266027913981526020016040518060400160405280601581526020017401018989c17189b9b901918171c199c1697199a1b9605d1b81525081526020016040518060400160405280600e81526020016d06262705c626e6e5a64605c7066760931b815250815250905060006040518061018001604052806040518060400160405280600381526020016203439360ec1b815250815260200160405180604001604052806002815260200161032360f41b8152508152602001604051806040016040528060048152602001630682d32360e41b81525081526020016040518060400160405280600c81526020016b322e3330342d31332e34373360a01b81525081526020016040518060400160405280600c81526020016b31392e3639362d332e34373360a01b81525081526020016040518060400160405280600781526020016610191b171c9a1b60c91b81525081526020016040518060400160405280600c81526020016b31392e36393620332e34373360a01b815250815260200160405180604001604052806002815260200161032360f41b8152508152602001604051806040016040528060048152602001630682d32360e41b81525081526020016040518060600160405280602381526020016149b260239139815260200160405180604001604052806013815260200172010189c971b1c9b1019971a1b999697199a1b9606d1b81525081526020016040518060400160405280600c81526020016b31392e3639362d332e34373360a01b81525081525090506133cb613d29565b866000036133ed57505060408051602081019091526000815295945050505050565b866001036133fc575082613417565b8660020361340b575081613417565b60028711156134175750805b606060005b600c81101561348057818782600d811061343857613438614279565b60200201518483600c811061344f5761344f614279565b6020020151604051602001613466939291906143fc565b60408051601f19818403018152919052915060010161341c565b50610180860151604051611d08918391602001614769565b6134a384848461135d565b6134af848484846139d3565b6109d45760405162461bcd60e51b81526004016107b090614798565b606060006040518060600160405280602781526020016150996027913990506000604051806060016040528060278152602001614a1c6027913990506000604051806060016040528060278152602001615d2e60279139905060006040518060600160405280602281526020016155786022913990506000604051806060016040528060268152602001614f936026913990506000604051806060016040528060228152602001614ecb60229139905060006040518060600160405280602581526020016155536025913990506000604051806060016040528060278152602001614e616027913990506000604051806060016040528060248152602001614f29602491396040805180820182526003815262227d5d60e81b60208083019190915260008f815260119091529190912054919250906136098d6114af565b6136255760405162461bcd60e51b81526004016107b0906142d9565b60008b61363b6136366006856142ff565b61374e565b8c61364861363686612414565b8d61365e60018816601389901c6002161761374e565b604051602001613673969594939291906146ea565b6040516020818303038152906040529050808961369261363685611eb6565b8a61369f61363687611934565b8b6136ac613636896125eb565b6040516020016136c297969594939291906147ea565b604051602081830303815290604052905080866136ef61363685600281811c60011660149290921c161790565b87613707600187811c16601388901c6002161761374e565b8861371461363689612a36565b8960405160200161372c98979695949392919061487c565b6040516020818303038152906040529c50505050505050505050505050919050565b6060600061375b83613ad4565b60010190506000816001600160401b0381111561377a5761377a613ee3565b6040519080825280601f01601f1916602001820160405280156137a4576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846137ae57509392505050565b606081516000036137ff57505060408051602081019091526000815290565b6000604051806060016040528060408152602001615034604091399050600060038451600261382e91906142c1565b6138389190614265565b613843906004614230565b6001600160401b0381111561385a5761385a613ee3565b6040519080825280601f01601f191660200182016040528015613884576020820181803683370190505b509050600182016020820185865187015b808210156138f0576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250613895565b505060038651066001811461390c576002811461391f57610b0b565b603d6001830353603d6002830353610b0b565b603d6001830353509195945050505050565b60006001600160e01b031982166380ac58cd60e01b148061396257506001600160e01b03198216635b5e139f60e01b145b8061065157506301ffc9a760e01b6001600160e01b0319831614610651565b600061398c82611934565b601f14806139a25750601b6139a0836125eb565b115b806139b557506139b182611eb6565b601f145b1592915050565b6139c68282613baa565b5050600780546001019055565b60006001600160a01b0384163b15613ac957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613a17903390899088908890600401614921565b6020604051808303816000875af1925050508015613a52575060408051601f3d908101601f19168201909252613a4f9181019061495e565b60015b613aaf573d808015613a80576040519150601f19603f3d011682016040523d82523d6000602084013e613a85565b606091505b508051600003613aa75760405162461bcd60e51b81526004016107b090614798565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611355565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310613b135772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b8310613b3d576904ee2d6d415b85acef8160201b830492506020015b662386f26fc100008310613b5b57662386f26fc10000830492506010015b6305f5e1008310613b73576305f5e100830492506008015b6127108310613b8757612710830492506004015b60648310613b99576064830492506002015b600a83106106515760010192915050565b6001600160a01b038216613c005760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107b0565b613c09816114af565b15613c265760405162461bcd60e51b81526004016107b09061497b565b613c2f816114af565b15613c4c5760405162461bcd60e51b81526004016107b09061497b565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291906000805160206154ed833981519152908290a45050565b828054613cb19061417c565b90600052602060002090601f016020900481019282613cd35760008555613d19565b82601f10613cec57805160ff1916838001178555613d19565b82800160010185558215613d19579182015b82811115613d19578251825591602001919060010190613cfe565b50613d25929150613d51565b5090565b604051806101800160405280600c905b6060815260200190600190039081613d395790505090565b5b80821115613d255760008155600101613d52565b6001600160e01b031981168114610a2d57600080fd5b600060208284031215613d8e57600080fd5b8135613d9981613d66565b9392505050565b60005b83811015613dbb578181015183820152602001613da3565b838111156109d45750506000910152565b60008151808452613de4816020860160208601613da0565b601f01601f19169290920160200192915050565b602081526000613d996020830184613dcc565b600060208284031215613e1d57600080fd5b5035919050565b80356001600160a01b0381168114613e3b57600080fd5b919050565b600060208284031215613e5257600080fd5b613d9982613e24565b60008060408385031215613e6e57600080fd5b613e7783613e24565b946020939093013593505050565b600080600060608486031215613e9a57600080fd5b613ea384613e24565b9250613eb160208501613e24565b9150604084013590509250925092565b60008060408385031215613ed457600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115613f1357613f13613ee3565b604051601f8501601f19908116603f01168101908282118183101715613f3b57613f3b613ee3565b81604052809350858152868686011115613f5457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215613f8057600080fd5b81356001600160401b03811115613f9657600080fd5b8201601f81018413613fa757600080fd5b61135584823560208401613ef9565b60008060208385031215613fc957600080fd5b82356001600160401b0380821115613fe057600080fd5b818501915085601f830112613ff457600080fd5b81358181111561400357600080fd5b8660208260051b850101111561401857600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b8181101561406257835183529284019291840191600101614046565b50909695505050505050565b6000806040838503121561408157600080fd5b61408a83613e24565b91506020830135801515811461409f57600080fd5b809150509250929050565b600080600080608085870312156140c057600080fd5b6140c985613e24565b93506140d760208601613e24565b92506040850135915060608501356001600160401b038111156140f957600080fd5b8501601f8101871361410a57600080fd5b61411987823560208401613ef9565b91505092959194509250565b6000806040838503121561413857600080fd5b61414183613e24565b915061414f60208401613e24565b90509250929050565b60006020828403121561416a57600080fd5b813561ffff81168114613d9957600080fd5b600181811c9082168061419057607f821691505b6020821081036141b057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156141de576141de6141b6565b500390565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b600081600019048311821515161561424a5761424a6141b6565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826142745761427461424f565b500490565b634e487b7160e01b600052603260045260246000fd5b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b600082198211156142d4576142d46141b6565b500190565b6020808252600c908201526b4e6f6e2d4578697374696e6760a01b604082015260600190565b60008261430e5761430e61424f565b500690565b8054600090600181811c908083168061432d57607f831692505b6020808410820361434e57634e487b7160e01b600052602260045260246000fd5b8180156143625760018114614373576143a0565b60ff198616895284890196506143a0565b60008881526020902060005b868110156143985781548b82015290850190830161437f565b505084890196505b50505050505092915050565b60006143b88288614313565b86516143c8818360208b01613da0565b6143dd6143d782840189614313565b87614313565b91505083516143f0818360208801613da0565b01979650505050505050565b6000845161440e818460208901613da0565b845190830190614422818360208901613da0565b8451910190614435818360208801613da0565b0195945050505050565b6000895160206144528285838f01613da0565b61445e8285018c614313565b9150895161446f8184848e01613da0565b89519201916144818184848d01613da0565b88519201916144938184848c01613da0565b87519201916144a58184848b01613da0565b86519201916144b78184848a01613da0565b6144c381840187614313565b9d9c50505050505050505050505050565b693d913730b6b2911d101160b11b815285516000906144fa81600a850160208b01613da0565b600160fd1b600a91840191820152865161451b81600b840160208b01613da0565b72111610113232b9b1b934b83a34b7b7111d101160691b600b92909101918201527f6f6362222c2022696d616765223a2022646174613a696d6167652f7376672b78601e820152691b5b0ed8985cd94d8d0b60b21b603e8201528551614588816048840160208a01613da0565b855191019061459e816048840160208901613da0565b84519101906145b4816048840160208801613da0565b6145ca604882840101607d60f81b815260010190565b9998505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161460f81601d850160208701613da0565b91909101601d0192915050565b600061ffff8083168185168183048111821515161561463d5761463d6141b6565b02949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6000865161469d818460208b01613da0565b8651908301906146b1818360208b01613da0565b86519101906146c4818360208a01613da0565b85519101906146d7818360208901613da0565b84519101906143f0818360208801613da0565b6000875160206146fd8285838d01613da0565b8851918401916147108184848d01613da0565b88519201916147228184848c01613da0565b87519201916147348184848b01613da0565b86519201916147468184848a01613da0565b85519201916147588184848901613da0565b919091019998505050505050505050565b6000835161477b818460208801613da0565b83519083019061478f818360208801613da0565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000885160206147fd8285838e01613da0565b8951918401916148108184848e01613da0565b89519201916148228184848d01613da0565b88519201916148348184848c01613da0565b87519201916148468184848b01613da0565b86519201916148588184848a01613da0565b855192019161486a8184848901613da0565b919091019a9950505050505050505050565b60008951602061488f8285838f01613da0565b8a51918401916148a28184848f01613da0565b8a519201916148b48184848e01613da0565b89519201916148c68184848d01613da0565b88519201916148d88184848c01613da0565b87519201916148ea8184848b01613da0565b86519201916148fc8184848a01613da0565b855192019161490e8184848901613da0565b919091019b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061495490830184613dcc565b9695505050505050565b60006020828403121561497057600080fd5b8151613d9981613d66565b6020808252601c908201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60408201526060019056fe2031392e3639362d332e3437332e33343720312e39372d31392e36393620332e3437333c7265637420793d223236322220783d22343430222077696474683d2232303022206865696768743d22343022207374726f6b652d77696474683d223822202066696c6c3d2223227d2c7b2274726169745f74797065223a202242726163656c6574222c2276616c7565223a202266696c6c3d2223666635363536222f3e3c7061746820643d224d3333302e3937203632382e3633356331312e37352d33312e3330342035372e3739203020302034302e3234392d35372e3738392d34302e3234392d31312e37352d37312e35353320302d34302e3234397a22207374726f6b652d77696474683d2238222066696c6c3d2223663035646534222f3e3c636972636c652063793d22353230222063783d223331302220723d2238222066696c6c3d222346464630393322207374726f6b652d77696474683d2234222f3e3c636972636c652063793d22353130222063783d223335302220723d2238222066696c6c3d222346464630393322207374726f6b652d77696474683d2234222f3e3c636972636c652063793d22353139222063783d223333312220723d223132222066696c6c3d222320343635203335302922206865696768743d2238222077696474683d2238302220793d223337302220783d22343235222066696c6c3d2223303030303030222f3e3c72656374207472616e73666f726d3d22726f746174652866696c6c3d2223394638374642222f3e3c7265637420793d223635302220783d22333130222077696474683d22333022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223653036636635222f3e3c7265637420793d223539302220783d22333530222077696474683d22333022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223653036636635222f3e3c7265637420793d223634302220783d22333830222077696474683d22333022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223653036636635222f3e3c7265637420793d223631302220783d22323630222077696474683d22333022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223653036636635222f3e3c706f6c79676f6e20706f696e74733d223534302c353535203531302c373130203537302c3731302220207374726f6b652d77696474683d2238222066696c6c3d2223222f3e3c636972636c652063793d22343237222063783d2236313022207374726f6b652d77696474683d22342220723d223435222066696c6c3d2223666666222f3e22207374726f6b652d77696474683d2234222f3e3c7265637420783d223537302220793d22333837222077696474683d22383022206865696768743d223830222066696c6c3d222366666622207374726f6b652d77696474683d2234222f3e2220643d226d353430203537302038302d32307634307a6d3020302d38302d32307634307a222f3e3c636972636c652063793d22353730222063783d223534302220723d22313422207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a2022576869736b657273222c2276616c7565223a20223c656c6c697073652072793d223232222072783d223730222063793d22323830222063783d2235343022207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a2022546965222c2276616c7565223a2022222f3e3c636972636c652063793d22353730222063783d223534302220723d22313522207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a20225075727365222c2276616c7565223a20223c7265637420793d223335302220783d22373530222077696474683d22323022206865696768743d2231363022207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a2022476c6173736573222c2276616c7565223a2022222f3e3c636972636c652063793d22343237222063783d2234373022207374726f6b652d77696474683d22342220723d223435222066696c6c3d2223666666222f3e3c636972636c652063793d22343237222063783d2236313022207374726f6b652d77696474683d22342220723d223535222066696c6c3d22234142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f2037382e3738352d31332e3839322e33343720312e39372d37382e3738352031332e3839325b7b2274726169745f74797065223a20224261636b67726f756e64222c2276616c7565223a20222220643d226d353430203537302038302d32307634307a6d3020302d38302d32307634307a222f3e3c7265637420783d223532372220793d22353537222077696474683d22323622206865696768743d22323622207374726f6b652d77696474683d2238222066696c6c3d223c7265637420793d223535302220783d22323430222077696474683d2231383022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223396566613834222f3e3c7265637420793d223538302220783d22323430222077696474683d2231383022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223376163396661222f3e3c7265637420793d223631302220783d22323430222077696474683d2231383022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223623637616661222f3e3c7265637420793d223634302220783d22323430222077696474683d2231383022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223656137326637222f3e2220643d224d3439322034313768313430763230483439327a222f3e3c636972636c652063793d22343237222063783d2234373022207374726f6b652d77696474683d22342220723d223535222066696c6c3d2223222f3e3c7265637420793d223335302220783d22373438222077696474683d22323422206865696768743d22343022207374726f6b652d77696474683d2238222066696c6c3d2223464645413030222f3e3c636972636c652063793d22333030222063783d223731302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22323630222063783d223830302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22323330222063783d223733302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22333030222063783d223736302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22333430222063783d223831302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e22207374726f6b652d77696474683d2234222f3e3c7265637420783d223433302220793d22333837222077696474683d22383022206865696768743d223830222066696c6c3d222366666622207374726f6b652d77696474683d2234222f3e3c7265637420783d223536302220793d22333737222077696474683d2231303022206865696768743d22313030222066696c6c3d2223ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef3c7265637420793d223230352220783d22343735222077696474683d2231333022206865696768743d22363022207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a202257697a617264222c2276616c7565223a2022227d2c7b2274726169745f74797065223a2022486174222c2276616c7565223a20223c7265637420793d223134302220783d22343835222077696474683d2231313022206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d222320363135203335302922206865696768743d2238222077696474683d2238302220793d223337302220783d22353735222066696c6c3d2223303030303030222f3e2220643d224d3439322034313768313430763230483439327a222f3e3c636972636c652063793d22343237222063783d2234373022207374726f6b652d77696474683d22342220723d223435222066696c6c3d22233c7265637420793d223536302220783d22323430222077696474683d22343522206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d2223396566613834222f3e3c7265637420793d223536302220783d22323835222077696474683d22343522206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d2223376163396661222f3e3c7265637420793d223536302220783d22333330222077696474683d22343522206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d2223623637616661222f3e3c7265637420793d223536302220783d22333735222077696474683d22343522206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d2223656137326637222f3e66696c6c3d2223666637663030222f3e3c706174682066696c6c3d222366666666353622207374726f6b653d226e756c6c22207374726f6b652d77696474683d22332220643d224d33313520363736632d342d3120312d3420332d35203120302d3720302d342d3220342d3320322d372d312d382d352d332d31322d352d31332d31302d322d3320322d362d312d392d322d3320312d3720322d313020312d352d332d382d362d3132732d352d382d352d3132632d312d3220302d3520332d3220352033203132203720313620313120302032203320372034203320302d3720322d313420392d313820342d332036203220372035203120362d312031312d332031362d3120322d332039203320362031332d3320323920312033382039203420342035203920352031352d32203220362d31203320332d3120342d3620362d3920392d3420322d3120372d3620386c2d32352033632d3420302d372d342d322d3520322d3320382d332031302d332d3520302d31302d312d31332031732d3420362d392037682d367a222f3e3c7265637420793d223538302220783d22323430222077696474683d2231383022206865696768743d2231323022207374726f6b652d77696474683d22382220222f3e3c636972636c652063793d22343237222063783d2236313022207374726f6b652d77696474683d22342220723d223435222066696c6c3d22232220643d224d3439322034313768313430763230483439327a222f3e3c7265637420783d223432302220793d22333737222077696474683d2231303022206865696768743d22313030222066696c6c3d222366696c6c3d2223663035646534222f3e3c636972636c652063793d22363030222063783d223334302220723d223135222066696c6c3d222366306232363722207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22363530222063783d223338302220723d223230222066696c6c3d222366306232363722207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22363530222063783d223238302220723d223136222066696c6c3d222366306232363722207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22363030222063783d223430302220723d223133222066696c6c3d222366306232363722207374726f6b652d77696474683d2238222f3e203131382e3137372d32302e3833382e33343720312e39372d3131382e3137372032302e3833383c636972636c652063793d22353830222063783d223333302220723d22363022207374726f6b653d226e6f6e65222f3e3c636972636c652063793d22353830222063783d223333302220723d223430222066696c6c3d222366666622207374726f6b653d226e6f6e65222f3e66696c6c3d2223663733313439222f3e3c7265637420793d223630302220783d22323630222077696474683d2231343022206865696768743d22383022207374726f6b652d77696474683d2238222066696c6c3d2223663538383232222f3e3c7265637420793d223632302220783d22323830222077696474683d2231303022206865696768743d22343022207374726f6b652d77696474683d2238222066696c6c3d2223663563343364222f3e3c636972636c652063793d22323338222063783d2235343022207374726f6b652d77696474683d2231302220723d223632222066696c6c3d22233c7265637420793d223533302220783d22323830222077696474683d2231303022206865696768743d2231323022207374726f6b652d77696474683d2238222f3e3c7265637420793d223533302220783d22323930222077696474683d22383022206865696768743d2231303022207374726f6b652d77696474683d2238222066696c6c3d2223666666222f3e227d2c7b2274726169745f74797065223a202245796562726f7773222c2276616c7565223a2022a264697066735822122055f515b4cc4daa252ec6c8fc06f02e63b7cd1cd9166aa7c6dd3fd381dfe06e8464736f6c634300080d003322207374726f6b653d22233030302220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c656c6c69707365207374726f6b652d77696474683d223130222072793d22323636222072783d22323030222063793d22353430222063783d22353430222066696c6c3d2223666666222f3e3c7376672077696474683d223130383022206865696768743d223130383022207374796c653d226261636b67726f756e642d636f6c6f723a233c656c6c69707365207472616e73666f726d3d22726f74617465283235203636302032353029222072793d22313037222072783d223435222063793d22323530222063783d2236363022207374726f6b652d77696474683d223130222066696c6c3d2223666666222f3e3c656c6c69707365207472616e73666f726d3d22726f74617465282d3235203432302032353029222072793d22313037222072783d223435222063793d22323530222063783d2234323022207374726f6b652d77696474683d223130222066696c6c3d2223666666222f3e3c656c6c69707365207472616e73666f726d3d22726f74617465282d3235203433352032383329222072793d223638222072783d223236222063793d22323833222063783d2234333522207374726f6b652d77696474683d223130222066696c6c3d2223464641464343222f3e3c656c6c69707365207472616e73666f726d3d22726f74617465283235203634352032383329222072793d223638222072783d223236222063793d22323833222063783d2236343522207374726f6b652d77696474683d223130222066696c6c3d2223464641464343222f3e3c636972636c652063793d22343237222063783d2234373022207374726f6b652d77696474683d2231302220723d223330222f3e3c636972636c652063793d22343237222063783d2236313022207374726f6b652d77696474683d2231302220723d223330222f3e3c636972636c652063793d22343138222063783d223436352220723d223132222066696c6c3d222366666622207374726f6b653d226e6f6e65222f3e3c636972636c652063793d22343430222063783d223438342220723d2236222066696c6c3d222366666622207374726f6b653d226e6f6e65222f3e3c636972636c652063793d22343138222063783d223631352220723d223132222066696c6c3d222366666622207374726f6b653d226e6f6e65222f3e3c636972636c652063793d22343430222063783d223630302220723d2238222066696c6c3d222366666622207374726f6b653d226e6f6e65222f3e3c636972636c652063793d22353230222063783d2235343022207374726f6b652d77696474683d2234222066696c6c3d22234646414643432220723d223134222f3e3c656c6c697073652072793d22313230222072783d22313030222063793d22363835222063783d2235343022207374726f6b652d77696474683d2234222066696c6c3d2223464645324646222f3e3c656c6c697073652072793d22313036222072783d223830222063793d22363937222063783d22353430222066696c6c3d222346464146434322207374726f6b653d226e6f6e65222f3e3c656c6c69707365207472616e73666f726d3d22726f74617465282d3137203631302038303429222072793d223433222072783d223330222063793d22383034222063783d2236313022207374726f6b652d77696474683d223130222066696c6c3d2223666666222f3e3c656c6c69707365207472616e73666f726d3d22726f74617465283137203437302038303429222072793d223433222072783d223330222063793d22383034222063783d2234373022207374726f6b652d77696474683d223130222066696c6c3d2223666666222f3e3c656c6c69707365207472616e73666f726d3d22726f74617465283330203735302035313829222072793d223438222072783d223331222063793d22353138222063783d2237353022207374726f6b652d77696474683d223130222066696c6c3d2223666666222f3e3c656c6c69707365207472616e73666f726d3d22726f74617465282d3330203333302035313829222072793d223438222072783d223331222063793d22353138222063783d2233333022207374726f6b652d77696474683d223130222066696c6c3d2223666666222f3e

Deployed Bytecode

0x6080604052600436106101985760003560e01c806301ffc9a7146101a457806306fdde03146101d9578063081812fc146101fb57806308af4d8814610233578063095ea7b31461025557806318160ddd1461027557806323b872dd1461029857806324d38d9f146102b85780632a55205a146102ce57806330176e131461030d57806334918dfd1461032d5780633863b1f5146103425780633ccfd60b1461036257806342842e0e14610377578063438b6300146103975780636352211e146103c457806370a08231146103e4578063715018a6146104045780637ff9b596146104195780638ba4cc3c1461042f5780638da5cb5b1461044f5780638dc251e31461046457806395d89b4114610484578063a0712d6814610499578063a22cb465146104ac578063a2d6c6da146104cc578063b7c58d7a146104ec578063b88d4fde1461050c578063c87b56dd1461052c578063e63427121461054c578063e985e9c514610579578063eb8d244414610599578063f2fde38b146105b3578063f5964e08146105d3578063f7e079671461060c57600080fd5b3661019f57005b600080fd5b3480156101b057600080fd5b506101c46101bf366004613d7c565b61062c565b60405190151581526020015b60405180910390f35b3480156101e557600080fd5b506101ee610657565b6040516101d09190613df8565b34801561020757600080fd5b5061021b610216366004613e0b565b6106e9565b6040516001600160a01b0390911681526020016101d0565b34801561023f57600080fd5b5061025361024e366004613e40565b610710565b005b34801561026157600080fd5b50610253610270366004613e5b565b61073c565b34801561028157600080fd5b5061028a610856565b6040519081526020016101d0565b3480156102a457600080fd5b506102536102b3366004613e85565b61086d565b3480156102c457600080fd5b5061028a600e5481565b3480156102da57600080fd5b506102ee6102e9366004613ec1565b61089e565b604080516001600160a01b0390931683526020830191909152016101d0565b34801561031957600080fd5b50610253610328366004613f6e565b610953565b34801561033957600080fd5b50610253610972565b34801561034e57600080fd5b5061025361035d366004613fb6565b61098e565b34801561036e57600080fd5b506102536109da565b34801561038357600080fd5b50610253610392366004613e85565b610a30565b3480156103a357600080fd5b506103b76103b2366004613e40565b610a4b565b6040516101d0919061402a565b3480156103d057600080fd5b5061021b6103df366004613e0b565b610b16565b3480156103f057600080fd5b5061028a6103ff366004613e40565b610b4a565b34801561041057600080fd5b50610253610bd0565b34801561042557600080fd5b5061028a60105481565b34801561043b57600080fd5b5061025361044a366004613e5b565b610be4565b34801561045b57600080fd5b5061021b610c70565b34801561047057600080fd5b5061025361047f366004613e40565b610c7f565b34801561049057600080fd5b506101ee610cb1565b6102536104a7366004613e0b565b610cc0565b3480156104b857600080fd5b506102536104c736600461406e565b610d99565b3480156104d857600080fd5b506101ee6104e7366004613e0b565b610da4565b3480156104f857600080fd5b50610253610507366004613e40565b610f12565b34801561051857600080fd5b506102536105273660046140aa565b610f3f565b34801561053857600080fd5b506101ee610547366004613e0b565b610f71565b34801561055857600080fd5b5061028a610567366004613e0b565b60116020526000908152604090205481565b34801561058557600080fd5b506101c4610594366004614125565b611077565b3480156105a557600080fd5b50600f546101c49060ff1681565b3480156105bf57600080fd5b506102536105ce366004613e40565b6110a5565b3480156105df57600080fd5b506101c46105ee366004613e40565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561061857600080fd5b50610253610627366004614158565b61111b565b60006001600160e01b0319821663152a902d60e11b14806106515750610651826111e7565b92915050565b6060600180546106669061417c565b80601f01602080910402602001604051908101604052809291908181526020018280546106929061417c565b80156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b60006106f48261120c565b506000908152600560205260409020546001600160a01b031690565b610718611231565b6001600160a01b03166000908152600d60205260409020805460ff19166001179055565b600061074782610b16565b9050806001600160a01b0316836001600160a01b0316036107b95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107d557506107d58133611077565b6108475760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016107b0565b6108518383611290565b505050565b600060085460075461086891906141cc565b905090565b61087733826112fe565b6108935760405162461bcd60e51b81526004016107b0906141e3565b61085183838361135d565b6000806108aa846114af565b6109195760405162461bcd60e51b815260206004820152603a60248201527f45524332393831526f79616c74795374616e646172643a20526f79616c74792060448201527934b73337903337b9103737b732bc34b9ba32b73a103a37b5b2b760311b60648201526084016107b0565b600c546001600160a01b0362010000820416906127109061093e9061ffff1686614230565b6109489190614265565b915091509250929050565b61095b611231565b805161096e906009906020840190613ca5565b5050565b61097a611231565b600f805460ff19811660ff90911615179055565b610996611231565b8060005b818110156109d4576109cc8484838181106109b7576109b7614279565b905060200201602081019061024e9190613e40565b60010161099a565b50505050565b6109e2611231565b4780610a1c5760405162461bcd60e51b8152602060048201526009602482015268302062616c616e636560b81b60448201526064016107b0565b610a2d610a27610c70565b826114cc565b50565b61085183838360405180602001604052806000815250610f3f565b60606000610a5883610b4a565b90506000816001600160401b03811115610a7457610a74613ee3565b604051908082528060200260200182016040528015610a9d578160200160208202803683370190505b5060075490915060009081905b84821015610b0b5780831015610b0b57866001600160a01b0316610acd8461156a565b6001600160a01b031603610b005782848381518110610aee57610aee614279565b60209081029190910101526001909101905b600190920191610aaa565b509195945050505050565b600080610b228361156a565b90506001600160a01b0381166106515760405162461bcd60e51b81526004016107b09061428f565b60006001600160a01b038216610bb45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016107b0565b506001600160a01b031660009081526004602052604090205490565b610bd8611231565b610be26000611585565b565b610bec611231565b6000610bf760075490565b90506107d0610c0683836142c1565b1115610c665760405162461bcd60e51b815260206004820152602960248201527f5265736572766520776f756c6420657863656564206d617820737570706c79206044820152686f6620546f6b656e7360b81b60648201526084016107b0565b61085182846115d5565b6000546001600160a01b031690565b610c87611231565b600c80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6060600280546106669061417c565b600f5460ff16610d025760405162461bcd60e51b815260206004820152600d60248201526c53616c6520696e61637469766560981b60448201526064016107b0565b3481601054610d119190614230565b1115610d515760405162461bcd60e51b815260206004820152600f60248201526e15985b1d59481a5b98dbdc9c9958dd608a1b60448201526064016107b0565b601f8110610d8f5760405162461bcd60e51b815260206004820152600b60248201526a4d6178203330204e46547360a81b60448201526064016107b0565b610a2d81336115d5565b61096e33838361177b565b6060610daf826114af565b610dcb5760405162461bcd60e51b81526004016107b0906142d9565b600082815260116020526040812054906012610df0610deb6006856142ff565b611845565b60136014610e05610e0087611934565b611955565b604051602001610e199594939291906143ac565b604051602081830303815290604052905080610e3c610e3784611eb6565b611ed7565b610e5160018516601386901c60021617612210565b604051602001610e63939291906143fc565b60408051808303601f190181529190529050806015610e89610e8485612414565b612435565b610e9a610e95866125eb565b61260c565b610eb9610eb487600281811c60011660149290921c161790565b61292a565b610eca610ec588612a36565b612a57565b610ee1600189811c1660138a901c60021617612c3f565b604051610efa979695949392919060169060200161443f565b60408051601f19818403018152919052949350505050565b610f1a611231565b610a2d816001600160a01b03166000908152600d60205260409020805460ff19169055565b610f4933836112fe565b610f655760405162461bcd60e51b81526004016107b0906141e3565b6109d484848484613498565b6060610f7c826114af565b610f985760405162461bcd60e51b81526004016107b0906142d9565b6000610fa383610da4565b90506000610fb0846134cb565b9050600061104b610fbf610657565b610fc88761374e565b610fd1866137e0565b855115611007576040518060400160405280601181526020017001116101130ba3a3934b13aba32b9911d1607d1b815250611022565b604051806040016040528060018152602001601160f91b8152505b866040516020016110379594939291906144d4565b6040516020818303038152906040526137e0565b90508060405160200161105e91906145d7565b6040516020818303038152906040529350505050919050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6110ad611231565b6001600160a01b0381166111125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b0565b610a2d81611585565b611123611231565b61ffff81161580159061113a5750605a8161ffff16105b6111925760405162461bcd60e51b8152602060048201526024808201527f726f79616c746965732073686f756c64206265206265747765656e203020616e6044820152630642039360e41b60648201526084016107b0565b61119d81606461461c565b600c805461ffff191661ffff92831617905560405190821681527f4d6cb9294cbdb904203aa4a781e367c3d90e784c5d71bda09274843ee48436e59060200160405180910390a150565b60006001600160e01b0319821663152a902d60e11b1480610651575061065182613931565b611215816114af565b610a2d5760405162461bcd60e51b81526004016107b09061428f565b3361123a610c70565b6001600160a01b031614610be25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b0565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112c582610b16565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061130a83610b16565b9050806001600160a01b0316846001600160a01b0316148061133157506113318185611077565b806113555750836001600160a01b031661134a846106e9565b6001600160a01b0316145b949350505050565b826001600160a01b031661137082610b16565b6001600160a01b0316146113965760405162461bcd60e51b81526004016107b090614646565b6001600160a01b0382166113f85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107b0565b826001600160a01b031661140b82610b16565b6001600160a01b0316146114315760405162461bcd60e51b81526004016107b090614646565b600081815260056020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260048552838620805460001901905590871680865283862080546001019055868652600390945282852080549092168417909155905184936000805160206154ed83398151915291a4505050565b6000806114bb8361156a565b6001600160a01b0316141592915050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611519576040519150601f19603f3d011682016040523d82523d6000602084013e61151e565b606091505b50509050806108515760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b60448201526064016107b0565b6000908152600360205260409020546001600160a01b031690565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b33321461161b5760405162461bcd60e51b8152602060048201526014602482015273139bc810dbdb9d1c9858dd1cc8185b1b1bddd95960621b60448201526064016107b0565b600082116116585760405162461bcd60e51b815260206004820152600a6024820152690234e46545320213d20360b41b60448201526064016107b0565b600061166360075490565b90506107d061167284836142c1565b11156116ab5760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b60448201526064016107b0565b821561085157604080514260208201524491810191909152606080820183905233901b6001600160601b031916608082015260009061fec1906094016040516020818303038152906040528051906020012060001c61170a91906142ff565b9050600081600e5461171c91906142c1565b905061172781613981565b15611772576117408461173b8560016142c1565b6139bc565b6000199094019360019283019281906011906000906117609087906142c1565b81526020810191909152604001600020555b600e55506116ab565b816001600160a01b0316836001600160a01b0316036117d85760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016107b0565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6040805161010081018252600660c082018181526521a2a19ca22360d11b60e08401528252825180840184528181526546444631434160d01b60208281019190915280840191909152835180850185528281526522a221a1a11b60d11b8183015283850152835180850185528281526542324336444560d01b81830152606084810191909152845180860186528381526545314531453160d01b81840152608085015284518086019095528285526508670888684760d31b9185019190915260a0830193909352819061191890856142ff565b6006811061192857611928614279565b60200201519392505050565b6010601582901c16600e600c83901c1617600160069290921c919091161790565b6040805161018081018252600661014082018181526565643439343960d01b61016084015282528251808401845281815265333333331a9b60d11b60208281019190915280840191909152835180850185528281526506666376630360d41b8183015283850152835180850185528281526503030626630360d41b818301526060848101919091528451808601865283815265189c9818313360d11b818401526080808601919091528551808701875284815265329c9b18333360d11b8185015260a0860152855180870187528481526536386637636560d01b8185015260c086015285518087018752848152651a9b30b0b33360d11b8185015260e080870191909152865180880188528581526544414646423360d01b818601526101008701528651808801885294855265221aa119a32360d11b8585015261012086019490945285518087018752601e81527f3c70617468207374726f6b652d77696474683d2234222066696c6c3d222300009381019390935285519384019095526055838201818152919592936000939092839290916156229084013981526020016040518060600160405280603c8152602001615980603c913981526020016040518060400160405280600381526020016211179f60e91b8152508152509050600060405180606001604052806040518060800160405280605581526020016152686055913981526020016040518060a00160405280607b8152602001614fb9607b91398152602001604051806080016040528060428152602001614d5f6042913990526040805160e0810190915260526060820181815292935060009282916159bc608084013981526020016040518060c00160405280609581526020016154586095913981526020016040518060800160405280605f8152602001614da1605f91398152509050606087600003611c215750506040805160208101909152600081529695505050505050565b611c2c6003896142ff565b600003611d24578486600a611c4260038c614265565b611c4c91906142ff565b600a8110611c5c57611c5c614279565b602090810291909101518651604051611c769493016143fc565b60408051601f1981840301815291905290508086600a611c9760038c614265565b611ca191906142ff565b600a8110611cb157611cb1614279565b6020020151856001602002015188600a611ccc60038e614265565b611cd691906142ff565b600a8110611ce657611ce6614279565b60200201518760025b6020020151604051602001611d0895949392919061468b565b6040516020818303038152906040529650505050505050919050565b611d2f6003896142ff565b600103611df6578486600a611d4560038c614265565b611d4f91906142ff565b600a8110611d5f57611d5f614279565b602090810291909101518551604051611d799493016143fc565b60408051601f1981840301815291905290508086600a611d9a60038c614265565b611da491906142ff565b600a8110611db457611db4614279565b6020020151846001602002015188600a611dcf60038e614265565b611dd991906142ff565b600a8110611de957611de9614279565b6020020151866002611cef565b8486600a611e0560038c614265565b611e0f91906142ff565b600a8110611e1f57611e1f614279565b602090810291909101518451604051611e399493016143fc565b60408051601f1981840301815291905290508086600a611e5a60038c614265565b611e6491906142ff565b600a8110611e7457611e74614279565b6020020151836001602002015188600a611e8f60038e614265565b611e9991906142ff565b600a8110611ea957611ea9614279565b6020020151856002611cef565b6010601482901c16600e600983901c1617600160059290921c919091161790565b604080518082018252600381526211179f60e91b6020820152815160e081019092526046606083810182815290936000929091829161550d6080840139815260200160405180608001604052806047815260200161559a6047913981526020016040518060600160405280603a8152602001615c67603a91398152509050600060405180604001604052806040518060800160405280604781526020016149d5604791398152602001604051806080016040528060438152602001614e8860439139815250905060006040518060a001604052806040518060400160405280600681526020016503566626630360d41b81525081526020016040518060400160405280600681526020016503030303030360d41b815250815260200160405180604001604052806006815260200165329c9b18333360d11b8152508152602001604051806040016040528060068152602001651a9b30b0b33360d11b81525081526020016040518060400160405280600681526020016503566626630360d41b815250815250905060006040518060a00160405280604051806040016040528060068152602001651a9b30b0b33360d11b81525081526020016040518060400160405280600681526020016506666303030360d41b81525081526020016040518060400160405280600681526020016506666303030360d41b81525081526020016040518060400160405280600681526020016566666666393360d01b81525081526020016040518060400160405280600681526020016566666666393360d01b81525081525090508660000361214257505060408051602081019091526000815295945050505050565b83600361215060058a614265565b61215a91906142ff565b6003811061216a5761216a614279565b60200201518261217b60058a6142ff565b6005811061218b5761218b614279565b60200201518685600261219f600f8d614265565b6121a991906142ff565b600281106121b9576121b9614279565b6020020151846121ca60058d6142ff565b600581106121da576121da614279565b6020020151896040516020016121f5969594939291906146ea565b60405160208183030381529060405295505050505050919050565b60606000604051806060016040528060405180604001604052806002815260200161323560f01b8152508152602001604051806040016040528060038152602001622d323560e81b8152508152602001604051806040016040528060018152602001600360fc1b815250815250905060006040518060600160405280604051806040016040528060038152602001622d323560e81b815250815260200160405180604001604052806002815260200161323560f01b8152508152602001604051806040016040528060018152602001600360fc1b81525081525090506000604051806060016040528060405180604001604052806018815260200177078e4cac6e840e8e4c2dce6ccdee4da7a44e4dee8c2e8ca560431b8152508152602001604051806080016040528060598152602001614b7b6059913981526020016040518060800160405280604181526020016155e160419139905290506123756004866142ff565b6000036123945750506040805160208101909152600081529392505050565b80518360016123a46004896142ff565b6123ae91906141cc565b600381106123be576123be614279565b602002015182600160200201518460016123d960048b6142ff565b6123e391906141cc565b600381106123f3576123f3614279565b6020020151846002602002015160405160200161105e95949392919061468b565b6004601482901c166002600783901c1617600160039290921c919091161790565b604080516101208082018352600660e083018181526546464630393360d01b61010085015283528351808501855281815265181ab330b31b60d11b6020828101919091528085019190915284518086018652828152650c0dd8588c9960d21b8183015284860152845180860186528281526566373035303560d01b818301526060858101919091528551808701875283815265331b9b1c329960d11b818401526080860152855180870187528381526536386637633560d01b8184015260a0860152855180870187529283526531309b98333360d11b9183019190915260c08401919091528351918201845260aa9382018481529093600092918291614ad18388013981526020016040518060400160405280601b81526020017a10101010101010111039ba3937b5b296bbb4b23a341e911a11179f60291b81525081525090508360000361259557505060408051602081019091526000815292915050565b8051826125a36001876141cc565b600781106125b3576125b3614279565b60200201518260015b60200201516040516020016125d3939291906143fc565b60405160208183030381529060405292505050919050565b601681901c601016600e600f83901c1617600160079290921c919091161790565b604080518082018252601e81527f3c70617468207374726f6b652d77696474683d2238222066696c6c3d222300006020820152815160e0810183526061928101838152606093600092918291614e008388013981526020016040518060400160405280600381526020016211179f60e91b8152508152509050600060405180604001604052806040518060a00160405280606c81526020016150c0606c913981526020016040518060400160405280600381526020016211179f60e91b815250815250905060006040518060600160405280604051806080016040528060438152602001614d1c6043913981526020016040518060600160405280603c8152602001614eed603c91398152604080518082018252600381526211179f60e91b60208281019190915292830152805160a081018252600660608201818152651a9b30b0b33360d11b6080840152825282518084018452818152651ab31818313360d11b8186015282850152825180840184529081526506666376630360d41b938101939093529081019190915290915060008790036127be57505060408051602081019091526000815295945050505050565b6127c96003886142ff565b60000361284957848160036127de818b614265565b6127e891906142ff565b600381106127f8576127f8614279565b6020020151855183600361280d60098d614265565b61281791906142ff565b6003811061282757612827614279565b60200201518760015b60200201516040516020016121f595949392919061468b565b6128546003886142ff565b6001036128bf5784816003612869818b614265565b61287391906142ff565b6003811061288357612883614279565b6020020151845183600361289860098d614265565b6128a291906142ff565b600381106128b2576128b2614279565b6020020151866001612830565b81518160036128ce818b614265565b6128d891906142ff565b600381106128e8576128e8614279565b6020020151836001602002015183600361290360098d614265565b61290d91906142ff565b6003811061291d5761291d614279565b6020020151856002612830565b606060006040518060400160405280604051806080016040528060468152602001614f4d604691398152602001604051806101c0016040528061019b81526020016152bd61019b9139815250905060006040518060600160405280604051806040016040528060018152602001603360f91b81525081526020016040518060400160405280600681526020016521a2a19ca22360d11b81525081526020016040518060400160405280600681526020016546444631434160d01b815250815250905083600003612a0b57505060408051602081019091526000815292915050565b815181612a196001876141cc565b60038110612a2957612a29614279565b60200201518360016125bc565b601581901c60049081166002600884901c161760019290911c919091161790565b6060600060405180604001604052806040518060a00160405280606c8152602001615b4d606c913981526020016040518060c00160405280608d8152602001615ca1608d91398152509050600060405180606001604052806040815260200161594060409139905060006040518060e001604052806040518061014001604052806101188152602001615a0e610118913981526020016040518060e0016040528060ae8152602001615bb960ae91398152602001604051806101c0016040528061018d81526020016157b361018d913981526020016040518060c00160405280608e8152602001614a43608e913981526020016040518061018001604052806101488152602001614bd46101489139815260200160405180610160016040528061013c815260200161512c61013c9139815260200160405180610160016040528061013c815260200161567761013c9139815250905084600003612bcd5750506040805160208101909152600081529392505050565b84600703612bf45760208301518160065b602002015160405160200161105e929190614769565b84600603612c09576020830151816005612bde565b82518282612c186001896141cc565b60078110612c2857612c28614279565b602002015160405160200161105e939291906143fc565b60606000604051806101a001604052806040518060400160405280601b81526020017a3c70617468207374726f6b652d77696474683d22342220643d224d60281b8152508152602001604051806040016040528060058152602001640406a6460d60db1b8152508152602001604051806040016040528060028152602001613b1960f11b8152508152602001604051806040016040528060028152602001617a6d60f01b8152508152602001604051806040016040528060148152602001734c353132203531306c2d2e33343720312e39372d60601b81525081526020016040518060400160405280600381526020016207a6d360ec1b8152508152602001604051806040016040528060138152602001724c353132203533306c2e33343720312e39372d60681b81525081526020016040518060400160405280600a8152602001690f49a6a6e60406a6460d60b31b8152508152602001604051806040016040528060028152602001613b1960f11b81525081526020016040518060400160405280600781526020016607a6d2d322d31360cc1b81525081526020016040518060400160405280600781526020016603d3698101918160cd1b815250815260200160405180604001604052806005815260200164312e39372d60d81b8152508152602001604051806040016040528060048152602001633d11179f60e11b815250815250905060006040518061018001604052806040518060400160405280600381526020016203433360ec1b815250815260200160405180604001604052806002815260200161038360f41b8152508152602001604051806040016040528060048152602001630682d38360e41b81525081526020016040518060400160405280600d81526020016c199719189a969919971c1c991960991b81525081526020016040518060400160405280600d81526020016c1b9c171b9c1a969899971c1c9960991b815250815260200160405180604001604052806007815260200166080d0dcb8dce0d60ca1b81525081526020016040518060400160405280600d81526020016c37382e3738342031332e38393160981b815250815260200160405180604001604052806002815260200161038360f41b8152508152602001604051806040016040528060048152602001630682d38360e41b8152508152602001604051806060016040528060258152602001615074602591398152602001604051806040016040528060148152602001730101b9c171b9c1a901899971c1c991697199a1c160651b81525081526020016040518060400160405280600d81526020016c1b9c171b9c1a169899971c1c9960991b815250815250905060006040518061018001604052806040518060400160405280600381526020016203339360ec1b81525081526020016040518060400160405280600381526020016203132360ec1b8152508152602001604051806040016040528060048152602001630483339360e41b81525081526020016040518060400160405280600d81526020016c19971c1919969998171c199c1960991b81525081526020016040518060400160405280600e81526020016d06262705c626e6e5a64605c7066760931b815250815260200160405180604001604052806007815260200166101b18971b1b9b60c91b81525081526020016040518060400160405280600e81526020016d3131382e3137372032302e38333760901b81525081526020016040518060400160405280600381526020016203132360ec1b8152508152602001604051806040016040528060048152602001630483537360e41b8152508152602001604051806060016040528060278152602001615b266027913981526020016040518060400160405280601581526020017401018989c17189b9b901918171c199c1697199a1b9605d1b81525081526020016040518060400160405280600e81526020016d06262705c626e6e5a64605c7066760931b815250815250905060006040518061018001604052806040518060400160405280600381526020016203439360ec1b815250815260200160405180604001604052806002815260200161032360f41b8152508152602001604051806040016040528060048152602001630682d32360e41b81525081526020016040518060400160405280600c81526020016b322e3330342d31332e34373360a01b81525081526020016040518060400160405280600c81526020016b31392e3639362d332e34373360a01b81525081526020016040518060400160405280600781526020016610191b171c9a1b60c91b81525081526020016040518060400160405280600c81526020016b31392e36393620332e34373360a01b815250815260200160405180604001604052806002815260200161032360f41b8152508152602001604051806040016040528060048152602001630682d32360e41b81525081526020016040518060600160405280602381526020016149b260239139815260200160405180604001604052806013815260200172010189c971b1c9b1019971a1b999697199a1b9606d1b81525081526020016040518060400160405280600c81526020016b31392e3639362d332e34373360a01b81525081525090506133cb613d29565b866000036133ed57505060408051602081019091526000815295945050505050565b866001036133fc575082613417565b8660020361340b575081613417565b60028711156134175750805b606060005b600c81101561348057818782600d811061343857613438614279565b60200201518483600c811061344f5761344f614279565b6020020151604051602001613466939291906143fc565b60408051601f19818403018152919052915060010161341c565b50610180860151604051611d08918391602001614769565b6134a384848461135d565b6134af848484846139d3565b6109d45760405162461bcd60e51b81526004016107b090614798565b606060006040518060600160405280602781526020016150996027913990506000604051806060016040528060278152602001614a1c6027913990506000604051806060016040528060278152602001615d2e60279139905060006040518060600160405280602281526020016155786022913990506000604051806060016040528060268152602001614f936026913990506000604051806060016040528060228152602001614ecb60229139905060006040518060600160405280602581526020016155536025913990506000604051806060016040528060278152602001614e616027913990506000604051806060016040528060248152602001614f29602491396040805180820182526003815262227d5d60e81b60208083019190915260008f815260119091529190912054919250906136098d6114af565b6136255760405162461bcd60e51b81526004016107b0906142d9565b60008b61363b6136366006856142ff565b61374e565b8c61364861363686612414565b8d61365e60018816601389901c6002161761374e565b604051602001613673969594939291906146ea565b6040516020818303038152906040529050808961369261363685611eb6565b8a61369f61363687611934565b8b6136ac613636896125eb565b6040516020016136c297969594939291906147ea565b604051602081830303815290604052905080866136ef61363685600281811c60011660149290921c161790565b87613707600187811c16601388901c6002161761374e565b8861371461363689612a36565b8960405160200161372c98979695949392919061487c565b6040516020818303038152906040529c50505050505050505050505050919050565b6060600061375b83613ad4565b60010190506000816001600160401b0381111561377a5761377a613ee3565b6040519080825280601f01601f1916602001820160405280156137a4576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846137ae57509392505050565b606081516000036137ff57505060408051602081019091526000815290565b6000604051806060016040528060408152602001615034604091399050600060038451600261382e91906142c1565b6138389190614265565b613843906004614230565b6001600160401b0381111561385a5761385a613ee3565b6040519080825280601f01601f191660200182016040528015613884576020820181803683370190505b509050600182016020820185865187015b808210156138f0576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250613895565b505060038651066001811461390c576002811461391f57610b0b565b603d6001830353603d6002830353610b0b565b603d6001830353509195945050505050565b60006001600160e01b031982166380ac58cd60e01b148061396257506001600160e01b03198216635b5e139f60e01b145b8061065157506301ffc9a760e01b6001600160e01b0319831614610651565b600061398c82611934565b601f14806139a25750601b6139a0836125eb565b115b806139b557506139b182611eb6565b601f145b1592915050565b6139c68282613baa565b5050600780546001019055565b60006001600160a01b0384163b15613ac957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613a17903390899088908890600401614921565b6020604051808303816000875af1925050508015613a52575060408051601f3d908101601f19168201909252613a4f9181019061495e565b60015b613aaf573d808015613a80576040519150601f19603f3d011682016040523d82523d6000602084013e613a85565b606091505b508051600003613aa75760405162461bcd60e51b81526004016107b090614798565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611355565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310613b135772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b8310613b3d576904ee2d6d415b85acef8160201b830492506020015b662386f26fc100008310613b5b57662386f26fc10000830492506010015b6305f5e1008310613b73576305f5e100830492506008015b6127108310613b8757612710830492506004015b60648310613b99576064830492506002015b600a83106106515760010192915050565b6001600160a01b038216613c005760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107b0565b613c09816114af565b15613c265760405162461bcd60e51b81526004016107b09061497b565b613c2f816114af565b15613c4c5760405162461bcd60e51b81526004016107b09061497b565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291906000805160206154ed833981519152908290a45050565b828054613cb19061417c565b90600052602060002090601f016020900481019282613cd35760008555613d19565b82601f10613cec57805160ff1916838001178555613d19565b82800160010185558215613d19579182015b82811115613d19578251825591602001919060010190613cfe565b50613d25929150613d51565b5090565b604051806101800160405280600c905b6060815260200190600190039081613d395790505090565b5b80821115613d255760008155600101613d52565b6001600160e01b031981168114610a2d57600080fd5b600060208284031215613d8e57600080fd5b8135613d9981613d66565b9392505050565b60005b83811015613dbb578181015183820152602001613da3565b838111156109d45750506000910152565b60008151808452613de4816020860160208601613da0565b601f01601f19169290920160200192915050565b602081526000613d996020830184613dcc565b600060208284031215613e1d57600080fd5b5035919050565b80356001600160a01b0381168114613e3b57600080fd5b919050565b600060208284031215613e5257600080fd5b613d9982613e24565b60008060408385031215613e6e57600080fd5b613e7783613e24565b946020939093013593505050565b600080600060608486031215613e9a57600080fd5b613ea384613e24565b9250613eb160208501613e24565b9150604084013590509250925092565b60008060408385031215613ed457600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115613f1357613f13613ee3565b604051601f8501601f19908116603f01168101908282118183101715613f3b57613f3b613ee3565b81604052809350858152868686011115613f5457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215613f8057600080fd5b81356001600160401b03811115613f9657600080fd5b8201601f81018413613fa757600080fd5b61135584823560208401613ef9565b60008060208385031215613fc957600080fd5b82356001600160401b0380821115613fe057600080fd5b818501915085601f830112613ff457600080fd5b81358181111561400357600080fd5b8660208260051b850101111561401857600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b8181101561406257835183529284019291840191600101614046565b50909695505050505050565b6000806040838503121561408157600080fd5b61408a83613e24565b91506020830135801515811461409f57600080fd5b809150509250929050565b600080600080608085870312156140c057600080fd5b6140c985613e24565b93506140d760208601613e24565b92506040850135915060608501356001600160401b038111156140f957600080fd5b8501601f8101871361410a57600080fd5b61411987823560208401613ef9565b91505092959194509250565b6000806040838503121561413857600080fd5b61414183613e24565b915061414f60208401613e24565b90509250929050565b60006020828403121561416a57600080fd5b813561ffff81168114613d9957600080fd5b600181811c9082168061419057607f821691505b6020821081036141b057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156141de576141de6141b6565b500390565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b600081600019048311821515161561424a5761424a6141b6565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826142745761427461424f565b500490565b634e487b7160e01b600052603260045260246000fd5b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b600082198211156142d4576142d46141b6565b500190565b6020808252600c908201526b4e6f6e2d4578697374696e6760a01b604082015260600190565b60008261430e5761430e61424f565b500690565b8054600090600181811c908083168061432d57607f831692505b6020808410820361434e57634e487b7160e01b600052602260045260246000fd5b8180156143625760018114614373576143a0565b60ff198616895284890196506143a0565b60008881526020902060005b868110156143985781548b82015290850190830161437f565b505084890196505b50505050505092915050565b60006143b88288614313565b86516143c8818360208b01613da0565b6143dd6143d782840189614313565b87614313565b91505083516143f0818360208801613da0565b01979650505050505050565b6000845161440e818460208901613da0565b845190830190614422818360208901613da0565b8451910190614435818360208801613da0565b0195945050505050565b6000895160206144528285838f01613da0565b61445e8285018c614313565b9150895161446f8184848e01613da0565b89519201916144818184848d01613da0565b88519201916144938184848c01613da0565b87519201916144a58184848b01613da0565b86519201916144b78184848a01613da0565b6144c381840187614313565b9d9c50505050505050505050505050565b693d913730b6b2911d101160b11b815285516000906144fa81600a850160208b01613da0565b600160fd1b600a91840191820152865161451b81600b840160208b01613da0565b72111610113232b9b1b934b83a34b7b7111d101160691b600b92909101918201527f6f6362222c2022696d616765223a2022646174613a696d6167652f7376672b78601e820152691b5b0ed8985cd94d8d0b60b21b603e8201528551614588816048840160208a01613da0565b855191019061459e816048840160208901613da0565b84519101906145b4816048840160208801613da0565b6145ca604882840101607d60f81b815260010190565b9998505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161460f81601d850160208701613da0565b91909101601d0192915050565b600061ffff8083168185168183048111821515161561463d5761463d6141b6565b02949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6000865161469d818460208b01613da0565b8651908301906146b1818360208b01613da0565b86519101906146c4818360208a01613da0565b85519101906146d7818360208901613da0565b84519101906143f0818360208801613da0565b6000875160206146fd8285838d01613da0565b8851918401916147108184848d01613da0565b88519201916147228184848c01613da0565b87519201916147348184848b01613da0565b86519201916147468184848a01613da0565b85519201916147588184848901613da0565b919091019998505050505050505050565b6000835161477b818460208801613da0565b83519083019061478f818360208801613da0565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000885160206147fd8285838e01613da0565b8951918401916148108184848e01613da0565b89519201916148228184848d01613da0565b88519201916148348184848c01613da0565b87519201916148468184848b01613da0565b86519201916148588184848a01613da0565b855192019161486a8184848901613da0565b919091019a9950505050505050505050565b60008951602061488f8285838f01613da0565b8a51918401916148a28184848f01613da0565b8a519201916148b48184848e01613da0565b89519201916148c68184848d01613da0565b88519201916148d88184848c01613da0565b87519201916148ea8184848b01613da0565b86519201916148fc8184848a01613da0565b855192019161490e8184848901613da0565b919091019b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061495490830184613dcc565b9695505050505050565b60006020828403121561497057600080fd5b8151613d9981613d66565b6020808252601c908201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60408201526060019056fe2031392e3639362d332e3437332e33343720312e39372d31392e36393620332e3437333c7265637420793d223236322220783d22343430222077696474683d2232303022206865696768743d22343022207374726f6b652d77696474683d223822202066696c6c3d2223227d2c7b2274726169745f74797065223a202242726163656c6574222c2276616c7565223a202266696c6c3d2223666635363536222f3e3c7061746820643d224d3333302e3937203632382e3633356331312e37352d33312e3330342035372e3739203020302034302e3234392d35372e3738392d34302e3234392d31312e37352d37312e35353320302d34302e3234397a22207374726f6b652d77696474683d2238222066696c6c3d2223663035646534222f3e3c636972636c652063793d22353230222063783d223331302220723d2238222066696c6c3d222346464630393322207374726f6b652d77696474683d2234222f3e3c636972636c652063793d22353130222063783d223335302220723d2238222066696c6c3d222346464630393322207374726f6b652d77696474683d2234222f3e3c636972636c652063793d22353139222063783d223333312220723d223132222066696c6c3d222320343635203335302922206865696768743d2238222077696474683d2238302220793d223337302220783d22343235222066696c6c3d2223303030303030222f3e3c72656374207472616e73666f726d3d22726f746174652866696c6c3d2223394638374642222f3e3c7265637420793d223635302220783d22333130222077696474683d22333022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223653036636635222f3e3c7265637420793d223539302220783d22333530222077696474683d22333022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223653036636635222f3e3c7265637420793d223634302220783d22333830222077696474683d22333022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223653036636635222f3e3c7265637420793d223631302220783d22323630222077696474683d22333022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223653036636635222f3e3c706f6c79676f6e20706f696e74733d223534302c353535203531302c373130203537302c3731302220207374726f6b652d77696474683d2238222066696c6c3d2223222f3e3c636972636c652063793d22343237222063783d2236313022207374726f6b652d77696474683d22342220723d223435222066696c6c3d2223666666222f3e22207374726f6b652d77696474683d2234222f3e3c7265637420783d223537302220793d22333837222077696474683d22383022206865696768743d223830222066696c6c3d222366666622207374726f6b652d77696474683d2234222f3e2220643d226d353430203537302038302d32307634307a6d3020302d38302d32307634307a222f3e3c636972636c652063793d22353730222063783d223534302220723d22313422207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a2022576869736b657273222c2276616c7565223a20223c656c6c697073652072793d223232222072783d223730222063793d22323830222063783d2235343022207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a2022546965222c2276616c7565223a2022222f3e3c636972636c652063793d22353730222063783d223534302220723d22313522207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a20225075727365222c2276616c7565223a20223c7265637420793d223335302220783d22373530222077696474683d22323022206865696768743d2231363022207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a2022476c6173736573222c2276616c7565223a2022222f3e3c636972636c652063793d22343237222063783d2234373022207374726f6b652d77696474683d22342220723d223435222066696c6c3d2223666666222f3e3c636972636c652063793d22343237222063783d2236313022207374726f6b652d77696474683d22342220723d223535222066696c6c3d22234142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f2037382e3738352d31332e3839322e33343720312e39372d37382e3738352031332e3839325b7b2274726169745f74797065223a20224261636b67726f756e64222c2276616c7565223a20222220643d226d353430203537302038302d32307634307a6d3020302d38302d32307634307a222f3e3c7265637420783d223532372220793d22353537222077696474683d22323622206865696768743d22323622207374726f6b652d77696474683d2238222066696c6c3d223c7265637420793d223535302220783d22323430222077696474683d2231383022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223396566613834222f3e3c7265637420793d223538302220783d22323430222077696474683d2231383022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223376163396661222f3e3c7265637420793d223631302220783d22323430222077696474683d2231383022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223623637616661222f3e3c7265637420793d223634302220783d22323430222077696474683d2231383022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223656137326637222f3e2220643d224d3439322034313768313430763230483439327a222f3e3c636972636c652063793d22343237222063783d2234373022207374726f6b652d77696474683d22342220723d223535222066696c6c3d2223222f3e3c7265637420793d223335302220783d22373438222077696474683d22323422206865696768743d22343022207374726f6b652d77696474683d2238222066696c6c3d2223464645413030222f3e3c636972636c652063793d22333030222063783d223731302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22323630222063783d223830302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22323330222063783d223733302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22333030222063783d223736302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22333430222063783d223831302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e22207374726f6b652d77696474683d2234222f3e3c7265637420783d223433302220793d22333837222077696474683d22383022206865696768743d223830222066696c6c3d222366666622207374726f6b652d77696474683d2234222f3e3c7265637420783d223536302220793d22333737222077696474683d2231303022206865696768743d22313030222066696c6c3d2223ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef3c7265637420793d223230352220783d22343735222077696474683d2231333022206865696768743d22363022207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a202257697a617264222c2276616c7565223a2022227d2c7b2274726169745f74797065223a2022486174222c2276616c7565223a20223c7265637420793d223134302220783d22343835222077696474683d2231313022206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d222320363135203335302922206865696768743d2238222077696474683d2238302220793d223337302220783d22353735222066696c6c3d2223303030303030222f3e2220643d224d3439322034313768313430763230483439327a222f3e3c636972636c652063793d22343237222063783d2234373022207374726f6b652d77696474683d22342220723d223435222066696c6c3d22233c7265637420793d223536302220783d22323430222077696474683d22343522206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d2223396566613834222f3e3c7265637420793d223536302220783d22323835222077696474683d22343522206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d2223376163396661222f3e3c7265637420793d223536302220783d22333330222077696474683d22343522206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d2223623637616661222f3e3c7265637420793d223536302220783d22333735222077696474683d22343522206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d2223656137326637222f3e66696c6c3d2223666637663030222f3e3c706174682066696c6c3d222366666666353622207374726f6b653d226e756c6c22207374726f6b652d77696474683d22332220643d224d33313520363736632d342d3120312d3420332d35203120302d3720302d342d3220342d3320322d372d312d382d352d332d31322d352d31332d31302d322d3320322d362d312d392d322d3320312d3720322d313020312d352d332d382d362d3132732d352d382d352d3132632d312d3220302d3520332d3220352033203132203720313620313120302032203320372034203320302d3720322d313420392d313820342d332036203220372035203120362d312031312d332031362d3120322d332039203320362031332d3320323920312033382039203420342035203920352031352d32203220362d31203320332d3120342d3620362d3920392d3420322d3120372d3620386c2d32352033632d3420302d372d342d322d3520322d3320382d332031302d332d3520302d31302d312d31332031732d3420362d392037682d367a222f3e3c7265637420793d223538302220783d22323430222077696474683d2231383022206865696768743d2231323022207374726f6b652d77696474683d22382220222f3e3c636972636c652063793d22343237222063783d2236313022207374726f6b652d77696474683d22342220723d223435222066696c6c3d22232220643d224d3439322034313768313430763230483439327a222f3e3c7265637420783d223432302220793d22333737222077696474683d2231303022206865696768743d22313030222066696c6c3d222366696c6c3d2223663035646534222f3e3c636972636c652063793d22363030222063783d223334302220723d223135222066696c6c3d222366306232363722207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22363530222063783d223338302220723d223230222066696c6c3d222366306232363722207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22363530222063783d223238302220723d223136222066696c6c3d222366306232363722207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22363030222063783d223430302220723d223133222066696c6c3d222366306232363722207374726f6b652d77696474683d2238222f3e203131382e3137372d32302e3833382e33343720312e39372d3131382e3137372032302e3833383c636972636c652063793d22353830222063783d223333302220723d22363022207374726f6b653d226e6f6e65222f3e3c636972636c652063793d22353830222063783d223333302220723d223430222066696c6c3d222366666622207374726f6b653d226e6f6e65222f3e66696c6c3d2223663733313439222f3e3c7265637420793d223630302220783d22323630222077696474683d2231343022206865696768743d22383022207374726f6b652d77696474683d2238222066696c6c3d2223663538383232222f3e3c7265637420793d223632302220783d22323830222077696474683d2231303022206865696768743d22343022207374726f6b652d77696474683d2238222066696c6c3d2223663563343364222f3e3c636972636c652063793d22323338222063783d2235343022207374726f6b652d77696474683d2231302220723d223632222066696c6c3d22233c7265637420793d223533302220783d22323830222077696474683d2231303022206865696768743d2231323022207374726f6b652d77696474683d2238222f3e3c7265637420793d223533302220783d22323930222077696474683d22383022206865696768743d2231303022207374726f6b652d77696474683d2238222066696c6c3d2223666666222f3e227d2c7b2274726169745f74797065223a202245796562726f7773222c2276616c7565223a2022a264697066735822122055f515b4cc4daa252ec6c8fc06f02e63b7cd1cd9166aa7c6dd3fd381dfe06e8464736f6c634300080d0033

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.