ETH Price: $3,378.04 (+1.47%)

Token

Nitro League Rewards Vault (NLRV)
 

Overview

Max Total Supply

26 NLRV

Holders

21

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xF9C10dC0aCAC201388C96374e3386F568962d0E8
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
NitroLeagueRewardsVault

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : NitroLeagueRewardsVault.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract NitroLeagueRewardsVault is ERC1155, Ownable{

    string public name = "Nitro League Rewards Vault";
    string public symbol = "NLRV";

    string private _baseURI; //the token metadata 
    string private _contractDefination; //the collection metadata 
    bool private _isMetaLocked;


    constructor() ERC1155("") {
    }

    function setBaseURI(string memory baseuri, string memory contracturi) public onlyOwner {
        require(bytes(baseuri).length > 0, "baseURI cannot be empty");
        require(_isMetaLocked == false, "contract is locked, cannot modify");

        _baseURI = baseuri;
        _contractDefination = contracturi;
    }

    function getBaseURI() public view returns (string memory) {
        return _baseURI;
    }

    function uri(uint256 tokenid) public view override returns (string memory) {
        return string(abi.encodePacked(_baseURI, Strings.toString(tokenid),".json")) ;
    }

    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked(_baseURI, _contractDefination,".json")) ;

    }

    function getMetaLocked() public view returns(bool isMetaLocked){
        return _isMetaLocked;
    }

    function lockMetaData() public onlyOwner {
        _isMetaLocked = true;
    }

    function mint(address account, uint _id, uint256 amount) public onlyOwner returns (uint)
    {
        _mint(account, _id, amount, "");
        return _id;
    }

    function bulkMint(address[] memory accounts, uint[] memory _ids, uint256[] memory amounts) public onlyOwner
    {
        require(_ids.length == accounts.length,"data inconsistent");
        require(_ids.length == amounts.length,"data inconsistent");

         for(uint i =0; i < accounts.length; i++) {
            _mint(accounts[i], _ids[i], amounts[i], "");
         }
    }

   


}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

        return array;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 5 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 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 10 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 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"
      ]
    }
  },
  "libraries": {}
}

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":"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":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"bulkMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMetaLocked","outputs":[{"internalType":"bool","name":"isMetaLocked","type":"bool"}],"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":"lockMetaData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"string","name":"baseuri","type":"string"},{"internalType":"string","name":"contracturi","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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"}]

60806040526040518060400160405280601a81526020017f4e6974726f204c65616775652052657761726473205661756c740000000000008152506004908051906020019062000051929190620001e0565b506040518060400160405280600481526020017f4e4c525600000000000000000000000000000000000000000000000000000000815250600590805190602001906200009f929190620001e0565b50348015620000ad57600080fd5b5060405180602001604052806000815250620000cf81620000f660201b60201c565b50620000f0620000e46200011260201b60201c565b6200011a60201b60201c565b620002f5565b80600290805190602001906200010e929190620001e0565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ee90620002bf565b90600052602060002090601f0160209004810192826200021257600085556200025e565b82601f106200022d57805160ff19168380011785556200025e565b828001600101855582156200025e579182015b828111156200025d57825182559160200191906001019062000240565b5b5090506200026d919062000271565b5090565b5b808211156200028c57600081600090555060010162000272565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d857607f821691505b60208210811415620002ef57620002ee62000290565b5b50919050565b61386380620003056000396000f3fe608060405234801561001057600080fd5b506004361061012b5760003560e01c8063714c5398116100ad578063a22cb46511610071578063a22cb4651461031e578063e8a3d4851461033a578063e985e9c514610358578063f242432a14610388578063f2fde38b146103a45761012b565b8063714c5398146102b0578063715018a6146102ce5780638da5cb5b146102d857806395d89b41146102f65780639e251758146103145761012b565b80632c740f2e116100f45780632c740f2e1461020e5780632eb2c2d61461022c57806335be7f04146102485780634e1273f4146102645780636790a9de146102945761012b565b8062fdd58e1461013057806301ffc9a71461016057806306fdde03146101905780630e89341c146101ae578063156e29f6146101de575b600080fd5b61014a60048036038101906101459190611f55565b6103c0565b6040516101579190611fa4565b60405180910390f35b61017a60048036038101906101759190612017565b610489565b604051610187919061205f565b60405180910390f35b61019861056b565b6040516101a59190612113565b60405180910390f35b6101c860048036038101906101c39190612135565b6105f9565b6040516101d59190612113565b60405180910390f35b6101f860048036038101906101f39190612162565b61062d565b6040516102059190611fa4565b60405180910390f35b61021661065c565b604051610223919061205f565b60405180910390f35b610246600480360381019061024191906123b2565b610673565b005b610262600480360381019061025d9190612544565b610714565b005b61027e600480360381019061027991906125eb565b610832565b60405161028b9190612721565b60405180910390f35b6102ae60048036038101906102a991906127e4565b61094b565b005b6102b8610a1f565b6040516102c59190612113565b60405180910390f35b6102d6610ab1565b005b6102e0610ac5565b6040516102ed919061286b565b60405180910390f35b6102fe610aef565b60405161030b9190612113565b60405180910390f35b61031c610b7d565b005b610338600480360381019061033391906128b2565b610ba2565b005b610342610bb8565b60405161034f9190612113565b60405180910390f35b610372600480360381019061036d91906128f2565b610be3565b60405161037f919061205f565b60405180910390f35b6103a2600480360381019061039d9190612932565b610c77565b005b6103be60048036038101906103b991906129c9565b610d18565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161042890612a68565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610564575061056382610d9c565b5b9050919050565b6004805461057890612ab7565b80601f01602080910402602001604051908101604052809291908181526020018280546105a490612ab7565b80156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b505050505081565b6060600661060683610e06565b604051602001610617929190612c05565b6040516020818303038152906040529050919050565b6000610637610f67565b61065284848460405180602001604052806000815250610fe5565b8290509392505050565b6000600860009054906101000a900460ff16905090565b61067b611196565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106c157506106c0856106bb611196565b610be3565b5b610700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f790612ca6565b60405180910390fd5b61070d858585858561119e565b5050505050565b61071c610f67565b8251825114610760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075790612d12565b60405180910390fd5b80518251146107a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079b90612d12565b60405180910390fd5b60005b835181101561082c576108198482815181106107c6576107c5612d32565b5b60200260200101518483815181106107e1576107e0612d32565b5b60200260200101518484815181106107fc576107fb612d32565b5b602002602001015160405180602001604052806000815250610fe5565b808061082490612d90565b9150506107a7565b50505050565b60608151835114610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f90612e4b565b60405180910390fd5b6000835167ffffffffffffffff811115610895576108946121ba565b5b6040519080825280602002602001820160405280156108c35781602001602082028036833780820191505090505b50905060005b8451811015610940576109108582815181106108e8576108e7612d32565b5b602002602001015185838151811061090357610902612d32565b5b60200260200101516103c0565b82828151811061092357610922612d32565b5b6020026020010181815250508061093990612d90565b90506108c9565b508091505092915050565b610953610f67565b6000825111610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90612eb7565b60405180910390fd5b60001515600860009054906101000a900460ff161515146109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e490612f49565b60405180910390fd5b8160069080519060200190610a03929190611e0a565b508060079080519060200190610a1a929190611e0a565b505050565b606060068054610a2e90612ab7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5a90612ab7565b8015610aa75780601f10610a7c57610100808354040283529160200191610aa7565b820191906000526020600020905b815481529060010190602001808311610a8a57829003601f168201915b5050505050905090565b610ab9610f67565b610ac360006114c0565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054610afc90612ab7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2890612ab7565b8015610b755780601f10610b4a57610100808354040283529160200191610b75565b820191906000526020600020905b815481529060010190602001808311610b5857829003601f168201915b505050505081565b610b85610f67565b6001600860006101000a81548160ff021916908315150217905550565b610bb4610bad611196565b8383611586565b5050565b606060066007604051602001610bcf929190612f69565b604051602081830303815290604052905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c7f611196565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610cc55750610cc485610cbf611196565b610be3565b5b610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb90612ca6565b60405180910390fd5b610d1185858585856116f3565b5050505050565b610d20610f67565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d879061300a565b60405180910390fd5b610d99816114c0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60606000821415610e4e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050610f62565b600082905060005b60008214610e80578080610e6990612d90565b915050600a82610e799190613059565b9150610e56565b60008167ffffffffffffffff811115610e9c57610e9b6121ba565b5b6040519080825280601f01601f191660200182016040528015610ece5781602001600182028036833780820191505090505b5090505b60008514610f5b57600182610ee7919061308a565b9150600a85610ef691906130be565b6030610f0291906130ef565b60f81b818381518110610f1857610f17612d32565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85610f549190613059565b9450610ed2565b8093505050505b919050565b610f6f611196565b73ffffffffffffffffffffffffffffffffffffffff16610f8d610ac5565b73ffffffffffffffffffffffffffffffffffffffff1614610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90613191565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90613223565b60405180910390fd5b600061105f611196565b9050600061106c8561198f565b905060006110798561198f565b905061108a83600089858589611a09565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110e991906130ef565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611167929190613243565b60405180910390a461117e83600089858589611a11565b61118d83600089898989611a19565b50505050505050565b600033905090565b81518351146111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d9906132de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990613370565b60405180910390fd5b600061125c611196565b905061126c818787878787611a09565b60005b845181101561141d57600085828151811061128d5761128c612d32565b5b6020026020010151905060008583815181106112ac576112ab612d32565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561134d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134490613402565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461140291906130ef565b925050819055505050508061141690612d90565b905061126f565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611494929190613422565b60405180910390a46114aa818787878787611a11565b6114b8818787878787611c00565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec906134cb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116e6919061205f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90613370565b60405180910390fd5b600061176d611196565b9050600061177a8561198f565b905060006117878561198f565b9050611797838989858589611a09565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590613402565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118e391906130ef565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611960929190613243565b60405180910390a4611976848a8a86868a611a11565b611984848a8a8a8a8a611a19565b505050505050505050565b60606000600167ffffffffffffffff8111156119ae576119ad6121ba565b5b6040519080825280602002602001820160405280156119dc5781602001602082028036833780820191505090505b50905082816000815181106119f4576119f3612d32565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b611a388473ffffffffffffffffffffffffffffffffffffffff16611de7565b15611bf8578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611a7e959493929190613540565b602060405180830381600087803b158015611a9857600080fd5b505af1925050508015611ac957506040513d601f19601f82011682018060405250810190611ac691906135af565b60015b611b6f57611ad56135e9565b806308c379a01415611b325750611aea61360b565b80611af55750611b34565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b299190612113565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613713565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed906137a5565b60405180910390fd5b505b505050505050565b611c1f8473ffffffffffffffffffffffffffffffffffffffff16611de7565b15611ddf578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611c659594939291906137c5565b602060405180830381600087803b158015611c7f57600080fd5b505af1925050508015611cb057506040513d601f19601f82011682018060405250810190611cad91906135af565b60015b611d5657611cbc6135e9565b806308c379a01415611d195750611cd161360b565b80611cdc5750611d1b565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d109190612113565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4d90613713565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd4906137a5565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611e1690612ab7565b90600052602060002090601f016020900481019282611e385760008555611e7f565b82601f10611e5157805160ff1916838001178555611e7f565b82800160010185558215611e7f579182015b82811115611e7e578251825591602001919060010190611e63565b5b509050611e8c9190611e90565b5090565b5b80821115611ea9576000816000905550600101611e91565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611eec82611ec1565b9050919050565b611efc81611ee1565b8114611f0757600080fd5b50565b600081359050611f1981611ef3565b92915050565b6000819050919050565b611f3281611f1f565b8114611f3d57600080fd5b50565b600081359050611f4f81611f29565b92915050565b60008060408385031215611f6c57611f6b611eb7565b5b6000611f7a85828601611f0a565b9250506020611f8b85828601611f40565b9150509250929050565b611f9e81611f1f565b82525050565b6000602082019050611fb96000830184611f95565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ff481611fbf565b8114611fff57600080fd5b50565b60008135905061201181611feb565b92915050565b60006020828403121561202d5761202c611eb7565b5b600061203b84828501612002565b91505092915050565b60008115159050919050565b61205981612044565b82525050565b60006020820190506120746000830184612050565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120b4578082015181840152602081019050612099565b838111156120c3576000848401525b50505050565b6000601f19601f8301169050919050565b60006120e58261207a565b6120ef8185612085565b93506120ff818560208601612096565b612108816120c9565b840191505092915050565b6000602082019050818103600083015261212d81846120da565b905092915050565b60006020828403121561214b5761214a611eb7565b5b600061215984828501611f40565b91505092915050565b60008060006060848603121561217b5761217a611eb7565b5b600061218986828701611f0a565b935050602061219a86828701611f40565b92505060406121ab86828701611f40565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6121f2826120c9565b810181811067ffffffffffffffff82111715612211576122106121ba565b5b80604052505050565b6000612224611ead565b905061223082826121e9565b919050565b600067ffffffffffffffff8211156122505761224f6121ba565b5b602082029050602081019050919050565b600080fd5b600061227961227484612235565b61221a565b9050808382526020820190506020840283018581111561229c5761229b612261565b5b835b818110156122c557806122b18882611f40565b84526020840193505060208101905061229e565b5050509392505050565b600082601f8301126122e4576122e36121b5565b5b81356122f4848260208601612266565b91505092915050565b600080fd5b600067ffffffffffffffff82111561231d5761231c6121ba565b5b612326826120c9565b9050602081019050919050565b82818337600083830152505050565b600061235561235084612302565b61221a565b905082815260208101848484011115612371576123706122fd565b5b61237c848285612333565b509392505050565b600082601f830112612399576123986121b5565b5b81356123a9848260208601612342565b91505092915050565b600080600080600060a086880312156123ce576123cd611eb7565b5b60006123dc88828901611f0a565b95505060206123ed88828901611f0a565b945050604086013567ffffffffffffffff81111561240e5761240d611ebc565b5b61241a888289016122cf565b935050606086013567ffffffffffffffff81111561243b5761243a611ebc565b5b612447888289016122cf565b925050608086013567ffffffffffffffff81111561246857612467611ebc565b5b61247488828901612384565b9150509295509295909350565b600067ffffffffffffffff82111561249c5761249b6121ba565b5b602082029050602081019050919050565b60006124c06124bb84612481565b61221a565b905080838252602082019050602084028301858111156124e3576124e2612261565b5b835b8181101561250c57806124f88882611f0a565b8452602084019350506020810190506124e5565b5050509392505050565b600082601f83011261252b5761252a6121b5565b5b813561253b8482602086016124ad565b91505092915050565b60008060006060848603121561255d5761255c611eb7565b5b600084013567ffffffffffffffff81111561257b5761257a611ebc565b5b61258786828701612516565b935050602084013567ffffffffffffffff8111156125a8576125a7611ebc565b5b6125b4868287016122cf565b925050604084013567ffffffffffffffff8111156125d5576125d4611ebc565b5b6125e1868287016122cf565b9150509250925092565b6000806040838503121561260257612601611eb7565b5b600083013567ffffffffffffffff8111156126205761261f611ebc565b5b61262c85828601612516565b925050602083013567ffffffffffffffff81111561264d5761264c611ebc565b5b612659858286016122cf565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61269881611f1f565b82525050565b60006126aa838361268f565b60208301905092915050565b6000602082019050919050565b60006126ce82612663565b6126d8818561266e565b93506126e38361267f565b8060005b838110156127145781516126fb888261269e565b9750612706836126b6565b9250506001810190506126e7565b5085935050505092915050565b6000602082019050818103600083015261273b81846126c3565b905092915050565b600067ffffffffffffffff82111561275e5761275d6121ba565b5b612767826120c9565b9050602081019050919050565b600061278761278284612743565b61221a565b9050828152602081018484840111156127a3576127a26122fd565b5b6127ae848285612333565b509392505050565b600082601f8301126127cb576127ca6121b5565b5b81356127db848260208601612774565b91505092915050565b600080604083850312156127fb576127fa611eb7565b5b600083013567ffffffffffffffff81111561281957612818611ebc565b5b612825858286016127b6565b925050602083013567ffffffffffffffff81111561284657612845611ebc565b5b612852858286016127b6565b9150509250929050565b61286581611ee1565b82525050565b6000602082019050612880600083018461285c565b92915050565b61288f81612044565b811461289a57600080fd5b50565b6000813590506128ac81612886565b92915050565b600080604083850312156128c9576128c8611eb7565b5b60006128d785828601611f0a565b92505060206128e88582860161289d565b9150509250929050565b6000806040838503121561290957612908611eb7565b5b600061291785828601611f0a565b925050602061292885828601611f0a565b9150509250929050565b600080600080600060a0868803121561294e5761294d611eb7565b5b600061295c88828901611f0a565b955050602061296d88828901611f0a565b945050604061297e88828901611f40565b935050606061298f88828901611f40565b925050608086013567ffffffffffffffff8111156129b0576129af611ebc565b5b6129bc88828901612384565b9150509295509295909350565b6000602082840312156129df576129de611eb7565b5b60006129ed84828501611f0a565b91505092915050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000612a52602a83612085565b9150612a5d826129f6565b604082019050919050565b60006020820190508181036000830152612a8181612a45565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612acf57607f821691505b60208210811415612ae357612ae2612a88565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612b1681612ab7565b612b208186612ae9565b94506001821660008114612b3b5760018114612b4c57612b7f565b60ff19831686528186019350612b7f565b612b5585612af4565b60005b83811015612b7757815481890152600182019150602081019050612b58565b838801955050505b50505092915050565b6000612b938261207a565b612b9d8185612ae9565b9350612bad818560208601612096565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612bef600583612ae9565b9150612bfa82612bb9565b600582019050919050565b6000612c118285612b09565b9150612c1d8284612b88565b9150612c2882612be2565b91508190509392505050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b6000612c90602f83612085565b9150612c9b82612c34565b604082019050919050565b60006020820190508181036000830152612cbf81612c83565b9050919050565b7f6461746120696e636f6e73697374656e74000000000000000000000000000000600082015250565b6000612cfc601183612085565b9150612d0782612cc6565b602082019050919050565b60006020820190508181036000830152612d2b81612cef565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d9b82611f1f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612dce57612dcd612d61565b5b600182019050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612e35602983612085565b9150612e4082612dd9565b604082019050919050565b60006020820190508181036000830152612e6481612e28565b9050919050565b7f626173655552492063616e6e6f7420626520656d707479000000000000000000600082015250565b6000612ea1601783612085565b9150612eac82612e6b565b602082019050919050565b60006020820190508181036000830152612ed081612e94565b9050919050565b7f636f6e7472616374206973206c6f636b65642c2063616e6e6f74206d6f64696660008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f33602183612085565b9150612f3e82612ed7565b604082019050919050565b60006020820190508181036000830152612f6281612f26565b9050919050565b6000612f758285612b09565b9150612f818284612b09565b9150612f8c82612be2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ff4602683612085565b9150612fff82612f98565b604082019050919050565b6000602082019050818103600083015261302381612fe7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061306482611f1f565b915061306f83611f1f565b92508261307f5761307e61302a565b5b828204905092915050565b600061309582611f1f565b91506130a083611f1f565b9250828210156130b3576130b2612d61565b5b828203905092915050565b60006130c982611f1f565b91506130d483611f1f565b9250826130e4576130e361302a565b5b828206905092915050565b60006130fa82611f1f565b915061310583611f1f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561313a57613139612d61565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061317b602083612085565b915061318682613145565b602082019050919050565b600060208201905081810360008301526131aa8161316e565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061320d602183612085565b9150613218826131b1565b604082019050919050565b6000602082019050818103600083015261323c81613200565b9050919050565b60006040820190506132586000830185611f95565b6132656020830184611f95565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006132c8602883612085565b91506132d38261326c565b604082019050919050565b600060208201905081810360008301526132f7816132bb565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061335a602583612085565b9150613365826132fe565b604082019050919050565b600060208201905081810360008301526133898161334d565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006133ec602a83612085565b91506133f782613390565b604082019050919050565b6000602082019050818103600083015261341b816133df565b9050919050565b6000604082019050818103600083015261343c81856126c3565b9050818103602083015261345081846126c3565b90509392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006134b5602983612085565b91506134c082613459565b604082019050919050565b600060208201905081810360008301526134e4816134a8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613512826134eb565b61351c81856134f6565b935061352c818560208601612096565b613535816120c9565b840191505092915050565b600060a082019050613555600083018861285c565b613562602083018761285c565b61356f6040830186611f95565b61357c6060830185611f95565b818103608083015261358e8184613507565b90509695505050505050565b6000815190506135a981611feb565b92915050565b6000602082840312156135c5576135c4611eb7565b5b60006135d38482850161359a565b91505092915050565b60008160e01c9050919050565b600060033d11156136085760046000803e6136056000516135dc565b90505b90565b600060443d101561361b5761369e565b613623611ead565b60043d036004823e80513d602482011167ffffffffffffffff8211171561364b57505061369e565b808201805167ffffffffffffffff811115613669575050505061369e565b80602083010160043d03850181111561368657505050505061369e565b613695826020018501866121e9565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006136fd603483612085565b9150613708826136a1565b604082019050919050565b6000602082019050818103600083015261372c816136f0565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061378f602883612085565b915061379a82613733565b604082019050919050565b600060208201905081810360008301526137be81613782565b9050919050565b600060a0820190506137da600083018861285c565b6137e7602083018761285c565b81810360408301526137f981866126c3565b9050818103606083015261380d81856126c3565b905081810360808301526138218184613507565b9050969550505050505056fea2646970667358221220d2ba2a11bfe86c5f9b72dde4cfc31cf1b104c53996c031c8d1624dc578cd60c764736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012b5760003560e01c8063714c5398116100ad578063a22cb46511610071578063a22cb4651461031e578063e8a3d4851461033a578063e985e9c514610358578063f242432a14610388578063f2fde38b146103a45761012b565b8063714c5398146102b0578063715018a6146102ce5780638da5cb5b146102d857806395d89b41146102f65780639e251758146103145761012b565b80632c740f2e116100f45780632c740f2e1461020e5780632eb2c2d61461022c57806335be7f04146102485780634e1273f4146102645780636790a9de146102945761012b565b8062fdd58e1461013057806301ffc9a71461016057806306fdde03146101905780630e89341c146101ae578063156e29f6146101de575b600080fd5b61014a60048036038101906101459190611f55565b6103c0565b6040516101579190611fa4565b60405180910390f35b61017a60048036038101906101759190612017565b610489565b604051610187919061205f565b60405180910390f35b61019861056b565b6040516101a59190612113565b60405180910390f35b6101c860048036038101906101c39190612135565b6105f9565b6040516101d59190612113565b60405180910390f35b6101f860048036038101906101f39190612162565b61062d565b6040516102059190611fa4565b60405180910390f35b61021661065c565b604051610223919061205f565b60405180910390f35b610246600480360381019061024191906123b2565b610673565b005b610262600480360381019061025d9190612544565b610714565b005b61027e600480360381019061027991906125eb565b610832565b60405161028b9190612721565b60405180910390f35b6102ae60048036038101906102a991906127e4565b61094b565b005b6102b8610a1f565b6040516102c59190612113565b60405180910390f35b6102d6610ab1565b005b6102e0610ac5565b6040516102ed919061286b565b60405180910390f35b6102fe610aef565b60405161030b9190612113565b60405180910390f35b61031c610b7d565b005b610338600480360381019061033391906128b2565b610ba2565b005b610342610bb8565b60405161034f9190612113565b60405180910390f35b610372600480360381019061036d91906128f2565b610be3565b60405161037f919061205f565b60405180910390f35b6103a2600480360381019061039d9190612932565b610c77565b005b6103be60048036038101906103b991906129c9565b610d18565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161042890612a68565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610564575061056382610d9c565b5b9050919050565b6004805461057890612ab7565b80601f01602080910402602001604051908101604052809291908181526020018280546105a490612ab7565b80156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b505050505081565b6060600661060683610e06565b604051602001610617929190612c05565b6040516020818303038152906040529050919050565b6000610637610f67565b61065284848460405180602001604052806000815250610fe5565b8290509392505050565b6000600860009054906101000a900460ff16905090565b61067b611196565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106c157506106c0856106bb611196565b610be3565b5b610700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f790612ca6565b60405180910390fd5b61070d858585858561119e565b5050505050565b61071c610f67565b8251825114610760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075790612d12565b60405180910390fd5b80518251146107a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079b90612d12565b60405180910390fd5b60005b835181101561082c576108198482815181106107c6576107c5612d32565b5b60200260200101518483815181106107e1576107e0612d32565b5b60200260200101518484815181106107fc576107fb612d32565b5b602002602001015160405180602001604052806000815250610fe5565b808061082490612d90565b9150506107a7565b50505050565b60608151835114610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f90612e4b565b60405180910390fd5b6000835167ffffffffffffffff811115610895576108946121ba565b5b6040519080825280602002602001820160405280156108c35781602001602082028036833780820191505090505b50905060005b8451811015610940576109108582815181106108e8576108e7612d32565b5b602002602001015185838151811061090357610902612d32565b5b60200260200101516103c0565b82828151811061092357610922612d32565b5b6020026020010181815250508061093990612d90565b90506108c9565b508091505092915050565b610953610f67565b6000825111610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90612eb7565b60405180910390fd5b60001515600860009054906101000a900460ff161515146109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e490612f49565b60405180910390fd5b8160069080519060200190610a03929190611e0a565b508060079080519060200190610a1a929190611e0a565b505050565b606060068054610a2e90612ab7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5a90612ab7565b8015610aa75780601f10610a7c57610100808354040283529160200191610aa7565b820191906000526020600020905b815481529060010190602001808311610a8a57829003601f168201915b5050505050905090565b610ab9610f67565b610ac360006114c0565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054610afc90612ab7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2890612ab7565b8015610b755780601f10610b4a57610100808354040283529160200191610b75565b820191906000526020600020905b815481529060010190602001808311610b5857829003601f168201915b505050505081565b610b85610f67565b6001600860006101000a81548160ff021916908315150217905550565b610bb4610bad611196565b8383611586565b5050565b606060066007604051602001610bcf929190612f69565b604051602081830303815290604052905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c7f611196565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610cc55750610cc485610cbf611196565b610be3565b5b610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb90612ca6565b60405180910390fd5b610d1185858585856116f3565b5050505050565b610d20610f67565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d879061300a565b60405180910390fd5b610d99816114c0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60606000821415610e4e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050610f62565b600082905060005b60008214610e80578080610e6990612d90565b915050600a82610e799190613059565b9150610e56565b60008167ffffffffffffffff811115610e9c57610e9b6121ba565b5b6040519080825280601f01601f191660200182016040528015610ece5781602001600182028036833780820191505090505b5090505b60008514610f5b57600182610ee7919061308a565b9150600a85610ef691906130be565b6030610f0291906130ef565b60f81b818381518110610f1857610f17612d32565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85610f549190613059565b9450610ed2565b8093505050505b919050565b610f6f611196565b73ffffffffffffffffffffffffffffffffffffffff16610f8d610ac5565b73ffffffffffffffffffffffffffffffffffffffff1614610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90613191565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90613223565b60405180910390fd5b600061105f611196565b9050600061106c8561198f565b905060006110798561198f565b905061108a83600089858589611a09565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110e991906130ef565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611167929190613243565b60405180910390a461117e83600089858589611a11565b61118d83600089898989611a19565b50505050505050565b600033905090565b81518351146111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d9906132de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990613370565b60405180910390fd5b600061125c611196565b905061126c818787878787611a09565b60005b845181101561141d57600085828151811061128d5761128c612d32565b5b6020026020010151905060008583815181106112ac576112ab612d32565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561134d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134490613402565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461140291906130ef565b925050819055505050508061141690612d90565b905061126f565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611494929190613422565b60405180910390a46114aa818787878787611a11565b6114b8818787878787611c00565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec906134cb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116e6919061205f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90613370565b60405180910390fd5b600061176d611196565b9050600061177a8561198f565b905060006117878561198f565b9050611797838989858589611a09565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590613402565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118e391906130ef565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611960929190613243565b60405180910390a4611976848a8a86868a611a11565b611984848a8a8a8a8a611a19565b505050505050505050565b60606000600167ffffffffffffffff8111156119ae576119ad6121ba565b5b6040519080825280602002602001820160405280156119dc5781602001602082028036833780820191505090505b50905082816000815181106119f4576119f3612d32565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b611a388473ffffffffffffffffffffffffffffffffffffffff16611de7565b15611bf8578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611a7e959493929190613540565b602060405180830381600087803b158015611a9857600080fd5b505af1925050508015611ac957506040513d601f19601f82011682018060405250810190611ac691906135af565b60015b611b6f57611ad56135e9565b806308c379a01415611b325750611aea61360b565b80611af55750611b34565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b299190612113565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613713565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed906137a5565b60405180910390fd5b505b505050505050565b611c1f8473ffffffffffffffffffffffffffffffffffffffff16611de7565b15611ddf578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611c659594939291906137c5565b602060405180830381600087803b158015611c7f57600080fd5b505af1925050508015611cb057506040513d601f19601f82011682018060405250810190611cad91906135af565b60015b611d5657611cbc6135e9565b806308c379a01415611d195750611cd161360b565b80611cdc5750611d1b565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d109190612113565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4d90613713565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd4906137a5565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611e1690612ab7565b90600052602060002090601f016020900481019282611e385760008555611e7f565b82601f10611e5157805160ff1916838001178555611e7f565b82800160010185558215611e7f579182015b82811115611e7e578251825591602001919060010190611e63565b5b509050611e8c9190611e90565b5090565b5b80821115611ea9576000816000905550600101611e91565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611eec82611ec1565b9050919050565b611efc81611ee1565b8114611f0757600080fd5b50565b600081359050611f1981611ef3565b92915050565b6000819050919050565b611f3281611f1f565b8114611f3d57600080fd5b50565b600081359050611f4f81611f29565b92915050565b60008060408385031215611f6c57611f6b611eb7565b5b6000611f7a85828601611f0a565b9250506020611f8b85828601611f40565b9150509250929050565b611f9e81611f1f565b82525050565b6000602082019050611fb96000830184611f95565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ff481611fbf565b8114611fff57600080fd5b50565b60008135905061201181611feb565b92915050565b60006020828403121561202d5761202c611eb7565b5b600061203b84828501612002565b91505092915050565b60008115159050919050565b61205981612044565b82525050565b60006020820190506120746000830184612050565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120b4578082015181840152602081019050612099565b838111156120c3576000848401525b50505050565b6000601f19601f8301169050919050565b60006120e58261207a565b6120ef8185612085565b93506120ff818560208601612096565b612108816120c9565b840191505092915050565b6000602082019050818103600083015261212d81846120da565b905092915050565b60006020828403121561214b5761214a611eb7565b5b600061215984828501611f40565b91505092915050565b60008060006060848603121561217b5761217a611eb7565b5b600061218986828701611f0a565b935050602061219a86828701611f40565b92505060406121ab86828701611f40565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6121f2826120c9565b810181811067ffffffffffffffff82111715612211576122106121ba565b5b80604052505050565b6000612224611ead565b905061223082826121e9565b919050565b600067ffffffffffffffff8211156122505761224f6121ba565b5b602082029050602081019050919050565b600080fd5b600061227961227484612235565b61221a565b9050808382526020820190506020840283018581111561229c5761229b612261565b5b835b818110156122c557806122b18882611f40565b84526020840193505060208101905061229e565b5050509392505050565b600082601f8301126122e4576122e36121b5565b5b81356122f4848260208601612266565b91505092915050565b600080fd5b600067ffffffffffffffff82111561231d5761231c6121ba565b5b612326826120c9565b9050602081019050919050565b82818337600083830152505050565b600061235561235084612302565b61221a565b905082815260208101848484011115612371576123706122fd565b5b61237c848285612333565b509392505050565b600082601f830112612399576123986121b5565b5b81356123a9848260208601612342565b91505092915050565b600080600080600060a086880312156123ce576123cd611eb7565b5b60006123dc88828901611f0a565b95505060206123ed88828901611f0a565b945050604086013567ffffffffffffffff81111561240e5761240d611ebc565b5b61241a888289016122cf565b935050606086013567ffffffffffffffff81111561243b5761243a611ebc565b5b612447888289016122cf565b925050608086013567ffffffffffffffff81111561246857612467611ebc565b5b61247488828901612384565b9150509295509295909350565b600067ffffffffffffffff82111561249c5761249b6121ba565b5b602082029050602081019050919050565b60006124c06124bb84612481565b61221a565b905080838252602082019050602084028301858111156124e3576124e2612261565b5b835b8181101561250c57806124f88882611f0a565b8452602084019350506020810190506124e5565b5050509392505050565b600082601f83011261252b5761252a6121b5565b5b813561253b8482602086016124ad565b91505092915050565b60008060006060848603121561255d5761255c611eb7565b5b600084013567ffffffffffffffff81111561257b5761257a611ebc565b5b61258786828701612516565b935050602084013567ffffffffffffffff8111156125a8576125a7611ebc565b5b6125b4868287016122cf565b925050604084013567ffffffffffffffff8111156125d5576125d4611ebc565b5b6125e1868287016122cf565b9150509250925092565b6000806040838503121561260257612601611eb7565b5b600083013567ffffffffffffffff8111156126205761261f611ebc565b5b61262c85828601612516565b925050602083013567ffffffffffffffff81111561264d5761264c611ebc565b5b612659858286016122cf565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61269881611f1f565b82525050565b60006126aa838361268f565b60208301905092915050565b6000602082019050919050565b60006126ce82612663565b6126d8818561266e565b93506126e38361267f565b8060005b838110156127145781516126fb888261269e565b9750612706836126b6565b9250506001810190506126e7565b5085935050505092915050565b6000602082019050818103600083015261273b81846126c3565b905092915050565b600067ffffffffffffffff82111561275e5761275d6121ba565b5b612767826120c9565b9050602081019050919050565b600061278761278284612743565b61221a565b9050828152602081018484840111156127a3576127a26122fd565b5b6127ae848285612333565b509392505050565b600082601f8301126127cb576127ca6121b5565b5b81356127db848260208601612774565b91505092915050565b600080604083850312156127fb576127fa611eb7565b5b600083013567ffffffffffffffff81111561281957612818611ebc565b5b612825858286016127b6565b925050602083013567ffffffffffffffff81111561284657612845611ebc565b5b612852858286016127b6565b9150509250929050565b61286581611ee1565b82525050565b6000602082019050612880600083018461285c565b92915050565b61288f81612044565b811461289a57600080fd5b50565b6000813590506128ac81612886565b92915050565b600080604083850312156128c9576128c8611eb7565b5b60006128d785828601611f0a565b92505060206128e88582860161289d565b9150509250929050565b6000806040838503121561290957612908611eb7565b5b600061291785828601611f0a565b925050602061292885828601611f0a565b9150509250929050565b600080600080600060a0868803121561294e5761294d611eb7565b5b600061295c88828901611f0a565b955050602061296d88828901611f0a565b945050604061297e88828901611f40565b935050606061298f88828901611f40565b925050608086013567ffffffffffffffff8111156129b0576129af611ebc565b5b6129bc88828901612384565b9150509295509295909350565b6000602082840312156129df576129de611eb7565b5b60006129ed84828501611f0a565b91505092915050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000612a52602a83612085565b9150612a5d826129f6565b604082019050919050565b60006020820190508181036000830152612a8181612a45565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612acf57607f821691505b60208210811415612ae357612ae2612a88565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612b1681612ab7565b612b208186612ae9565b94506001821660008114612b3b5760018114612b4c57612b7f565b60ff19831686528186019350612b7f565b612b5585612af4565b60005b83811015612b7757815481890152600182019150602081019050612b58565b838801955050505b50505092915050565b6000612b938261207a565b612b9d8185612ae9565b9350612bad818560208601612096565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612bef600583612ae9565b9150612bfa82612bb9565b600582019050919050565b6000612c118285612b09565b9150612c1d8284612b88565b9150612c2882612be2565b91508190509392505050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b6000612c90602f83612085565b9150612c9b82612c34565b604082019050919050565b60006020820190508181036000830152612cbf81612c83565b9050919050565b7f6461746120696e636f6e73697374656e74000000000000000000000000000000600082015250565b6000612cfc601183612085565b9150612d0782612cc6565b602082019050919050565b60006020820190508181036000830152612d2b81612cef565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d9b82611f1f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612dce57612dcd612d61565b5b600182019050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612e35602983612085565b9150612e4082612dd9565b604082019050919050565b60006020820190508181036000830152612e6481612e28565b9050919050565b7f626173655552492063616e6e6f7420626520656d707479000000000000000000600082015250565b6000612ea1601783612085565b9150612eac82612e6b565b602082019050919050565b60006020820190508181036000830152612ed081612e94565b9050919050565b7f636f6e7472616374206973206c6f636b65642c2063616e6e6f74206d6f64696660008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f33602183612085565b9150612f3e82612ed7565b604082019050919050565b60006020820190508181036000830152612f6281612f26565b9050919050565b6000612f758285612b09565b9150612f818284612b09565b9150612f8c82612be2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ff4602683612085565b9150612fff82612f98565b604082019050919050565b6000602082019050818103600083015261302381612fe7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061306482611f1f565b915061306f83611f1f565b92508261307f5761307e61302a565b5b828204905092915050565b600061309582611f1f565b91506130a083611f1f565b9250828210156130b3576130b2612d61565b5b828203905092915050565b60006130c982611f1f565b91506130d483611f1f565b9250826130e4576130e361302a565b5b828206905092915050565b60006130fa82611f1f565b915061310583611f1f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561313a57613139612d61565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061317b602083612085565b915061318682613145565b602082019050919050565b600060208201905081810360008301526131aa8161316e565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061320d602183612085565b9150613218826131b1565b604082019050919050565b6000602082019050818103600083015261323c81613200565b9050919050565b60006040820190506132586000830185611f95565b6132656020830184611f95565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006132c8602883612085565b91506132d38261326c565b604082019050919050565b600060208201905081810360008301526132f7816132bb565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061335a602583612085565b9150613365826132fe565b604082019050919050565b600060208201905081810360008301526133898161334d565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006133ec602a83612085565b91506133f782613390565b604082019050919050565b6000602082019050818103600083015261341b816133df565b9050919050565b6000604082019050818103600083015261343c81856126c3565b9050818103602083015261345081846126c3565b90509392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006134b5602983612085565b91506134c082613459565b604082019050919050565b600060208201905081810360008301526134e4816134a8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613512826134eb565b61351c81856134f6565b935061352c818560208601612096565b613535816120c9565b840191505092915050565b600060a082019050613555600083018861285c565b613562602083018761285c565b61356f6040830186611f95565b61357c6060830185611f95565b818103608083015261358e8184613507565b90509695505050505050565b6000815190506135a981611feb565b92915050565b6000602082840312156135c5576135c4611eb7565b5b60006135d38482850161359a565b91505092915050565b60008160e01c9050919050565b600060033d11156136085760046000803e6136056000516135dc565b90505b90565b600060443d101561361b5761369e565b613623611ead565b60043d036004823e80513d602482011167ffffffffffffffff8211171561364b57505061369e565b808201805167ffffffffffffffff811115613669575050505061369e565b80602083010160043d03850181111561368657505050505061369e565b613695826020018501866121e9565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006136fd603483612085565b9150613708826136a1565b604082019050919050565b6000602082019050818103600083015261372c816136f0565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061378f602883612085565b915061379a82613733565b604082019050919050565b600060208201905081810360008301526137be81613782565b9050919050565b600060a0820190506137da600083018861285c565b6137e7602083018761285c565b81810360408301526137f981866126c3565b9050818103606083015261380d81856126c3565b905081810360808301526138218184613507565b9050969550505050505056fea2646970667358221220d2ba2a11bfe86c5f9b72dde4cfc31cf1b104c53996c031c8d1624dc578cd60c764736f6c63430008090033

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.