ETH Price: $3,481.92 (+0.30%)
Gas: 8 Gwei

Token

RTFKT x NIKE AR HOODIE PRE FORGED ()
 

Overview

Max Total Supply

461

Holders

334

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
ethstandard.eth
0x12e08b091A8b6419502449Bbb369709C1E4A60e0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The first RTFKT x Nike Hoodie, engineered for AR, merging physical and digital worlds. RTFKT x NIKE AR HOODIE Holders are able to redeem the physical Hoodie via www.rtfkt.com from the 22nd of July -25th.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RedeemableToken

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

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

/*
    RTFKT Legal Overview [https://rtfkt.com/legaloverview]
    1. RTFKT Platform Terms of Services [Document #1, https://rtfkt.com/tos]
    2. End Use License Terms
    A. Digital Collectible Terms (RTFKT-Owned Content) [Document #2-A, https://rtfkt.com/legal-2A]
    B. Digital Collectible Terms (Third Party Content) [Document #2-B, https://rtfkt.com/legal-2B]
    C. Digital Collectible Limited Commercial Use License Terms (RTFKT-Owned Content) [Document #2-C, https://rtfkt.com/legal-2C]
    D. Digital Collectible Terms [Document #2-D, https://rtfkt.com/legal-2D]
    
    3. Policies or other documentation
    A. RTFKT Privacy Policy [Document #3-A, https://rtfkt.com/privacy]
    B. NFT Issuance and Marketing Policy [Document #3-B, https://rtfkt.com/legal-3B]
    C. Transfer Fees [Document #3C, https://rtfkt.com/legal-3C]
    C. 1. Commercialization Registration [https://rtfkt.typeform.com/to/u671kiRl]
    
    4. General notices
    A. Murakami Short Verbiage – User Experience Notice [Document #X-1, https://rtfkt.com/legal-X1]
*/

pragma solidity ^0.8.15;

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

abstract contract ERC721 {
    function ownerOf(uint256 tokenId) public view virtual returns (address);
}

abstract contract ForgeTokenContract {
    function forgeToken(uint256 amount, uint256 tokenId, address owner) public virtual;
}

contract RedeemableToken is ERC1155, Ownable, ERC1155Burnable {    
    constructor() ERC1155("") {
        tokenURIs[1] = "https://rtfkt.mypinata.cloud/ipfs/QmRbUSDAFLf5iEuU9v49Vt7YppyCjGsJQMxqrt6PWF5RF6/1";
    }

    address redemptionMiddlewareContract = 0x8E5474cA17499626EE88E2A533bD369EBe72099A;

    mapping (uint256 => uint256) public currentSupply;
    mapping (uint256 => uint256) public supplyLimit;
    mapping (uint256 => mapping (address => mapping(uint256 => address))) redeemedToken;
    mapping (uint256 => address) public forgingContractAddresses;
    mapping (address => uint256) public authorizedCollections; // Set the tokenID of minting associated with collection
    mapping (uint256 => string) public tokenURIs;

    // Mint function
    function redeem(address owner, address initialCollection, uint256 tokenId) public payable returns(uint256) {
        require(msg.sender == redemptionMiddlewareContract, "Not authorized");
        require(authorizedCollections[initialCollection] != 0, "Collection not authorized");
        require(currentSupply[authorizedCollections[initialCollection]] + 1 <= supplyLimit[authorizedCollections[initialCollection]], "Limit reached");
        ERC721 collectionRedeem = ERC721(initialCollection);
        require(collectionRedeem.ownerOf(tokenId) == owner, "Don't own that token");
        require(redeemedToken[authorizedCollections[initialCollection]][initialCollection][tokenId] == 0x0000000000000000000000000000000000000000, "Token redeemd already");
        
        currentSupply[authorizedCollections[initialCollection]] = currentSupply[authorizedCollections[initialCollection]] + 1;
        redeemedToken[authorizedCollections[initialCollection]][initialCollection][tokenId] = owner;

        _mint(owner, authorizedCollections[initialCollection], 1, "");

        return 1;
    }

    // Only from the same colleciton
    function redeemBatch(address owner, address initialCollection, uint256[] calldata tokenIds) public payable {
        require(msg.sender == redemptionMiddlewareContract, "Not authorized");
        require(tokenIds.length > 0, "Mismatch of length");
        require(authorizedCollections[initialCollection] != 0, "Collection not authorized");
        require(currentSupply[authorizedCollections[initialCollection]] + tokenIds.length <= supplyLimit[authorizedCollections[initialCollection]], "Limit reached");
        ERC721 collectionRedeem = ERC721(initialCollection);

        for(uint256 i = 0; i < tokenIds.length; ++i) {
            require(redeemedToken[authorizedCollections[initialCollection]][initialCollection][tokenIds[i]] == 0x0000000000000000000000000000000000000000, "Token redeemd already");
            require(collectionRedeem.ownerOf(tokenIds[i]) == owner, "Don't own that token");
            redeemedToken[authorizedCollections[initialCollection]][initialCollection][tokenIds[i]] = owner;
        }

        currentSupply[authorizedCollections[initialCollection]] = currentSupply[authorizedCollections[initialCollection]] + tokenIds.length;

        _mint(owner, authorizedCollections[initialCollection], tokenIds.length, "");
    }

    // Forge function
    function forgeToken(uint256 tokenId, uint256 amount) public {
        require(forgingContractAddresses[tokenId] != 0x0000000000000000000000000000000000000000, "No forging address set for this token");
        require(balanceOf(msg.sender, tokenId) >= amount, "Doesn't own the token"); // Check if the user own one of the ERC-1155
        
        burn(msg.sender, tokenId, amount); // Burn one the ERC-1155 token
        
        ForgeTokenContract forgingContract = ForgeTokenContract(forgingContractAddresses[tokenId]);
        forgingContract.forgeToken(amount, tokenId, msg.sender); // Mint the ERC-721 token
    }

    // Airdrop function
    function airdropTokens(uint256[] calldata tokenIds, uint256[] calldata amount, address[] calldata owners) public onlyOwner {
        for(uint256 i = 0; i < tokenIds.length; ++i) {
            _mint(owners[i], tokenIds[i], amount[i], "");
        }
    }

    // --------
    // Getter
    // --------
    function hasBeenRedeem(address initialCollection, uint256 tokenId) public view returns(address) {
        return redeemedToken[authorizedCollections[initialCollection]][initialCollection][tokenId];
    }

    function uri(uint256 tokenId) public view virtual override returns (string memory) {
        return tokenURIs[tokenId];
    }

    // --------
    // Setter
    // --------

    function setTokenURIs(uint256 tokenId, string calldata newUri) public onlyOwner {
        tokenURIs[tokenId] = newUri;
    }

    function setSupply(uint256 tokenId, uint256 newSupply) public onlyOwner {
        supplyLimit[tokenId] = newSupply;
    }

    function setForgingAddress(uint256 tokenId, address forgingAddress) public onlyOwner {
        forgingContractAddresses[tokenId] = forgingAddress;
    }

    function setAuthorizedCollection(address authorizedCollection, uint256 tokenId) public onlyOwner {
        authorizedCollections[authorizedCollection] = tokenId; // token id 0 will unauthorize the collection
    }

    function setMiddleware(address newContractAddress) public onlyOwner {
        redemptionMiddlewareContract = newContractAddress;
    }

    // In case someone send money to the contract by mistake
    function withdrawFunds() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
	}
}

File 2 of 11 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

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

        _burn(account, id, value);
    }

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

        _burnBatch(account, ids, values);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 11 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

        return array;
    }
}

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

File 10 of 11 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"},{"internalType":"address[]","name":"owners","type":"address[]"}],"name":"airdropTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"authorizedCollections","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"forgeToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"forgingContractAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"initialCollection","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"hasBeenRedeem","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"initialCollection","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"initialCollection","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"redeemBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"authorizedCollection","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"setAuthorizedCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"forgingAddress","type":"address"}],"name":"setForgingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newContractAddress","type":"address"}],"name":"setMiddleware","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"newUri","type":"string"}],"name":"setTokenURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURIs","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052738e5474ca17499626ee88e2a533bd369ebe72099a600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b50604051806020016040528060008152506200008881620000ec60201b60201c565b50620000a96200009d6200010160201b60201c565b6200010960201b60201c565b60405180608001604052806052815260200162005e6760529139600a6000600181526020019081526020016000209081620000e5919062000449565b5062000530565b8060029081620000fd919062000449565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200025157607f821691505b60208210810362000267576200026662000209565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002d17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000292565b620002dd868362000292565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200032a620003246200031e84620002f5565b620002ff565b620002f5565b9050919050565b6000819050919050565b620003468362000309565b6200035e620003558262000331565b8484546200029f565b825550505050565b600090565b6200037562000366565b620003828184846200033b565b505050565b5b81811015620003aa576200039e6000826200036b565b60018101905062000388565b5050565b601f821115620003f957620003c3816200026d565b620003ce8462000282565b81016020851015620003de578190505b620003f6620003ed8562000282565b83018262000387565b50505b505050565b600082821c905092915050565b60006200041e60001984600802620003fe565b1980831691505092915050565b60006200043983836200040b565b9150826002028217905092915050565b6200045482620001cf565b67ffffffffffffffff81111562000470576200046f620001da565b5b6200047c825462000238565b62000489828285620003ae565b600060209050601f831160018114620004c15760008415620004ac578287015190505b620004b885826200042b565b86555062000528565b601f198416620004d1866200026d565b60005b82811015620004fb57848901518255600182019150602085019450602081019050620004d4565b868310156200051b578489015162000517601f8916826200040b565b8355505b6001600288020188555050505b505050505050565b61592780620005406000396000f3fe6080604052600436106101c15760003560e01c80636b20c454116100f7578063a22cb46511610095578063f242432a11610064578063f242432a1461067b578063f2fde38b146106a4578063f5298aca146106cd578063fc784d49146106f6576101c1565b8063a22cb465146105c3578063b7d8e1a9146105ec578063cfea3ca314610615578063e985e9c51461063e576101c1565b806374ef72b3116100d157806374ef72b3146104f557806378416adb146105325780638da5cb5b1461056f578063a1af1b021461059a576101c1565b80636b20c454146104785780636c8b703f146104a1578063715018a6146104de576101c1565b806324600fc3116101645780634e1273f41161013e5780634e1273f4146103ac5780635b746077146103e957806360f67c551461042657806368625a891461044f576101c1565b806324600fc31461032f5780632eb2c2d6146103465780634c8323a81461036f576101c1565b80630e89341c116101a05780630e89341c14610270578063134f336e146102ad5780631a20ea68146102c95780631b99db0d14610306576101c1565b8062fdd58e146101c657806301ffc9a7146102035780630e6dfcd514610240575b600080fd5b3480156101d257600080fd5b506101ed60048036038101906101e89190613961565b61071f565b6040516101fa91906139b0565b60405180910390f35b34801561020f57600080fd5b5061022a60048036038101906102259190613a23565b6107e7565b6040516102379190613a6b565b60405180910390f35b61025a60048036038101906102559190613a86565b6108c9565b60405161026791906139b0565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190613ad9565b610ee6565b6040516102a49190613b9f565b60405180910390f35b6102c760048036038101906102c29190613c26565b610f8b565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190613ad9565b611658565b6040516102fd9190613ca9565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613cc4565b61168b565b005b34801561033b57600080fd5b50610344611830565b005b34801561035257600080fd5b5061036d60048036038101906103689190613ef7565b6118f5565b005b34801561037b57600080fd5b5061039660048036038101906103919190613fc6565b611996565b6040516103a391906139b0565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce91906140b6565b6119ae565b6040516103e091906141ec565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190613ad9565b611ac7565b60405161041d91906139b0565b60405180910390f35b34801561043257600080fd5b5061044d6004803603810190610448919061420e565b611adf565b005b34801561045b57600080fd5b5061047660048036038101906104719190613961565b611bb1565b005b34801561048457600080fd5b5061049f600480360381019061049a919061424e565b611c75565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190613ad9565b611d12565b6040516104d59190613b9f565b60405180910390f35b3480156104ea57600080fd5b506104f3611db2565b005b34801561050157600080fd5b5061051c60048036038101906105179190613961565b611e3a565b6040516105299190613ca9565b60405180910390f35b34801561053e57600080fd5b5061055960048036038101906105549190613ad9565b611f05565b60405161056691906139b0565b60405180910390f35b34801561057b57600080fd5b50610584611f1d565b6040516105919190613ca9565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc919061432f565b611f47565b005b3480156105cf57600080fd5b506105ea60048036038101906105e591906143bb565b611feb565b005b3480156105f857600080fd5b50610613600480360381019061060e9190613fc6565b612001565b005b34801561062157600080fd5b5061063c60048036038101906106379190614451565b6120c1565b005b34801561064a57600080fd5b5061066560048036038101906106609190614505565b6121d9565b6040516106729190613a6b565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d9190614545565b61226d565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190613fc6565b61230e565b005b3480156106d957600080fd5b506106f460048036038101906106ef91906145dc565b612405565b005b34801561070257600080fd5b5061071d60048036038101906107189190613cc4565b6124a2565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361078f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610786906146a1565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c257506108c18261253a565b5b9050919050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461095b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109529061470d565b60405180910390fd5b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054036109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490614779565b60405180910390fd5b60066000600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200190815260200160002054600160056000600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200190815260200160002054610a8f91906147c8565b1115610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac79061486a565b60405180910390fd5b60008390508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b8152600401610b2591906139b0565b602060405180830381865afa158015610b42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b66919061489f565b73ffffffffffffffffffffffffffffffffffffffff1614610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb390614918565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660076000600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290614984565b60405180910390fd5b600160056000600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200190815260200160002054610d4a91906147c8565b60056000600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152602001908152602001600020819055508460076000600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610eda85600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001604051806020016040528060008152506125a4565b60019150509392505050565b6060600a60008381526020019081526020016000208054610f06906149d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f32906149d3565b8015610f7f5780601f10610f5457610100808354040283529160200191610f7f565b820191906000526020600020905b815481529060010190602001808311610f6257829003601f168201915b50505050509050919050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461101b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110129061470d565b60405180910390fd5b60008282905011611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890614a50565b60405180910390fd5b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054036110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90614779565b60405180910390fd5b60066000600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152602001908152602001600020548282905060056000600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020019081526020016000205461119791906147c8565b11156111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf9061486a565b60405180910390fd5b600083905060005b8383905081101561153c57600073ffffffffffffffffffffffffffffffffffffffff1660076000600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008686858181106112a7576112a6614a70565b5b90506020020135815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90614984565b60405180910390fd5b8573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16636352211e86868581811061137957611378614a70565b5b905060200201356040518263ffffffff1660e01b815260040161139c91906139b0565b602060405180830381865afa1580156113b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113dd919061489f565b73ffffffffffffffffffffffffffffffffffffffff1614611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90614918565b60405180910390fd5b8560076000600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008686858181106114d8576114d7614a70565b5b90506020020135815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508061153590614a9f565b90506111e0565b508282905060056000600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020019081526020016000205461159e91906147c8565b60056000600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020019081526020016000208190555061165185600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485859050604051806020016040528060008152506125a4565b5050505050565b60086020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600073ffffffffffffffffffffffffffffffffffffffff166008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361172d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172490614b59565b60405180910390fd5b80611738338461071f565b1015611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090614bc5565b60405180910390fd5b611784338383612405565b60006008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16633a2083378385336040518463ffffffff1660e01b81526004016117f993929190614be5565b600060405180830381600087803b15801561181357600080fd5b505af1158015611827573d6000803e3d6000fd5b50505050505050565b611838612754565b73ffffffffffffffffffffffffffffffffffffffff16611856611f1d565b73ffffffffffffffffffffffffffffffffffffffff16146118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390614c68565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156118f2573d6000803e3d6000fd5b50565b6118fd612754565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061194357506119428561193d612754565b6121d9565b5b611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990614cfa565b60405180910390fd5b61198f858585858561275c565b5050505050565b60096020528060005260406000206000915090505481565b606081518351146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90614d8c565b60405180910390fd5b6000835167ffffffffffffffff811115611a1157611a10613d04565b5b604051908082528060200260200182016040528015611a3f5781602001602082028036833780820191505090505b50905060005b8451811015611abc57611a8c858281518110611a6457611a63614a70565b5b6020026020010151858381518110611a7f57611a7e614a70565b5b602002602001015161071f565b828281518110611a9f57611a9e614a70565b5b60200260200101818152505080611ab590614a9f565b9050611a45565b508091505092915050565b60056020528060005260406000206000915090505481565b611ae7612754565b73ffffffffffffffffffffffffffffffffffffffff16611b05611f1d565b73ffffffffffffffffffffffffffffffffffffffff1614611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5290614c68565b60405180910390fd5b806008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b611bb9612754565b73ffffffffffffffffffffffffffffffffffffffff16611bd7611f1d565b73ffffffffffffffffffffffffffffffffffffffff1614611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2490614c68565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b611c7d612754565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611cc35750611cc283611cbd612754565b6121d9565b5b611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf990614e1e565b60405180910390fd5b611d0d838383612a7d565b505050565b600a6020528060005260406000206000915090508054611d31906149d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5d906149d3565b8015611daa5780601f10611d7f57610100808354040283529160200191611daa565b820191906000526020600020905b815481529060010190602001808311611d8d57829003601f168201915b505050505081565b611dba612754565b73ffffffffffffffffffffffffffffffffffffffff16611dd8611f1d565b73ffffffffffffffffffffffffffffffffffffffff1614611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2590614c68565b60405180910390fd5b611e386000612d4b565b565b600060076000600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905092915050565b60066020528060005260406000206000915090505481565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f4f612754565b73ffffffffffffffffffffffffffffffffffffffff16611f6d611f1d565b73ffffffffffffffffffffffffffffffffffffffff1614611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba90614c68565b60405180910390fd5b8181600a60008681526020019081526020016000209182611fe5929190614ff5565b50505050565b611ffd611ff6612754565b8383612e11565b5050565b612009612754565b73ffffffffffffffffffffffffffffffffffffffff16612027611f1d565b73ffffffffffffffffffffffffffffffffffffffff161461207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207490614c68565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6120c9612754565b73ffffffffffffffffffffffffffffffffffffffff166120e7611f1d565b73ffffffffffffffffffffffffffffffffffffffff161461213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490614c68565b60405180910390fd5b60005b868690508110156121d0576121bf83838381811061216157612160614a70565b5b90506020020160208101906121769190613fc6565b88888481811061218957612188614a70565b5b905060200201358787858181106121a3576121a2614a70565b5b90506020020135604051806020016040528060008152506125a4565b806121c990614a9f565b9050612140565b50505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612275612754565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806122bb57506122ba856122b5612754565b6121d9565b5b6122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190614e1e565b60405180910390fd5b6123078585858585612f7d565b5050505050565b612316612754565b73ffffffffffffffffffffffffffffffffffffffff16612334611f1d565b73ffffffffffffffffffffffffffffffffffffffff161461238a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238190614c68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090615137565b60405180910390fd5b61240281612d4b565b50565b61240d612754565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061245357506124528361244d612754565b6121d9565b5b612492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248990614e1e565b60405180910390fd5b61249d838383613218565b505050565b6124aa612754565b73ffffffffffffffffffffffffffffffffffffffff166124c8611f1d565b73ffffffffffffffffffffffffffffffffffffffff161461251e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251590614c68565b60405180910390fd5b8060066000848152602001908152602001600020819055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260a906151c9565b60405180910390fd5b600061261d612754565b9050600061262a8561345e565b905060006126378561345e565b9050612648836000898585896134d8565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126a791906147c8565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516127259291906151e9565b60405180910390a461273c836000898585896134e0565b61274b836000898989896134e8565b50505050505050565b600033905090565b81518351146127a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279790615284565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361280f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280690615316565b60405180910390fd5b6000612819612754565b90506128298187878787876134d8565b60005b84518110156129da57600085828151811061284a57612849614a70565b5b60200260200101519050600085838151811061286957612868614a70565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561290a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612901906153a8565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129bf91906147c8565b92505081905550505050806129d390614a9f565b905061282c565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612a519291906153c8565b60405180910390a4612a678187878787876134e0565b612a758187878787876136bf565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae390615471565b60405180910390fd5b8051825114612b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2790615284565b60405180910390fd5b6000612b3a612754565b9050612b5a818560008686604051806020016040528060008152506134d8565b60005b8351811015612ca7576000848281518110612b7b57612b7a614a70565b5b602002602001015190506000848381518110612b9a57612b99614a70565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3290615503565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080612c9f90614a9f565b915050612b5d565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612d1f9291906153c8565b60405180910390a4612d45818560008686604051806020016040528060008152506134e0565b50505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7690615595565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f709190613a6b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe390615316565b60405180910390fd5b6000612ff6612754565b905060006130038561345e565b905060006130108561345e565b90506130208389898585896134d8565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156130b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ae906153a8565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461316c91906147c8565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516131e99291906151e9565b60405180910390a46131ff848a8a86868a6134e0565b61320d848a8a8a8a8a6134e8565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327e90615471565b60405180910390fd5b6000613291612754565b9050600061329e8461345e565b905060006132ab8461345e565b90506132cb838760008585604051806020016040528060008152506134d8565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015613362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335990615503565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62898960405161342f9291906151e9565b60405180910390a4613455848860008686604051806020016040528060008152506134e0565b50505050505050565b60606000600167ffffffffffffffff81111561347d5761347c613d04565b5b6040519080825280602002602001820160405280156134ab5781602001602082028036833780820191505090505b50905082816000815181106134c3576134c2614a70565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b6135078473ffffffffffffffffffffffffffffffffffffffff16613896565b156136b7578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161354d95949392919061560a565b6020604051808303816000875af192505050801561358957506040513d601f19601f820116820180604052508101906135869190615679565b60015b61362e576135956156b3565b806308c379a0036135f157506135a96156d5565b806135b457506135f3565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e89190613b9f565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613625906157d7565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146136b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ac90615869565b60405180910390fd5b505b505050505050565b6136de8473ffffffffffffffffffffffffffffffffffffffff16613896565b1561388e578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401613724959493929190615889565b6020604051808303816000875af192505050801561376057506040513d601f19601f8201168201806040525081019061375d9190615679565b60015b6138055761376c6156b3565b806308c379a0036137c857506137806156d5565b8061378b57506137ca565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137bf9190613b9f565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137fc906157d7565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461388c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388390615869565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138f8826138cd565b9050919050565b613908816138ed565b811461391357600080fd5b50565b600081359050613925816138ff565b92915050565b6000819050919050565b61393e8161392b565b811461394957600080fd5b50565b60008135905061395b81613935565b92915050565b60008060408385031215613978576139776138c3565b5b600061398685828601613916565b92505060206139978582860161394c565b9150509250929050565b6139aa8161392b565b82525050565b60006020820190506139c560008301846139a1565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a00816139cb565b8114613a0b57600080fd5b50565b600081359050613a1d816139f7565b92915050565b600060208284031215613a3957613a386138c3565b5b6000613a4784828501613a0e565b91505092915050565b60008115159050919050565b613a6581613a50565b82525050565b6000602082019050613a806000830184613a5c565b92915050565b600080600060608486031215613a9f57613a9e6138c3565b5b6000613aad86828701613916565b9350506020613abe86828701613916565b9250506040613acf8682870161394c565b9150509250925092565b600060208284031215613aef57613aee6138c3565b5b6000613afd8482850161394c565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b40578082015181840152602081019050613b25565b83811115613b4f576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b7182613b06565b613b7b8185613b11565b9350613b8b818560208601613b22565b613b9481613b55565b840191505092915050565b60006020820190508181036000830152613bb98184613b66565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613be657613be5613bc1565b5b8235905067ffffffffffffffff811115613c0357613c02613bc6565b5b602083019150836020820283011115613c1f57613c1e613bcb565b5b9250929050565b60008060008060608587031215613c4057613c3f6138c3565b5b6000613c4e87828801613916565b9450506020613c5f87828801613916565b935050604085013567ffffffffffffffff811115613c8057613c7f6138c8565b5b613c8c87828801613bd0565b925092505092959194509250565b613ca3816138ed565b82525050565b6000602082019050613cbe6000830184613c9a565b92915050565b60008060408385031215613cdb57613cda6138c3565b5b6000613ce98582860161394c565b9250506020613cfa8582860161394c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d3c82613b55565b810181811067ffffffffffffffff82111715613d5b57613d5a613d04565b5b80604052505050565b6000613d6e6138b9565b9050613d7a8282613d33565b919050565b600067ffffffffffffffff821115613d9a57613d99613d04565b5b602082029050602081019050919050565b6000613dbe613db984613d7f565b613d64565b90508083825260208201905060208402830185811115613de157613de0613bcb565b5b835b81811015613e0a5780613df6888261394c565b845260208401935050602081019050613de3565b5050509392505050565b600082601f830112613e2957613e28613bc1565b5b8135613e39848260208601613dab565b91505092915050565b600080fd5b600067ffffffffffffffff821115613e6257613e61613d04565b5b613e6b82613b55565b9050602081019050919050565b82818337600083830152505050565b6000613e9a613e9584613e47565b613d64565b905082815260208101848484011115613eb657613eb5613e42565b5b613ec1848285613e78565b509392505050565b600082601f830112613ede57613edd613bc1565b5b8135613eee848260208601613e87565b91505092915050565b600080600080600060a08688031215613f1357613f126138c3565b5b6000613f2188828901613916565b9550506020613f3288828901613916565b945050604086013567ffffffffffffffff811115613f5357613f526138c8565b5b613f5f88828901613e14565b935050606086013567ffffffffffffffff811115613f8057613f7f6138c8565b5b613f8c88828901613e14565b925050608086013567ffffffffffffffff811115613fad57613fac6138c8565b5b613fb988828901613ec9565b9150509295509295909350565b600060208284031215613fdc57613fdb6138c3565b5b6000613fea84828501613916565b91505092915050565b600067ffffffffffffffff82111561400e5761400d613d04565b5b602082029050602081019050919050565b600061403261402d84613ff3565b613d64565b9050808382526020820190506020840283018581111561405557614054613bcb565b5b835b8181101561407e578061406a8882613916565b845260208401935050602081019050614057565b5050509392505050565b600082601f83011261409d5761409c613bc1565b5b81356140ad84826020860161401f565b91505092915050565b600080604083850312156140cd576140cc6138c3565b5b600083013567ffffffffffffffff8111156140eb576140ea6138c8565b5b6140f785828601614088565b925050602083013567ffffffffffffffff811115614118576141176138c8565b5b61412485828601613e14565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6141638161392b565b82525050565b6000614175838361415a565b60208301905092915050565b6000602082019050919050565b60006141998261412e565b6141a38185614139565b93506141ae8361414a565b8060005b838110156141df5781516141c68882614169565b97506141d183614181565b9250506001810190506141b2565b5085935050505092915050565b60006020820190508181036000830152614206818461418e565b905092915050565b60008060408385031215614225576142246138c3565b5b60006142338582860161394c565b925050602061424485828601613916565b9150509250929050565b600080600060608486031215614267576142666138c3565b5b600061427586828701613916565b935050602084013567ffffffffffffffff811115614296576142956138c8565b5b6142a286828701613e14565b925050604084013567ffffffffffffffff8111156142c3576142c26138c8565b5b6142cf86828701613e14565b9150509250925092565b60008083601f8401126142ef576142ee613bc1565b5b8235905067ffffffffffffffff81111561430c5761430b613bc6565b5b60208301915083600182028301111561432857614327613bcb565b5b9250929050565b600080600060408486031215614348576143476138c3565b5b60006143568682870161394c565b935050602084013567ffffffffffffffff811115614377576143766138c8565b5b614383868287016142d9565b92509250509250925092565b61439881613a50565b81146143a357600080fd5b50565b6000813590506143b58161438f565b92915050565b600080604083850312156143d2576143d16138c3565b5b60006143e085828601613916565b92505060206143f1858286016143a6565b9150509250929050565b60008083601f84011261441157614410613bc1565b5b8235905067ffffffffffffffff81111561442e5761442d613bc6565b5b60208301915083602082028301111561444a57614449613bcb565b5b9250929050565b6000806000806000806060878903121561446e5761446d6138c3565b5b600087013567ffffffffffffffff81111561448c5761448b6138c8565b5b61449889828a01613bd0565b9650965050602087013567ffffffffffffffff8111156144bb576144ba6138c8565b5b6144c789828a01613bd0565b9450945050604087013567ffffffffffffffff8111156144ea576144e96138c8565b5b6144f689828a016143fb565b92509250509295509295509295565b6000806040838503121561451c5761451b6138c3565b5b600061452a85828601613916565b925050602061453b85828601613916565b9150509250929050565b600080600080600060a08688031215614561576145606138c3565b5b600061456f88828901613916565b955050602061458088828901613916565b94505060406145918882890161394c565b93505060606145a28882890161394c565b925050608086013567ffffffffffffffff8111156145c3576145c26138c8565b5b6145cf88828901613ec9565b9150509295509295909350565b6000806000606084860312156145f5576145f46138c3565b5b600061460386828701613916565b93505060206146148682870161394c565b92505060406146258682870161394c565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061468b602b83613b11565b91506146968261462f565b604082019050919050565b600060208201905081810360008301526146ba8161467e565b9050919050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b60006146f7600e83613b11565b9150614702826146c1565b602082019050919050565b60006020820190508181036000830152614726816146ea565b9050919050565b7f436f6c6c656374696f6e206e6f7420617574686f72697a656400000000000000600082015250565b6000614763601983613b11565b915061476e8261472d565b602082019050919050565b6000602082019050818103600083015261479281614756565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147d38261392b565b91506147de8361392b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561481357614812614799565b5b828201905092915050565b7f4c696d6974207265616368656400000000000000000000000000000000000000600082015250565b6000614854600d83613b11565b915061485f8261481e565b602082019050919050565b6000602082019050818103600083015261488381614847565b9050919050565b600081519050614899816138ff565b92915050565b6000602082840312156148b5576148b46138c3565b5b60006148c38482850161488a565b91505092915050565b7f446f6e2774206f776e207468617420746f6b656e000000000000000000000000600082015250565b6000614902601483613b11565b915061490d826148cc565b602082019050919050565b60006020820190508181036000830152614931816148f5565b9050919050565b7f546f6b656e2072656465656d6420616c72656164790000000000000000000000600082015250565b600061496e601583613b11565b915061497982614938565b602082019050919050565b6000602082019050818103600083015261499d81614961565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806149eb57607f821691505b6020821081036149fe576149fd6149a4565b5b50919050565b7f4d69736d61746368206f66206c656e6774680000000000000000000000000000600082015250565b6000614a3a601283613b11565b9150614a4582614a04565b602082019050919050565b60006020820190508181036000830152614a6981614a2d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614aaa8261392b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614adc57614adb614799565b5b600182019050919050565b7f4e6f20666f7267696e6720616464726573732073657420666f7220746869732060008201527f746f6b656e000000000000000000000000000000000000000000000000000000602082015250565b6000614b43602583613b11565b9150614b4e82614ae7565b604082019050919050565b60006020820190508181036000830152614b7281614b36565b9050919050565b7f446f65736e2774206f776e2074686520746f6b656e0000000000000000000000600082015250565b6000614baf601583613b11565b9150614bba82614b79565b602082019050919050565b60006020820190508181036000830152614bde81614ba2565b9050919050565b6000606082019050614bfa60008301866139a1565b614c0760208301856139a1565b614c146040830184613c9a565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c52602083613b11565b9150614c5d82614c1c565b602082019050919050565b60006020820190508181036000830152614c8181614c45565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614ce4603283613b11565b9150614cef82614c88565b604082019050919050565b60006020820190508181036000830152614d1381614cd7565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000614d76602983613b11565b9150614d8182614d1a565b604082019050919050565b60006020820190508181036000830152614da581614d69565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000614e08602983613b11565b9150614e1382614dac565b604082019050919050565b60006020820190508181036000830152614e3781614dfb565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614eab7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614e6e565b614eb58683614e6e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614ef2614eed614ee88461392b565b614ecd565b61392b565b9050919050565b6000819050919050565b614f0c83614ed7565b614f20614f1882614ef9565b848454614e7b565b825550505050565b600090565b614f35614f28565b614f40818484614f03565b505050565b5b81811015614f6457614f59600082614f2d565b600181019050614f46565b5050565b601f821115614fa957614f7a81614e49565b614f8384614e5e565b81016020851015614f92578190505b614fa6614f9e85614e5e565b830182614f45565b50505b505050565b600082821c905092915050565b6000614fcc60001984600802614fae565b1980831691505092915050565b6000614fe58383614fbb565b9150826002028217905092915050565b614fff8383614e3e565b67ffffffffffffffff81111561501857615017613d04565b5b61502282546149d3565b61502d828285614f68565b6000601f83116001811461505c576000841561504a578287013590505b6150548582614fd9565b8655506150bc565b601f19841661506a86614e49565b60005b828110156150925784890135825560018201915060208501945060208101905061506d565b868310156150af57848901356150ab601f891682614fbb565b8355505b6001600288020188555050505b50505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615121602683613b11565b915061512c826150c5565b604082019050919050565b6000602082019050818103600083015261515081615114565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006151b3602183613b11565b91506151be82615157565b604082019050919050565b600060208201905081810360008301526151e2816151a6565b9050919050565b60006040820190506151fe60008301856139a1565b61520b60208301846139a1565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600061526e602883613b11565b915061527982615212565b604082019050919050565b6000602082019050818103600083015261529d81615261565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615300602583613b11565b915061530b826152a4565b604082019050919050565b6000602082019050818103600083015261532f816152f3565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000615392602a83613b11565b915061539d82615336565b604082019050919050565b600060208201905081810360008301526153c181615385565b9050919050565b600060408201905081810360008301526153e2818561418e565b905081810360208301526153f6818461418e565b90509392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061545b602383613b11565b9150615466826153ff565b604082019050919050565b6000602082019050818103600083015261548a8161544e565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b60006154ed602483613b11565b91506154f882615491565b604082019050919050565b6000602082019050818103600083015261551c816154e0565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b600061557f602983613b11565b915061558a82615523565b604082019050919050565b600060208201905081810360008301526155ae81615572565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006155dc826155b5565b6155e681856155c0565b93506155f6818560208601613b22565b6155ff81613b55565b840191505092915050565b600060a08201905061561f6000830188613c9a565b61562c6020830187613c9a565b61563960408301866139a1565b61564660608301856139a1565b818103608083015261565881846155d1565b90509695505050505050565b600081519050615673816139f7565b92915050565b60006020828403121561568f5761568e6138c3565b5b600061569d84828501615664565b91505092915050565b60008160e01c9050919050565b600060033d11156156d25760046000803e6156cf6000516156a6565b90505b90565b600060443d10615762576156e76138b9565b60043d036004823e80513d602482011167ffffffffffffffff8211171561570f575050615762565b808201805167ffffffffffffffff81111561572d5750505050615762565b80602083010160043d03850181111561574a575050505050615762565b61575982602001850186613d33565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006157c1603483613b11565b91506157cc82615765565b604082019050919050565b600060208201905081810360008301526157f0816157b4565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000615853602883613b11565b915061585e826157f7565b604082019050919050565b6000602082019050818103600083015261588281615846565b9050919050565b600060a08201905061589e6000830188613c9a565b6158ab6020830187613c9a565b81810360408301526158bd818661418e565b905081810360608301526158d1818561418e565b905081810360808301526158e581846155d1565b9050969550505050505056fea2646970667358221220e81fb2a9fe096698dd4c98ab25f56cb257241dea813562a01d106589b1a2b0c264736f6c634300080f003368747470733a2f2f7274666b742e6d7970696e6174612e636c6f75642f697066732f516d526255534441464c6635694575553976343956743759707079436a47734a514d7871727436505746355246362f31

Deployed Bytecode

0x6080604052600436106101c15760003560e01c80636b20c454116100f7578063a22cb46511610095578063f242432a11610064578063f242432a1461067b578063f2fde38b146106a4578063f5298aca146106cd578063fc784d49146106f6576101c1565b8063a22cb465146105c3578063b7d8e1a9146105ec578063cfea3ca314610615578063e985e9c51461063e576101c1565b806374ef72b3116100d157806374ef72b3146104f557806378416adb146105325780638da5cb5b1461056f578063a1af1b021461059a576101c1565b80636b20c454146104785780636c8b703f146104a1578063715018a6146104de576101c1565b806324600fc3116101645780634e1273f41161013e5780634e1273f4146103ac5780635b746077146103e957806360f67c551461042657806368625a891461044f576101c1565b806324600fc31461032f5780632eb2c2d6146103465780634c8323a81461036f576101c1565b80630e89341c116101a05780630e89341c14610270578063134f336e146102ad5780631a20ea68146102c95780631b99db0d14610306576101c1565b8062fdd58e146101c657806301ffc9a7146102035780630e6dfcd514610240575b600080fd5b3480156101d257600080fd5b506101ed60048036038101906101e89190613961565b61071f565b6040516101fa91906139b0565b60405180910390f35b34801561020f57600080fd5b5061022a60048036038101906102259190613a23565b6107e7565b6040516102379190613a6b565b60405180910390f35b61025a60048036038101906102559190613a86565b6108c9565b60405161026791906139b0565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190613ad9565b610ee6565b6040516102a49190613b9f565b60405180910390f35b6102c760048036038101906102c29190613c26565b610f8b565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190613ad9565b611658565b6040516102fd9190613ca9565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613cc4565b61168b565b005b34801561033b57600080fd5b50610344611830565b005b34801561035257600080fd5b5061036d60048036038101906103689190613ef7565b6118f5565b005b34801561037b57600080fd5b5061039660048036038101906103919190613fc6565b611996565b6040516103a391906139b0565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce91906140b6565b6119ae565b6040516103e091906141ec565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190613ad9565b611ac7565b60405161041d91906139b0565b60405180910390f35b34801561043257600080fd5b5061044d6004803603810190610448919061420e565b611adf565b005b34801561045b57600080fd5b5061047660048036038101906104719190613961565b611bb1565b005b34801561048457600080fd5b5061049f600480360381019061049a919061424e565b611c75565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190613ad9565b611d12565b6040516104d59190613b9f565b60405180910390f35b3480156104ea57600080fd5b506104f3611db2565b005b34801561050157600080fd5b5061051c60048036038101906105179190613961565b611e3a565b6040516105299190613ca9565b60405180910390f35b34801561053e57600080fd5b5061055960048036038101906105549190613ad9565b611f05565b60405161056691906139b0565b60405180910390f35b34801561057b57600080fd5b50610584611f1d565b6040516105919190613ca9565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc919061432f565b611f47565b005b3480156105cf57600080fd5b506105ea60048036038101906105e591906143bb565b611feb565b005b3480156105f857600080fd5b50610613600480360381019061060e9190613fc6565b612001565b005b34801561062157600080fd5b5061063c60048036038101906106379190614451565b6120c1565b005b34801561064a57600080fd5b5061066560048036038101906106609190614505565b6121d9565b6040516106729190613a6b565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d9190614545565b61226d565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190613fc6565b61230e565b005b3480156106d957600080fd5b506106f460048036038101906106ef91906145dc565b612405565b005b34801561070257600080fd5b5061071d60048036038101906107189190613cc4565b6124a2565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361078f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610786906146a1565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c257506108c18261253a565b5b9050919050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461095b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109529061470d565b60405180910390fd5b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054036109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490614779565b60405180910390fd5b60066000600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200190815260200160002054600160056000600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200190815260200160002054610a8f91906147c8565b1115610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac79061486a565b60405180910390fd5b60008390508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b8152600401610b2591906139b0565b602060405180830381865afa158015610b42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b66919061489f565b73ffffffffffffffffffffffffffffffffffffffff1614610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb390614918565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660076000600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290614984565b60405180910390fd5b600160056000600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200190815260200160002054610d4a91906147c8565b60056000600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152602001908152602001600020819055508460076000600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610eda85600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001604051806020016040528060008152506125a4565b60019150509392505050565b6060600a60008381526020019081526020016000208054610f06906149d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f32906149d3565b8015610f7f5780601f10610f5457610100808354040283529160200191610f7f565b820191906000526020600020905b815481529060010190602001808311610f6257829003601f168201915b50505050509050919050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461101b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110129061470d565b60405180910390fd5b60008282905011611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890614a50565b60405180910390fd5b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054036110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90614779565b60405180910390fd5b60066000600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152602001908152602001600020548282905060056000600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020019081526020016000205461119791906147c8565b11156111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf9061486a565b60405180910390fd5b600083905060005b8383905081101561153c57600073ffffffffffffffffffffffffffffffffffffffff1660076000600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008686858181106112a7576112a6614a70565b5b90506020020135815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90614984565b60405180910390fd5b8573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16636352211e86868581811061137957611378614a70565b5b905060200201356040518263ffffffff1660e01b815260040161139c91906139b0565b602060405180830381865afa1580156113b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113dd919061489f565b73ffffffffffffffffffffffffffffffffffffffff1614611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90614918565b60405180910390fd5b8560076000600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008686858181106114d8576114d7614a70565b5b90506020020135815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508061153590614a9f565b90506111e0565b508282905060056000600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020019081526020016000205461159e91906147c8565b60056000600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020019081526020016000208190555061165185600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485859050604051806020016040528060008152506125a4565b5050505050565b60086020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600073ffffffffffffffffffffffffffffffffffffffff166008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361172d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172490614b59565b60405180910390fd5b80611738338461071f565b1015611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090614bc5565b60405180910390fd5b611784338383612405565b60006008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16633a2083378385336040518463ffffffff1660e01b81526004016117f993929190614be5565b600060405180830381600087803b15801561181357600080fd5b505af1158015611827573d6000803e3d6000fd5b50505050505050565b611838612754565b73ffffffffffffffffffffffffffffffffffffffff16611856611f1d565b73ffffffffffffffffffffffffffffffffffffffff16146118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390614c68565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156118f2573d6000803e3d6000fd5b50565b6118fd612754565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061194357506119428561193d612754565b6121d9565b5b611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990614cfa565b60405180910390fd5b61198f858585858561275c565b5050505050565b60096020528060005260406000206000915090505481565b606081518351146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90614d8c565b60405180910390fd5b6000835167ffffffffffffffff811115611a1157611a10613d04565b5b604051908082528060200260200182016040528015611a3f5781602001602082028036833780820191505090505b50905060005b8451811015611abc57611a8c858281518110611a6457611a63614a70565b5b6020026020010151858381518110611a7f57611a7e614a70565b5b602002602001015161071f565b828281518110611a9f57611a9e614a70565b5b60200260200101818152505080611ab590614a9f565b9050611a45565b508091505092915050565b60056020528060005260406000206000915090505481565b611ae7612754565b73ffffffffffffffffffffffffffffffffffffffff16611b05611f1d565b73ffffffffffffffffffffffffffffffffffffffff1614611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5290614c68565b60405180910390fd5b806008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b611bb9612754565b73ffffffffffffffffffffffffffffffffffffffff16611bd7611f1d565b73ffffffffffffffffffffffffffffffffffffffff1614611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2490614c68565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b611c7d612754565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611cc35750611cc283611cbd612754565b6121d9565b5b611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf990614e1e565b60405180910390fd5b611d0d838383612a7d565b505050565b600a6020528060005260406000206000915090508054611d31906149d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5d906149d3565b8015611daa5780601f10611d7f57610100808354040283529160200191611daa565b820191906000526020600020905b815481529060010190602001808311611d8d57829003601f168201915b505050505081565b611dba612754565b73ffffffffffffffffffffffffffffffffffffffff16611dd8611f1d565b73ffffffffffffffffffffffffffffffffffffffff1614611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2590614c68565b60405180910390fd5b611e386000612d4b565b565b600060076000600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905092915050565b60066020528060005260406000206000915090505481565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f4f612754565b73ffffffffffffffffffffffffffffffffffffffff16611f6d611f1d565b73ffffffffffffffffffffffffffffffffffffffff1614611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba90614c68565b60405180910390fd5b8181600a60008681526020019081526020016000209182611fe5929190614ff5565b50505050565b611ffd611ff6612754565b8383612e11565b5050565b612009612754565b73ffffffffffffffffffffffffffffffffffffffff16612027611f1d565b73ffffffffffffffffffffffffffffffffffffffff161461207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207490614c68565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6120c9612754565b73ffffffffffffffffffffffffffffffffffffffff166120e7611f1d565b73ffffffffffffffffffffffffffffffffffffffff161461213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490614c68565b60405180910390fd5b60005b868690508110156121d0576121bf83838381811061216157612160614a70565b5b90506020020160208101906121769190613fc6565b88888481811061218957612188614a70565b5b905060200201358787858181106121a3576121a2614a70565b5b90506020020135604051806020016040528060008152506125a4565b806121c990614a9f565b9050612140565b50505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612275612754565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806122bb57506122ba856122b5612754565b6121d9565b5b6122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190614e1e565b60405180910390fd5b6123078585858585612f7d565b5050505050565b612316612754565b73ffffffffffffffffffffffffffffffffffffffff16612334611f1d565b73ffffffffffffffffffffffffffffffffffffffff161461238a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238190614c68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090615137565b60405180910390fd5b61240281612d4b565b50565b61240d612754565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061245357506124528361244d612754565b6121d9565b5b612492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248990614e1e565b60405180910390fd5b61249d838383613218565b505050565b6124aa612754565b73ffffffffffffffffffffffffffffffffffffffff166124c8611f1d565b73ffffffffffffffffffffffffffffffffffffffff161461251e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251590614c68565b60405180910390fd5b8060066000848152602001908152602001600020819055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260a906151c9565b60405180910390fd5b600061261d612754565b9050600061262a8561345e565b905060006126378561345e565b9050612648836000898585896134d8565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126a791906147c8565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516127259291906151e9565b60405180910390a461273c836000898585896134e0565b61274b836000898989896134e8565b50505050505050565b600033905090565b81518351146127a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279790615284565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361280f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280690615316565b60405180910390fd5b6000612819612754565b90506128298187878787876134d8565b60005b84518110156129da57600085828151811061284a57612849614a70565b5b60200260200101519050600085838151811061286957612868614a70565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561290a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612901906153a8565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129bf91906147c8565b92505081905550505050806129d390614a9f565b905061282c565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612a519291906153c8565b60405180910390a4612a678187878787876134e0565b612a758187878787876136bf565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae390615471565b60405180910390fd5b8051825114612b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2790615284565b60405180910390fd5b6000612b3a612754565b9050612b5a818560008686604051806020016040528060008152506134d8565b60005b8351811015612ca7576000848281518110612b7b57612b7a614a70565b5b602002602001015190506000848381518110612b9a57612b99614a70565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3290615503565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080612c9f90614a9f565b915050612b5d565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612d1f9291906153c8565b60405180910390a4612d45818560008686604051806020016040528060008152506134e0565b50505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7690615595565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f709190613a6b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe390615316565b60405180910390fd5b6000612ff6612754565b905060006130038561345e565b905060006130108561345e565b90506130208389898585896134d8565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156130b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ae906153a8565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461316c91906147c8565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516131e99291906151e9565b60405180910390a46131ff848a8a86868a6134e0565b61320d848a8a8a8a8a6134e8565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327e90615471565b60405180910390fd5b6000613291612754565b9050600061329e8461345e565b905060006132ab8461345e565b90506132cb838760008585604051806020016040528060008152506134d8565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015613362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335990615503565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62898960405161342f9291906151e9565b60405180910390a4613455848860008686604051806020016040528060008152506134e0565b50505050505050565b60606000600167ffffffffffffffff81111561347d5761347c613d04565b5b6040519080825280602002602001820160405280156134ab5781602001602082028036833780820191505090505b50905082816000815181106134c3576134c2614a70565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b6135078473ffffffffffffffffffffffffffffffffffffffff16613896565b156136b7578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161354d95949392919061560a565b6020604051808303816000875af192505050801561358957506040513d601f19601f820116820180604052508101906135869190615679565b60015b61362e576135956156b3565b806308c379a0036135f157506135a96156d5565b806135b457506135f3565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e89190613b9f565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613625906157d7565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146136b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ac90615869565b60405180910390fd5b505b505050505050565b6136de8473ffffffffffffffffffffffffffffffffffffffff16613896565b1561388e578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401613724959493929190615889565b6020604051808303816000875af192505050801561376057506040513d601f19601f8201168201806040525081019061375d9190615679565b60015b6138055761376c6156b3565b806308c379a0036137c857506137806156d5565b8061378b57506137ca565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137bf9190613b9f565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137fc906157d7565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461388c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388390615869565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138f8826138cd565b9050919050565b613908816138ed565b811461391357600080fd5b50565b600081359050613925816138ff565b92915050565b6000819050919050565b61393e8161392b565b811461394957600080fd5b50565b60008135905061395b81613935565b92915050565b60008060408385031215613978576139776138c3565b5b600061398685828601613916565b92505060206139978582860161394c565b9150509250929050565b6139aa8161392b565b82525050565b60006020820190506139c560008301846139a1565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a00816139cb565b8114613a0b57600080fd5b50565b600081359050613a1d816139f7565b92915050565b600060208284031215613a3957613a386138c3565b5b6000613a4784828501613a0e565b91505092915050565b60008115159050919050565b613a6581613a50565b82525050565b6000602082019050613a806000830184613a5c565b92915050565b600080600060608486031215613a9f57613a9e6138c3565b5b6000613aad86828701613916565b9350506020613abe86828701613916565b9250506040613acf8682870161394c565b9150509250925092565b600060208284031215613aef57613aee6138c3565b5b6000613afd8482850161394c565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b40578082015181840152602081019050613b25565b83811115613b4f576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b7182613b06565b613b7b8185613b11565b9350613b8b818560208601613b22565b613b9481613b55565b840191505092915050565b60006020820190508181036000830152613bb98184613b66565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613be657613be5613bc1565b5b8235905067ffffffffffffffff811115613c0357613c02613bc6565b5b602083019150836020820283011115613c1f57613c1e613bcb565b5b9250929050565b60008060008060608587031215613c4057613c3f6138c3565b5b6000613c4e87828801613916565b9450506020613c5f87828801613916565b935050604085013567ffffffffffffffff811115613c8057613c7f6138c8565b5b613c8c87828801613bd0565b925092505092959194509250565b613ca3816138ed565b82525050565b6000602082019050613cbe6000830184613c9a565b92915050565b60008060408385031215613cdb57613cda6138c3565b5b6000613ce98582860161394c565b9250506020613cfa8582860161394c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d3c82613b55565b810181811067ffffffffffffffff82111715613d5b57613d5a613d04565b5b80604052505050565b6000613d6e6138b9565b9050613d7a8282613d33565b919050565b600067ffffffffffffffff821115613d9a57613d99613d04565b5b602082029050602081019050919050565b6000613dbe613db984613d7f565b613d64565b90508083825260208201905060208402830185811115613de157613de0613bcb565b5b835b81811015613e0a5780613df6888261394c565b845260208401935050602081019050613de3565b5050509392505050565b600082601f830112613e2957613e28613bc1565b5b8135613e39848260208601613dab565b91505092915050565b600080fd5b600067ffffffffffffffff821115613e6257613e61613d04565b5b613e6b82613b55565b9050602081019050919050565b82818337600083830152505050565b6000613e9a613e9584613e47565b613d64565b905082815260208101848484011115613eb657613eb5613e42565b5b613ec1848285613e78565b509392505050565b600082601f830112613ede57613edd613bc1565b5b8135613eee848260208601613e87565b91505092915050565b600080600080600060a08688031215613f1357613f126138c3565b5b6000613f2188828901613916565b9550506020613f3288828901613916565b945050604086013567ffffffffffffffff811115613f5357613f526138c8565b5b613f5f88828901613e14565b935050606086013567ffffffffffffffff811115613f8057613f7f6138c8565b5b613f8c88828901613e14565b925050608086013567ffffffffffffffff811115613fad57613fac6138c8565b5b613fb988828901613ec9565b9150509295509295909350565b600060208284031215613fdc57613fdb6138c3565b5b6000613fea84828501613916565b91505092915050565b600067ffffffffffffffff82111561400e5761400d613d04565b5b602082029050602081019050919050565b600061403261402d84613ff3565b613d64565b9050808382526020820190506020840283018581111561405557614054613bcb565b5b835b8181101561407e578061406a8882613916565b845260208401935050602081019050614057565b5050509392505050565b600082601f83011261409d5761409c613bc1565b5b81356140ad84826020860161401f565b91505092915050565b600080604083850312156140cd576140cc6138c3565b5b600083013567ffffffffffffffff8111156140eb576140ea6138c8565b5b6140f785828601614088565b925050602083013567ffffffffffffffff811115614118576141176138c8565b5b61412485828601613e14565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6141638161392b565b82525050565b6000614175838361415a565b60208301905092915050565b6000602082019050919050565b60006141998261412e565b6141a38185614139565b93506141ae8361414a565b8060005b838110156141df5781516141c68882614169565b97506141d183614181565b9250506001810190506141b2565b5085935050505092915050565b60006020820190508181036000830152614206818461418e565b905092915050565b60008060408385031215614225576142246138c3565b5b60006142338582860161394c565b925050602061424485828601613916565b9150509250929050565b600080600060608486031215614267576142666138c3565b5b600061427586828701613916565b935050602084013567ffffffffffffffff811115614296576142956138c8565b5b6142a286828701613e14565b925050604084013567ffffffffffffffff8111156142c3576142c26138c8565b5b6142cf86828701613e14565b9150509250925092565b60008083601f8401126142ef576142ee613bc1565b5b8235905067ffffffffffffffff81111561430c5761430b613bc6565b5b60208301915083600182028301111561432857614327613bcb565b5b9250929050565b600080600060408486031215614348576143476138c3565b5b60006143568682870161394c565b935050602084013567ffffffffffffffff811115614377576143766138c8565b5b614383868287016142d9565b92509250509250925092565b61439881613a50565b81146143a357600080fd5b50565b6000813590506143b58161438f565b92915050565b600080604083850312156143d2576143d16138c3565b5b60006143e085828601613916565b92505060206143f1858286016143a6565b9150509250929050565b60008083601f84011261441157614410613bc1565b5b8235905067ffffffffffffffff81111561442e5761442d613bc6565b5b60208301915083602082028301111561444a57614449613bcb565b5b9250929050565b6000806000806000806060878903121561446e5761446d6138c3565b5b600087013567ffffffffffffffff81111561448c5761448b6138c8565b5b61449889828a01613bd0565b9650965050602087013567ffffffffffffffff8111156144bb576144ba6138c8565b5b6144c789828a01613bd0565b9450945050604087013567ffffffffffffffff8111156144ea576144e96138c8565b5b6144f689828a016143fb565b92509250509295509295509295565b6000806040838503121561451c5761451b6138c3565b5b600061452a85828601613916565b925050602061453b85828601613916565b9150509250929050565b600080600080600060a08688031215614561576145606138c3565b5b600061456f88828901613916565b955050602061458088828901613916565b94505060406145918882890161394c565b93505060606145a28882890161394c565b925050608086013567ffffffffffffffff8111156145c3576145c26138c8565b5b6145cf88828901613ec9565b9150509295509295909350565b6000806000606084860312156145f5576145f46138c3565b5b600061460386828701613916565b93505060206146148682870161394c565b92505060406146258682870161394c565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061468b602b83613b11565b91506146968261462f565b604082019050919050565b600060208201905081810360008301526146ba8161467e565b9050919050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b60006146f7600e83613b11565b9150614702826146c1565b602082019050919050565b60006020820190508181036000830152614726816146ea565b9050919050565b7f436f6c6c656374696f6e206e6f7420617574686f72697a656400000000000000600082015250565b6000614763601983613b11565b915061476e8261472d565b602082019050919050565b6000602082019050818103600083015261479281614756565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147d38261392b565b91506147de8361392b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561481357614812614799565b5b828201905092915050565b7f4c696d6974207265616368656400000000000000000000000000000000000000600082015250565b6000614854600d83613b11565b915061485f8261481e565b602082019050919050565b6000602082019050818103600083015261488381614847565b9050919050565b600081519050614899816138ff565b92915050565b6000602082840312156148b5576148b46138c3565b5b60006148c38482850161488a565b91505092915050565b7f446f6e2774206f776e207468617420746f6b656e000000000000000000000000600082015250565b6000614902601483613b11565b915061490d826148cc565b602082019050919050565b60006020820190508181036000830152614931816148f5565b9050919050565b7f546f6b656e2072656465656d6420616c72656164790000000000000000000000600082015250565b600061496e601583613b11565b915061497982614938565b602082019050919050565b6000602082019050818103600083015261499d81614961565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806149eb57607f821691505b6020821081036149fe576149fd6149a4565b5b50919050565b7f4d69736d61746368206f66206c656e6774680000000000000000000000000000600082015250565b6000614a3a601283613b11565b9150614a4582614a04565b602082019050919050565b60006020820190508181036000830152614a6981614a2d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614aaa8261392b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614adc57614adb614799565b5b600182019050919050565b7f4e6f20666f7267696e6720616464726573732073657420666f7220746869732060008201527f746f6b656e000000000000000000000000000000000000000000000000000000602082015250565b6000614b43602583613b11565b9150614b4e82614ae7565b604082019050919050565b60006020820190508181036000830152614b7281614b36565b9050919050565b7f446f65736e2774206f776e2074686520746f6b656e0000000000000000000000600082015250565b6000614baf601583613b11565b9150614bba82614b79565b602082019050919050565b60006020820190508181036000830152614bde81614ba2565b9050919050565b6000606082019050614bfa60008301866139a1565b614c0760208301856139a1565b614c146040830184613c9a565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c52602083613b11565b9150614c5d82614c1c565b602082019050919050565b60006020820190508181036000830152614c8181614c45565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614ce4603283613b11565b9150614cef82614c88565b604082019050919050565b60006020820190508181036000830152614d1381614cd7565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000614d76602983613b11565b9150614d8182614d1a565b604082019050919050565b60006020820190508181036000830152614da581614d69565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000614e08602983613b11565b9150614e1382614dac565b604082019050919050565b60006020820190508181036000830152614e3781614dfb565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614eab7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614e6e565b614eb58683614e6e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614ef2614eed614ee88461392b565b614ecd565b61392b565b9050919050565b6000819050919050565b614f0c83614ed7565b614f20614f1882614ef9565b848454614e7b565b825550505050565b600090565b614f35614f28565b614f40818484614f03565b505050565b5b81811015614f6457614f59600082614f2d565b600181019050614f46565b5050565b601f821115614fa957614f7a81614e49565b614f8384614e5e565b81016020851015614f92578190505b614fa6614f9e85614e5e565b830182614f45565b50505b505050565b600082821c905092915050565b6000614fcc60001984600802614fae565b1980831691505092915050565b6000614fe58383614fbb565b9150826002028217905092915050565b614fff8383614e3e565b67ffffffffffffffff81111561501857615017613d04565b5b61502282546149d3565b61502d828285614f68565b6000601f83116001811461505c576000841561504a578287013590505b6150548582614fd9565b8655506150bc565b601f19841661506a86614e49565b60005b828110156150925784890135825560018201915060208501945060208101905061506d565b868310156150af57848901356150ab601f891682614fbb565b8355505b6001600288020188555050505b50505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615121602683613b11565b915061512c826150c5565b604082019050919050565b6000602082019050818103600083015261515081615114565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006151b3602183613b11565b91506151be82615157565b604082019050919050565b600060208201905081810360008301526151e2816151a6565b9050919050565b60006040820190506151fe60008301856139a1565b61520b60208301846139a1565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600061526e602883613b11565b915061527982615212565b604082019050919050565b6000602082019050818103600083015261529d81615261565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615300602583613b11565b915061530b826152a4565b604082019050919050565b6000602082019050818103600083015261532f816152f3565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000615392602a83613b11565b915061539d82615336565b604082019050919050565b600060208201905081810360008301526153c181615385565b9050919050565b600060408201905081810360008301526153e2818561418e565b905081810360208301526153f6818461418e565b90509392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061545b602383613b11565b9150615466826153ff565b604082019050919050565b6000602082019050818103600083015261548a8161544e565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b60006154ed602483613b11565b91506154f882615491565b604082019050919050565b6000602082019050818103600083015261551c816154e0565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b600061557f602983613b11565b915061558a82615523565b604082019050919050565b600060208201905081810360008301526155ae81615572565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006155dc826155b5565b6155e681856155c0565b93506155f6818560208601613b22565b6155ff81613b55565b840191505092915050565b600060a08201905061561f6000830188613c9a565b61562c6020830187613c9a565b61563960408301866139a1565b61564660608301856139a1565b818103608083015261565881846155d1565b90509695505050505050565b600081519050615673816139f7565b92915050565b60006020828403121561568f5761568e6138c3565b5b600061569d84828501615664565b91505092915050565b60008160e01c9050919050565b600060033d11156156d25760046000803e6156cf6000516156a6565b90505b90565b600060443d10615762576156e76138b9565b60043d036004823e80513d602482011167ffffffffffffffff8211171561570f575050615762565b808201805167ffffffffffffffff81111561572d5750505050615762565b80602083010160043d03850181111561574a575050505050615762565b61575982602001850186613d33565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006157c1603483613b11565b91506157cc82615765565b604082019050919050565b600060208201905081810360008301526157f0816157b4565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000615853602883613b11565b915061585e826157f7565b604082019050919050565b6000602082019050818103600083015261588281615846565b9050919050565b600060a08201905061589e6000830188613c9a565b6158ab6020830187613c9a565b81810360408301526158bd818661418e565b905081810360608301526158d1818561418e565b905081810360808301526158e581846155d1565b9050969550505050505056fea2646970667358221220e81fb2a9fe096698dd4c98ab25f56cb257241dea813562a01d106589b1a2b0c264736f6c634300080f0033

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.