ETH Price: $2,342.77 (-4.25%)

Token

 

Overview

Max Total Supply

154

Holders

118

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xc0d6d28811df8466e4bac33cfc9ed6e745900a07
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:
InterleaveArtistBase

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

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

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

/*
  _____       _            _                     
  \_   \_ __ | |_ ___ _ __| | ___  __ ___   _____ 
   / /\/ '_ \| __/ _ \ '__| |/ _ \/ _` \ \ / / _ \
/\/ /_ | | | | ||  __/ |  | |  __/ (_| |\ V /  __/
\____/ |_| |_|\__\___|_|  |_|\___|\__,_| \_/ \___|

*/

/// @title The NFT contract used to claim Interleave SuperNFT 6 artist drops
/// @notice Contract representing the 6 different artist token types claimable by burning a Interleave SuperNFT
contract InterleaveArtistBase is ERC1155, ERC1155Burnable, Ownable {
    string public baseURI;
    string public artistName;

    mapping(uint256 => bool) public validId;

    address private interleaveClaimer;

    event SetURI(string baseURI);

    event SetClaimer(address interleaveClaimer);

    constructor(
        string memory _baseURI,
        string memory _artistName,
        address _sender
    ) ERC1155(_baseURI) {
        baseURI = _baseURI;
        artistName = _artistName;
        interleaveClaimer = _sender;
        validId[0] = true;
        transferOwnership(_sender);
    }

    modifier onlyAuthorised {
        require(msg.sender == interleaveClaimer || msg.sender == owner(), "Unauthorized minter");
        _;
    }

    function mint(
        address _account,
        uint256 _id,
        uint256 _amount,
        bytes memory _data
    ) public onlyAuthorised returns (bool) {
        require(validId[_id], "Minting invalid id");
        _mint(_account, _id, _amount, _data);
        return true;
    }

    function setClaimer(address _interleaveClaimer) public onlyOwner {
        interleaveClaimer = _interleaveClaimer;
        emit SetClaimer(_interleaveClaimer);
    }

    function uri(uint256 _typeID) public view override returns (string memory) {
        require(validId[_typeID], "URI requested for invalid artist type");
        return baseURI;
    }

    function updateTokenURI(string memory _baseURI) external onlyOwner {
        require(bytes(_baseURI).length > 0, "invalid uri");
        baseURI = _baseURI;
        emit SetURI(_baseURI);
    }
}

File 2 of 11 : ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), 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);

        _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);

        _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 `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

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

        emit TransferSingle(operator, account, address(0), id, amount);
    }

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

        address operator = _msgSender();

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

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

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

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

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

    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(to).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(to).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 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC1155.sol";

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

        _burn(account, id, value);
    }

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

        _burnBatch(account, ids, values);
    }
}

File 4 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 11 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

File 6 of 11 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

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.
        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. 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

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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 9 of 11 : Context.sol
// SPDX-License-Identifier: MIT

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

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

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":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"string","name":"_artistName","type":"string"},{"internalType":"address","name":"_sender","type":"address"}],"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":false,"internalType":"address","name":"interleaveClaimer","type":"address"}],"name":"SetClaimer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"SetURI","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":[],"name":"artistName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"address","name":"_interleaveClaimer","type":"address"}],"name":"setClaimer","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"updateTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_typeID","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"validId","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200467738038062004677833981810160405281019062000037919062000492565b8262000049816200012360201b60201c565b506200006a6200005e6200013f60201b60201c565b6200014760201b60201c565b8260049080519060200190620000829291906200034d565b5081600590805190602001906200009b9291906200034d565b5080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016006600080815260200190815260200160002060006101000a81548160ff0219169083151502179055506200011a816200020d60201b60201c565b50505062000819565b80600290805190602001906200013b9291906200034d565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200021d6200013f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002436200032360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200029c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000293906200059c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156200030f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000306906200057a565b60405180910390fd5b62000320816200014760201b60201c565b50565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200035b9062000698565b90600052602060002090601f0160209004810192826200037f5760008555620003cb565b82601f106200039a57805160ff1916838001178555620003cb565b82800160010185558215620003cb579182015b82811115620003ca578251825591602001919060010190620003ad565b5b509050620003da9190620003de565b5090565b5b80821115620003f9576000816000905550600101620003df565b5090565b6000620004146200040e84620005e7565b620005be565b90508281526020810184848401111562000433576200043262000767565b5b6200044084828562000662565b509392505050565b6000815190506200045981620007ff565b92915050565b600082601f83011262000477576200047662000762565b5b815162000489848260208601620003fd565b91505092915050565b600080600060608486031215620004ae57620004ad62000771565b5b600084015167ffffffffffffffff811115620004cf57620004ce6200076c565b5b620004dd868287016200045f565b935050602084015167ffffffffffffffff8111156200050157620005006200076c565b5b6200050f868287016200045f565b9250506040620005228682870162000448565b9150509250925092565b60006200053b6026836200061d565b9150620005488262000787565b604082019050919050565b6000620005626020836200061d565b91506200056f82620007d6565b602082019050919050565b6000602082019050818103600083015262000595816200052c565b9050919050565b60006020820190508181036000830152620005b78162000553565b9050919050565b6000620005ca620005dd565b9050620005d88282620006ce565b919050565b6000604051905090565b600067ffffffffffffffff82111562000605576200060462000733565b5b620006108262000776565b9050602081019050919050565b600082825260208201905092915050565b60006200063b8262000642565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200068257808201518184015260208101905062000665565b8381111562000692576000848401525b50505050565b60006002820490506001821680620006b157607f821691505b60208210811415620006c857620006c762000704565b5b50919050565b620006d98262000776565b810181811067ffffffffffffffff82111715620006fb57620006fa62000733565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200080a816200062e565b81146200081657600080fd5b50565b613e4e80620008296000396000f3fe608060405234801561001057600080fd5b50600436106101205760003560e01c806373106f57116100ad578063cdfb583211610071578063cdfb583214610319578063e985e9c514610335578063f242432a14610365578063f2fde38b14610381578063f5298aca1461039d57610120565b806373106f5714610263578063731133e9146102935780638da5cb5b146102c357806398cd6153146102e1578063a22cb465146102fd57610120565b80634e1273f4116100f45780634e1273f4146101d15780635b2f515b146102015780636b20c4541461021f5780636c0360eb1461023b578063715018a61461025957610120565b8062fdd58e1461012557806301ffc9a7146101555780630e89341c146101855780632eb2c2d6146101b5575b600080fd5b61013f600480360381019061013a9190612992565b6103b9565b60405161014c9190613380565b60405180910390f35b61016f600480360381019061016a9190612b20565b610482565b60405161017c91906130e3565b60405180910390f35b61019f600480360381019061019a9190612bc3565b610564565b6040516101ac91906130fe565b60405180910390f35b6101cf60048036038101906101ca9190612761565b610658565b005b6101eb60048036038101906101e69190612aa8565b6106f9565b6040516101f8919061308a565b60405180910390f35b610209610812565b60405161021691906130fe565b60405180910390f35b610239600480360381019061023491906128c7565b6108a0565b005b61024361093d565b60405161025091906130fe565b60405180910390f35b6102616109cb565b005b61027d60048036038101906102789190612bc3565b610a53565b60405161028a91906130e3565b60405180910390f35b6102ad60048036038101906102a89190612a25565b610a73565b6040516102ba91906130e3565b60405180910390f35b6102cb610bba565b6040516102d89190612fad565b60405180910390f35b6102fb60048036038101906102f69190612b7a565b610be4565b005b61031760048036038101906103129190612952565b610cf5565b005b610333600480360381019061032e91906126f4565b610e76565b005b61034f600480360381019061034a9190612721565b610f6d565b60405161035c91906130e3565b60405180910390f35b61037f600480360381019061037a9190612830565b611001565b005b61039b600480360381019061039691906126f4565b6110a2565b005b6103b760048036038101906103b291906129d2565b61119a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561042a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161042190613160565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061054d57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061055d575061055c82611237565b5b9050919050565b60606006600083815260200190815260200160002060009054906101000a900460ff166105c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bd90613220565b60405180910390fd5b600480546105d390613620565b80601f01602080910402602001604051908101604052809291908181526020018280546105ff90613620565b801561064c5780601f106106215761010080835404028352916020019161064c565b820191906000526020600020905b81548152906001019060200180831161062f57829003601f168201915b50505050509050919050565b6106606112a1565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106a657506106a5856106a06112a1565b610f6d565b5b6106e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dc90613260565b60405180910390fd5b6106f285858585856112a9565b5050505050565b6060815183511461073f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073690613320565b60405180910390fd5b6000835167ffffffffffffffff81111561075c5761075b613759565b5b60405190808252806020026020018201604052801561078a5781602001602082028036833780820191505090505b50905060005b8451811015610807576107d78582815181106107af576107ae61372a565b5b60200260200101518583815181106107ca576107c961372a565b5b60200260200101516103b9565b8282815181106107ea576107e961372a565b5b6020026020010181815250508061080090613683565b9050610790565b508091505092915050565b6005805461081f90613620565b80601f016020809104026020016040519081016040528092919081815260200182805461084b90613620565b80156108985780601f1061086d57610100808354040283529160200191610898565b820191906000526020600020905b81548152906001019060200180831161087b57829003601f168201915b505050505081565b6108a86112a1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806108ee57506108ed836108e86112a1565b610f6d565b5b61092d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610924906131e0565b60405180910390fd5b6109388383836115bd565b505050565b6004805461094a90613620565b80601f016020809104026020016040519081016040528092919081815260200182805461097690613620565b80156109c35780601f10610998576101008083540402835291602001916109c3565b820191906000526020600020905b8154815290600101906020018083116109a657829003601f168201915b505050505081565b6109d36112a1565b73ffffffffffffffffffffffffffffffffffffffff166109f1610bba565b73ffffffffffffffffffffffffffffffffffffffff1614610a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3e906132e0565b60405180910390fd5b610a51600061186e565b565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610b035750610ad4610bba565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990613200565b60405180910390fd5b6006600085815260200190815260200160002060009054906101000a900460ff16610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9990613180565b60405180910390fd5b610bae85858585611934565b60019050949350505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610bec6112a1565b73ffffffffffffffffffffffffffffffffffffffff16610c0a610bba565b73ffffffffffffffffffffffffffffffffffffffff1614610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c57906132e0565b60405180910390fd5b6000815111610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90613280565b60405180910390fd5b8060049080519060200190610cba9291906123cc565b507f562bf0237fa5139edc73ec903039c3a552e19ae62cc8292da62afeea43024b0a81604051610cea91906130fe565b60405180910390a150565b8173ffffffffffffffffffffffffffffffffffffffff16610d146112a1565b73ffffffffffffffffffffffffffffffffffffffff161415610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290613300565b60405180910390fd5b8060016000610d786112a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e256112a1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e6a91906130e3565b60405180910390a35050565b610e7e6112a1565b73ffffffffffffffffffffffffffffffffffffffff16610e9c610bba565b73ffffffffffffffffffffffffffffffffffffffff1614610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee9906132e0565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fdfe91dcad2adcb1ecd18d2e830b469081211d6743c1e2dfa893836431fb7879481604051610f629190612fad565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110096112a1565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061104f575061104e856110496112a1565b610f6d565b5b61108e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611085906131e0565b60405180910390fd5b61109b8585858585611aca565b5050505050565b6110aa6112a1565b73ffffffffffffffffffffffffffffffffffffffff166110c8610bba565b73ffffffffffffffffffffffffffffffffffffffff161461111e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611115906132e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561118e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611185906131a0565b60405180910390fd5b6111978161186e565b50565b6111a26112a1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806111e857506111e7836111e26112a1565b610f6d565b5b611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e906131e0565b60405180910390fd5b611232838383611d4c565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b81518351146112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e490613340565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561135d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135490613240565b60405180910390fd5b60006113676112a1565b9050611377818787878787611f69565b60005b84518110156115285760008582815181106113985761139761372a565b5b6020026020010151905060008583815181106113b7576113b661372a565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f906132c0565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150d9190613514565b925050819055505050508061152190613683565b905061137a565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161159f9291906130ac565b60405180910390a46115b5818787878787611f71565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561162d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611624906132a0565b60405180910390fd5b8051825114611671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166890613340565b60405180910390fd5b600061167b6112a1565b905061169b81856000868660405180602001604052806000815250611f69565b60005b83518110156117e85760008482815181106116bc576116bb61372a565b5b6020026020010151905060008483815181106116db576116da61372a565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561177c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611773906131c0565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806117e090613683565b91505061169e565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516118609291906130ac565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199b90613360565b60405180910390fd5b60006119ae6112a1565b90506119cf816000876119c088612158565b6119c988612158565b87611f69565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a2e9190613514565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611aac92919061339b565b60405180910390a4611ac3816000878787876121d2565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190613240565b60405180910390fd5b6000611b446112a1565b9050611b64818787611b5588612158565b611b5e88612158565b87611f69565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf2906132c0565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb09190613514565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611d2d92919061339b565b60405180910390a4611d438288888888886121d2565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db3906132a0565b60405180910390fd5b6000611dc66112a1565b9050611df681856000611dd887612158565b611de187612158565b60405180602001604052806000815250611f69565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e84906131c0565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611f5a92919061339b565b60405180910390a45050505050565b505050505050565b611f908473ffffffffffffffffffffffffffffffffffffffff166123b9565b15612150578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611fd6959493929190612fc8565b602060405180830381600087803b158015611ff057600080fd5b505af192505050801561202157506040513d601f19601f8201168201806040525081019061201e9190612b4d565b60015b6120c75761202d613788565b806308c379a0141561208a5750612042613d26565b8061204d575061208c565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208191906130fe565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be90613120565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461214e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214590613140565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561217757612176613759565b5b6040519080825280602002602001820160405280156121a55781602001602082028036833780820191505090505b50905082816000815181106121bd576121bc61372a565b5b60200260200101818152505080915050919050565b6121f18473ffffffffffffffffffffffffffffffffffffffff166123b9565b156123b1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612237959493929190613030565b602060405180830381600087803b15801561225157600080fd5b505af192505050801561228257506040513d601f19601f8201168201806040525081019061227f9190612b4d565b60015b6123285761228e613788565b806308c379a014156122eb57506122a3613d26565b806122ae57506122ed565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e291906130fe565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f90613120565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146123af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a690613140565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b8280546123d890613620565b90600052602060002090601f0160209004810192826123fa5760008555612441565b82601f1061241357805160ff1916838001178555612441565b82800160010185558215612441579182015b82811115612440578251825591602001919060010190612425565b5b50905061244e9190612452565b5090565b5b8082111561246b576000816000905550600101612453565b5090565b600061248261247d846133e9565b6133c4565b905080838252602082019050828560208602820111156124a5576124a46137af565b5b60005b858110156124d557816124bb88826125d3565b8452602084019350602083019250506001810190506124a8565b5050509392505050565b60006124f26124ed84613415565b6133c4565b90508083825260208201905082856020860282011115612515576125146137af565b5b60005b85811015612545578161252b88826126df565b845260208401935060208301925050600181019050612518565b5050509392505050565b600061256261255d84613441565b6133c4565b90508281526020810184848401111561257e5761257d6137b4565b5b6125898482856135de565b509392505050565b60006125a461259f84613472565b6133c4565b9050828152602081018484840111156125c0576125bf6137b4565b5b6125cb8482856135de565b509392505050565b6000813590506125e281613dbc565b92915050565b600082601f8301126125fd576125fc6137aa565b5b813561260d84826020860161246f565b91505092915050565b600082601f83011261262b5761262a6137aa565b5b813561263b8482602086016124df565b91505092915050565b60008135905061265381613dd3565b92915050565b60008135905061266881613dea565b92915050565b60008151905061267d81613dea565b92915050565b600082601f830112612698576126976137aa565b5b81356126a884826020860161254f565b91505092915050565b600082601f8301126126c6576126c56137aa565b5b81356126d6848260208601612591565b91505092915050565b6000813590506126ee81613e01565b92915050565b60006020828403121561270a576127096137be565b5b6000612718848285016125d3565b91505092915050565b60008060408385031215612738576127376137be565b5b6000612746858286016125d3565b9250506020612757858286016125d3565b9150509250929050565b600080600080600060a0868803121561277d5761277c6137be565b5b600061278b888289016125d3565b955050602061279c888289016125d3565b945050604086013567ffffffffffffffff8111156127bd576127bc6137b9565b5b6127c988828901612616565b935050606086013567ffffffffffffffff8111156127ea576127e96137b9565b5b6127f688828901612616565b925050608086013567ffffffffffffffff811115612817576128166137b9565b5b61282388828901612683565b9150509295509295909350565b600080600080600060a0868803121561284c5761284b6137be565b5b600061285a888289016125d3565b955050602061286b888289016125d3565b945050604061287c888289016126df565b935050606061288d888289016126df565b925050608086013567ffffffffffffffff8111156128ae576128ad6137b9565b5b6128ba88828901612683565b9150509295509295909350565b6000806000606084860312156128e0576128df6137be565b5b60006128ee868287016125d3565b935050602084013567ffffffffffffffff81111561290f5761290e6137b9565b5b61291b86828701612616565b925050604084013567ffffffffffffffff81111561293c5761293b6137b9565b5b61294886828701612616565b9150509250925092565b60008060408385031215612969576129686137be565b5b6000612977858286016125d3565b925050602061298885828601612644565b9150509250929050565b600080604083850312156129a9576129a86137be565b5b60006129b7858286016125d3565b92505060206129c8858286016126df565b9150509250929050565b6000806000606084860312156129eb576129ea6137be565b5b60006129f9868287016125d3565b9350506020612a0a868287016126df565b9250506040612a1b868287016126df565b9150509250925092565b60008060008060808587031215612a3f57612a3e6137be565b5b6000612a4d878288016125d3565b9450506020612a5e878288016126df565b9350506040612a6f878288016126df565b925050606085013567ffffffffffffffff811115612a9057612a8f6137b9565b5b612a9c87828801612683565b91505092959194509250565b60008060408385031215612abf57612abe6137be565b5b600083013567ffffffffffffffff811115612add57612adc6137b9565b5b612ae9858286016125e8565b925050602083013567ffffffffffffffff811115612b0a57612b096137b9565b5b612b1685828601612616565b9150509250929050565b600060208284031215612b3657612b356137be565b5b6000612b4484828501612659565b91505092915050565b600060208284031215612b6357612b626137be565b5b6000612b718482850161266e565b91505092915050565b600060208284031215612b9057612b8f6137be565b5b600082013567ffffffffffffffff811115612bae57612bad6137b9565b5b612bba848285016126b1565b91505092915050565b600060208284031215612bd957612bd86137be565b5b6000612be7848285016126df565b91505092915050565b6000612bfc8383612f8f565b60208301905092915050565b612c118161356a565b82525050565b6000612c22826134b3565b612c2c81856134e1565b9350612c37836134a3565b8060005b83811015612c68578151612c4f8882612bf0565b9750612c5a836134d4565b925050600181019050612c3b565b5085935050505092915050565b612c7e8161357c565b82525050565b6000612c8f826134be565b612c9981856134f2565b9350612ca98185602086016135ed565b612cb2816137c3565b840191505092915050565b6000612cc8826134c9565b612cd28185613503565b9350612ce28185602086016135ed565b612ceb816137c3565b840191505092915050565b6000612d03603483613503565b9150612d0e826137e1565b604082019050919050565b6000612d26602883613503565b9150612d3182613830565b604082019050919050565b6000612d49602b83613503565b9150612d548261387f565b604082019050919050565b6000612d6c601283613503565b9150612d77826138ce565b602082019050919050565b6000612d8f602683613503565b9150612d9a826138f7565b604082019050919050565b6000612db2602483613503565b9150612dbd82613946565b604082019050919050565b6000612dd5602983613503565b9150612de082613995565b604082019050919050565b6000612df8601383613503565b9150612e03826139e4565b602082019050919050565b6000612e1b602583613503565b9150612e2682613a0d565b604082019050919050565b6000612e3e602583613503565b9150612e4982613a5c565b604082019050919050565b6000612e61603283613503565b9150612e6c82613aab565b604082019050919050565b6000612e84600b83613503565b9150612e8f82613afa565b602082019050919050565b6000612ea7602383613503565b9150612eb282613b23565b604082019050919050565b6000612eca602a83613503565b9150612ed582613b72565b604082019050919050565b6000612eed602083613503565b9150612ef882613bc1565b602082019050919050565b6000612f10602983613503565b9150612f1b82613bea565b604082019050919050565b6000612f33602983613503565b9150612f3e82613c39565b604082019050919050565b6000612f56602883613503565b9150612f6182613c88565b604082019050919050565b6000612f79602183613503565b9150612f8482613cd7565b604082019050919050565b612f98816135d4565b82525050565b612fa7816135d4565b82525050565b6000602082019050612fc26000830184612c08565b92915050565b600060a082019050612fdd6000830188612c08565b612fea6020830187612c08565b8181036040830152612ffc8186612c17565b905081810360608301526130108185612c17565b905081810360808301526130248184612c84565b90509695505050505050565b600060a0820190506130456000830188612c08565b6130526020830187612c08565b61305f6040830186612f9e565b61306c6060830185612f9e565b818103608083015261307e8184612c84565b90509695505050505050565b600060208201905081810360008301526130a48184612c17565b905092915050565b600060408201905081810360008301526130c68185612c17565b905081810360208301526130da8184612c17565b90509392505050565b60006020820190506130f86000830184612c75565b92915050565b600060208201905081810360008301526131188184612cbd565b905092915050565b6000602082019050818103600083015261313981612cf6565b9050919050565b6000602082019050818103600083015261315981612d19565b9050919050565b6000602082019050818103600083015261317981612d3c565b9050919050565b6000602082019050818103600083015261319981612d5f565b9050919050565b600060208201905081810360008301526131b981612d82565b9050919050565b600060208201905081810360008301526131d981612da5565b9050919050565b600060208201905081810360008301526131f981612dc8565b9050919050565b6000602082019050818103600083015261321981612deb565b9050919050565b6000602082019050818103600083015261323981612e0e565b9050919050565b6000602082019050818103600083015261325981612e31565b9050919050565b6000602082019050818103600083015261327981612e54565b9050919050565b6000602082019050818103600083015261329981612e77565b9050919050565b600060208201905081810360008301526132b981612e9a565b9050919050565b600060208201905081810360008301526132d981612ebd565b9050919050565b600060208201905081810360008301526132f981612ee0565b9050919050565b6000602082019050818103600083015261331981612f03565b9050919050565b6000602082019050818103600083015261333981612f26565b9050919050565b6000602082019050818103600083015261335981612f49565b9050919050565b6000602082019050818103600083015261337981612f6c565b9050919050565b60006020820190506133956000830184612f9e565b92915050565b60006040820190506133b06000830185612f9e565b6133bd6020830184612f9e565b9392505050565b60006133ce6133df565b90506133da8282613652565b919050565b6000604051905090565b600067ffffffffffffffff82111561340457613403613759565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134305761342f613759565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561345c5761345b613759565b5b613465826137c3565b9050602081019050919050565b600067ffffffffffffffff82111561348d5761348c613759565b5b613496826137c3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061351f826135d4565b915061352a836135d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561355f5761355e6136cc565b5b828201905092915050565b6000613575826135b4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561360b5780820151818401526020810190506135f0565b8381111561361a576000848401525b50505050565b6000600282049050600182168061363857607f821691505b6020821081141561364c5761364b6136fb565b5b50919050565b61365b826137c3565b810181811067ffffffffffffffff8211171561367a57613679613759565b5b80604052505050565b600061368e826135d4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136c1576136c06136cc565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156137a75760046000803e6137a46000516137d4565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720696e76616c69642069640000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f556e617574686f72697a6564206d696e74657200000000000000000000000000600082015250565b7f5552492072657175657374656420666f7220696e76616c69642061727469737460008201527f2074797065000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f696e76616c696420757269000000000000000000000000000000000000000000600082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613d3657613db9565b613d3e6133df565b60043d036004823e80513d602482011167ffffffffffffffff82111715613d66575050613db9565b808201805167ffffffffffffffff811115613d845750505050613db9565b80602083010160043d038501811115613da1575050505050613db9565b613db082602001850186613652565b82955050505050505b90565b613dc58161356a565b8114613dd057600080fd5b50565b613ddc8161357c565b8114613de757600080fd5b50565b613df381613588565b8114613dfe57600080fd5b50565b613e0a816135d4565b8114613e1557600080fd5b5056fea264697066735822122088aa2af50526a27c6154bd625349ccd276d7966e62d8da6d5b7ed6900cab068864736f6c63430008060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000205036893e1fe4f620626623592a6c4ab6436d26000000000000000000000000000000000000000000000000000000000000004668747470733a2f2f617277656176652e6e65742f537277355f536f7441734764446449527a326f65705f694746544149416e4d666f4535774d5244742d71302f302e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000842616b6141727473000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101205760003560e01c806373106f57116100ad578063cdfb583211610071578063cdfb583214610319578063e985e9c514610335578063f242432a14610365578063f2fde38b14610381578063f5298aca1461039d57610120565b806373106f5714610263578063731133e9146102935780638da5cb5b146102c357806398cd6153146102e1578063a22cb465146102fd57610120565b80634e1273f4116100f45780634e1273f4146101d15780635b2f515b146102015780636b20c4541461021f5780636c0360eb1461023b578063715018a61461025957610120565b8062fdd58e1461012557806301ffc9a7146101555780630e89341c146101855780632eb2c2d6146101b5575b600080fd5b61013f600480360381019061013a9190612992565b6103b9565b60405161014c9190613380565b60405180910390f35b61016f600480360381019061016a9190612b20565b610482565b60405161017c91906130e3565b60405180910390f35b61019f600480360381019061019a9190612bc3565b610564565b6040516101ac91906130fe565b60405180910390f35b6101cf60048036038101906101ca9190612761565b610658565b005b6101eb60048036038101906101e69190612aa8565b6106f9565b6040516101f8919061308a565b60405180910390f35b610209610812565b60405161021691906130fe565b60405180910390f35b610239600480360381019061023491906128c7565b6108a0565b005b61024361093d565b60405161025091906130fe565b60405180910390f35b6102616109cb565b005b61027d60048036038101906102789190612bc3565b610a53565b60405161028a91906130e3565b60405180910390f35b6102ad60048036038101906102a89190612a25565b610a73565b6040516102ba91906130e3565b60405180910390f35b6102cb610bba565b6040516102d89190612fad565b60405180910390f35b6102fb60048036038101906102f69190612b7a565b610be4565b005b61031760048036038101906103129190612952565b610cf5565b005b610333600480360381019061032e91906126f4565b610e76565b005b61034f600480360381019061034a9190612721565b610f6d565b60405161035c91906130e3565b60405180910390f35b61037f600480360381019061037a9190612830565b611001565b005b61039b600480360381019061039691906126f4565b6110a2565b005b6103b760048036038101906103b291906129d2565b61119a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561042a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161042190613160565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061054d57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061055d575061055c82611237565b5b9050919050565b60606006600083815260200190815260200160002060009054906101000a900460ff166105c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bd90613220565b60405180910390fd5b600480546105d390613620565b80601f01602080910402602001604051908101604052809291908181526020018280546105ff90613620565b801561064c5780601f106106215761010080835404028352916020019161064c565b820191906000526020600020905b81548152906001019060200180831161062f57829003601f168201915b50505050509050919050565b6106606112a1565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106a657506106a5856106a06112a1565b610f6d565b5b6106e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dc90613260565b60405180910390fd5b6106f285858585856112a9565b5050505050565b6060815183511461073f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073690613320565b60405180910390fd5b6000835167ffffffffffffffff81111561075c5761075b613759565b5b60405190808252806020026020018201604052801561078a5781602001602082028036833780820191505090505b50905060005b8451811015610807576107d78582815181106107af576107ae61372a565b5b60200260200101518583815181106107ca576107c961372a565b5b60200260200101516103b9565b8282815181106107ea576107e961372a565b5b6020026020010181815250508061080090613683565b9050610790565b508091505092915050565b6005805461081f90613620565b80601f016020809104026020016040519081016040528092919081815260200182805461084b90613620565b80156108985780601f1061086d57610100808354040283529160200191610898565b820191906000526020600020905b81548152906001019060200180831161087b57829003601f168201915b505050505081565b6108a86112a1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806108ee57506108ed836108e86112a1565b610f6d565b5b61092d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610924906131e0565b60405180910390fd5b6109388383836115bd565b505050565b6004805461094a90613620565b80601f016020809104026020016040519081016040528092919081815260200182805461097690613620565b80156109c35780601f10610998576101008083540402835291602001916109c3565b820191906000526020600020905b8154815290600101906020018083116109a657829003601f168201915b505050505081565b6109d36112a1565b73ffffffffffffffffffffffffffffffffffffffff166109f1610bba565b73ffffffffffffffffffffffffffffffffffffffff1614610a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3e906132e0565b60405180910390fd5b610a51600061186e565b565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610b035750610ad4610bba565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990613200565b60405180910390fd5b6006600085815260200190815260200160002060009054906101000a900460ff16610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9990613180565b60405180910390fd5b610bae85858585611934565b60019050949350505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610bec6112a1565b73ffffffffffffffffffffffffffffffffffffffff16610c0a610bba565b73ffffffffffffffffffffffffffffffffffffffff1614610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c57906132e0565b60405180910390fd5b6000815111610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90613280565b60405180910390fd5b8060049080519060200190610cba9291906123cc565b507f562bf0237fa5139edc73ec903039c3a552e19ae62cc8292da62afeea43024b0a81604051610cea91906130fe565b60405180910390a150565b8173ffffffffffffffffffffffffffffffffffffffff16610d146112a1565b73ffffffffffffffffffffffffffffffffffffffff161415610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290613300565b60405180910390fd5b8060016000610d786112a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e256112a1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e6a91906130e3565b60405180910390a35050565b610e7e6112a1565b73ffffffffffffffffffffffffffffffffffffffff16610e9c610bba565b73ffffffffffffffffffffffffffffffffffffffff1614610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee9906132e0565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fdfe91dcad2adcb1ecd18d2e830b469081211d6743c1e2dfa893836431fb7879481604051610f629190612fad565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110096112a1565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061104f575061104e856110496112a1565b610f6d565b5b61108e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611085906131e0565b60405180910390fd5b61109b8585858585611aca565b5050505050565b6110aa6112a1565b73ffffffffffffffffffffffffffffffffffffffff166110c8610bba565b73ffffffffffffffffffffffffffffffffffffffff161461111e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611115906132e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561118e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611185906131a0565b60405180910390fd5b6111978161186e565b50565b6111a26112a1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806111e857506111e7836111e26112a1565b610f6d565b5b611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e906131e0565b60405180910390fd5b611232838383611d4c565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b81518351146112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e490613340565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561135d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135490613240565b60405180910390fd5b60006113676112a1565b9050611377818787878787611f69565b60005b84518110156115285760008582815181106113985761139761372a565b5b6020026020010151905060008583815181106113b7576113b661372a565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f906132c0565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150d9190613514565b925050819055505050508061152190613683565b905061137a565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161159f9291906130ac565b60405180910390a46115b5818787878787611f71565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561162d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611624906132a0565b60405180910390fd5b8051825114611671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166890613340565b60405180910390fd5b600061167b6112a1565b905061169b81856000868660405180602001604052806000815250611f69565b60005b83518110156117e85760008482815181106116bc576116bb61372a565b5b6020026020010151905060008483815181106116db576116da61372a565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561177c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611773906131c0565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806117e090613683565b91505061169e565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516118609291906130ac565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199b90613360565b60405180910390fd5b60006119ae6112a1565b90506119cf816000876119c088612158565b6119c988612158565b87611f69565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a2e9190613514565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611aac92919061339b565b60405180910390a4611ac3816000878787876121d2565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190613240565b60405180910390fd5b6000611b446112a1565b9050611b64818787611b5588612158565b611b5e88612158565b87611f69565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf2906132c0565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb09190613514565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611d2d92919061339b565b60405180910390a4611d438288888888886121d2565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db3906132a0565b60405180910390fd5b6000611dc66112a1565b9050611df681856000611dd887612158565b611de187612158565b60405180602001604052806000815250611f69565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e84906131c0565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611f5a92919061339b565b60405180910390a45050505050565b505050505050565b611f908473ffffffffffffffffffffffffffffffffffffffff166123b9565b15612150578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611fd6959493929190612fc8565b602060405180830381600087803b158015611ff057600080fd5b505af192505050801561202157506040513d601f19601f8201168201806040525081019061201e9190612b4d565b60015b6120c75761202d613788565b806308c379a0141561208a5750612042613d26565b8061204d575061208c565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208191906130fe565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be90613120565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461214e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214590613140565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561217757612176613759565b5b6040519080825280602002602001820160405280156121a55781602001602082028036833780820191505090505b50905082816000815181106121bd576121bc61372a565b5b60200260200101818152505080915050919050565b6121f18473ffffffffffffffffffffffffffffffffffffffff166123b9565b156123b1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612237959493929190613030565b602060405180830381600087803b15801561225157600080fd5b505af192505050801561228257506040513d601f19601f8201168201806040525081019061227f9190612b4d565b60015b6123285761228e613788565b806308c379a014156122eb57506122a3613d26565b806122ae57506122ed565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e291906130fe565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f90613120565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146123af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a690613140565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b8280546123d890613620565b90600052602060002090601f0160209004810192826123fa5760008555612441565b82601f1061241357805160ff1916838001178555612441565b82800160010185558215612441579182015b82811115612440578251825591602001919060010190612425565b5b50905061244e9190612452565b5090565b5b8082111561246b576000816000905550600101612453565b5090565b600061248261247d846133e9565b6133c4565b905080838252602082019050828560208602820111156124a5576124a46137af565b5b60005b858110156124d557816124bb88826125d3565b8452602084019350602083019250506001810190506124a8565b5050509392505050565b60006124f26124ed84613415565b6133c4565b90508083825260208201905082856020860282011115612515576125146137af565b5b60005b85811015612545578161252b88826126df565b845260208401935060208301925050600181019050612518565b5050509392505050565b600061256261255d84613441565b6133c4565b90508281526020810184848401111561257e5761257d6137b4565b5b6125898482856135de565b509392505050565b60006125a461259f84613472565b6133c4565b9050828152602081018484840111156125c0576125bf6137b4565b5b6125cb8482856135de565b509392505050565b6000813590506125e281613dbc565b92915050565b600082601f8301126125fd576125fc6137aa565b5b813561260d84826020860161246f565b91505092915050565b600082601f83011261262b5761262a6137aa565b5b813561263b8482602086016124df565b91505092915050565b60008135905061265381613dd3565b92915050565b60008135905061266881613dea565b92915050565b60008151905061267d81613dea565b92915050565b600082601f830112612698576126976137aa565b5b81356126a884826020860161254f565b91505092915050565b600082601f8301126126c6576126c56137aa565b5b81356126d6848260208601612591565b91505092915050565b6000813590506126ee81613e01565b92915050565b60006020828403121561270a576127096137be565b5b6000612718848285016125d3565b91505092915050565b60008060408385031215612738576127376137be565b5b6000612746858286016125d3565b9250506020612757858286016125d3565b9150509250929050565b600080600080600060a0868803121561277d5761277c6137be565b5b600061278b888289016125d3565b955050602061279c888289016125d3565b945050604086013567ffffffffffffffff8111156127bd576127bc6137b9565b5b6127c988828901612616565b935050606086013567ffffffffffffffff8111156127ea576127e96137b9565b5b6127f688828901612616565b925050608086013567ffffffffffffffff811115612817576128166137b9565b5b61282388828901612683565b9150509295509295909350565b600080600080600060a0868803121561284c5761284b6137be565b5b600061285a888289016125d3565b955050602061286b888289016125d3565b945050604061287c888289016126df565b935050606061288d888289016126df565b925050608086013567ffffffffffffffff8111156128ae576128ad6137b9565b5b6128ba88828901612683565b9150509295509295909350565b6000806000606084860312156128e0576128df6137be565b5b60006128ee868287016125d3565b935050602084013567ffffffffffffffff81111561290f5761290e6137b9565b5b61291b86828701612616565b925050604084013567ffffffffffffffff81111561293c5761293b6137b9565b5b61294886828701612616565b9150509250925092565b60008060408385031215612969576129686137be565b5b6000612977858286016125d3565b925050602061298885828601612644565b9150509250929050565b600080604083850312156129a9576129a86137be565b5b60006129b7858286016125d3565b92505060206129c8858286016126df565b9150509250929050565b6000806000606084860312156129eb576129ea6137be565b5b60006129f9868287016125d3565b9350506020612a0a868287016126df565b9250506040612a1b868287016126df565b9150509250925092565b60008060008060808587031215612a3f57612a3e6137be565b5b6000612a4d878288016125d3565b9450506020612a5e878288016126df565b9350506040612a6f878288016126df565b925050606085013567ffffffffffffffff811115612a9057612a8f6137b9565b5b612a9c87828801612683565b91505092959194509250565b60008060408385031215612abf57612abe6137be565b5b600083013567ffffffffffffffff811115612add57612adc6137b9565b5b612ae9858286016125e8565b925050602083013567ffffffffffffffff811115612b0a57612b096137b9565b5b612b1685828601612616565b9150509250929050565b600060208284031215612b3657612b356137be565b5b6000612b4484828501612659565b91505092915050565b600060208284031215612b6357612b626137be565b5b6000612b718482850161266e565b91505092915050565b600060208284031215612b9057612b8f6137be565b5b600082013567ffffffffffffffff811115612bae57612bad6137b9565b5b612bba848285016126b1565b91505092915050565b600060208284031215612bd957612bd86137be565b5b6000612be7848285016126df565b91505092915050565b6000612bfc8383612f8f565b60208301905092915050565b612c118161356a565b82525050565b6000612c22826134b3565b612c2c81856134e1565b9350612c37836134a3565b8060005b83811015612c68578151612c4f8882612bf0565b9750612c5a836134d4565b925050600181019050612c3b565b5085935050505092915050565b612c7e8161357c565b82525050565b6000612c8f826134be565b612c9981856134f2565b9350612ca98185602086016135ed565b612cb2816137c3565b840191505092915050565b6000612cc8826134c9565b612cd28185613503565b9350612ce28185602086016135ed565b612ceb816137c3565b840191505092915050565b6000612d03603483613503565b9150612d0e826137e1565b604082019050919050565b6000612d26602883613503565b9150612d3182613830565b604082019050919050565b6000612d49602b83613503565b9150612d548261387f565b604082019050919050565b6000612d6c601283613503565b9150612d77826138ce565b602082019050919050565b6000612d8f602683613503565b9150612d9a826138f7565b604082019050919050565b6000612db2602483613503565b9150612dbd82613946565b604082019050919050565b6000612dd5602983613503565b9150612de082613995565b604082019050919050565b6000612df8601383613503565b9150612e03826139e4565b602082019050919050565b6000612e1b602583613503565b9150612e2682613a0d565b604082019050919050565b6000612e3e602583613503565b9150612e4982613a5c565b604082019050919050565b6000612e61603283613503565b9150612e6c82613aab565b604082019050919050565b6000612e84600b83613503565b9150612e8f82613afa565b602082019050919050565b6000612ea7602383613503565b9150612eb282613b23565b604082019050919050565b6000612eca602a83613503565b9150612ed582613b72565b604082019050919050565b6000612eed602083613503565b9150612ef882613bc1565b602082019050919050565b6000612f10602983613503565b9150612f1b82613bea565b604082019050919050565b6000612f33602983613503565b9150612f3e82613c39565b604082019050919050565b6000612f56602883613503565b9150612f6182613c88565b604082019050919050565b6000612f79602183613503565b9150612f8482613cd7565b604082019050919050565b612f98816135d4565b82525050565b612fa7816135d4565b82525050565b6000602082019050612fc26000830184612c08565b92915050565b600060a082019050612fdd6000830188612c08565b612fea6020830187612c08565b8181036040830152612ffc8186612c17565b905081810360608301526130108185612c17565b905081810360808301526130248184612c84565b90509695505050505050565b600060a0820190506130456000830188612c08565b6130526020830187612c08565b61305f6040830186612f9e565b61306c6060830185612f9e565b818103608083015261307e8184612c84565b90509695505050505050565b600060208201905081810360008301526130a48184612c17565b905092915050565b600060408201905081810360008301526130c68185612c17565b905081810360208301526130da8184612c17565b90509392505050565b60006020820190506130f86000830184612c75565b92915050565b600060208201905081810360008301526131188184612cbd565b905092915050565b6000602082019050818103600083015261313981612cf6565b9050919050565b6000602082019050818103600083015261315981612d19565b9050919050565b6000602082019050818103600083015261317981612d3c565b9050919050565b6000602082019050818103600083015261319981612d5f565b9050919050565b600060208201905081810360008301526131b981612d82565b9050919050565b600060208201905081810360008301526131d981612da5565b9050919050565b600060208201905081810360008301526131f981612dc8565b9050919050565b6000602082019050818103600083015261321981612deb565b9050919050565b6000602082019050818103600083015261323981612e0e565b9050919050565b6000602082019050818103600083015261325981612e31565b9050919050565b6000602082019050818103600083015261327981612e54565b9050919050565b6000602082019050818103600083015261329981612e77565b9050919050565b600060208201905081810360008301526132b981612e9a565b9050919050565b600060208201905081810360008301526132d981612ebd565b9050919050565b600060208201905081810360008301526132f981612ee0565b9050919050565b6000602082019050818103600083015261331981612f03565b9050919050565b6000602082019050818103600083015261333981612f26565b9050919050565b6000602082019050818103600083015261335981612f49565b9050919050565b6000602082019050818103600083015261337981612f6c565b9050919050565b60006020820190506133956000830184612f9e565b92915050565b60006040820190506133b06000830185612f9e565b6133bd6020830184612f9e565b9392505050565b60006133ce6133df565b90506133da8282613652565b919050565b6000604051905090565b600067ffffffffffffffff82111561340457613403613759565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134305761342f613759565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561345c5761345b613759565b5b613465826137c3565b9050602081019050919050565b600067ffffffffffffffff82111561348d5761348c613759565b5b613496826137c3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061351f826135d4565b915061352a836135d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561355f5761355e6136cc565b5b828201905092915050565b6000613575826135b4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561360b5780820151818401526020810190506135f0565b8381111561361a576000848401525b50505050565b6000600282049050600182168061363857607f821691505b6020821081141561364c5761364b6136fb565b5b50919050565b61365b826137c3565b810181811067ffffffffffffffff8211171561367a57613679613759565b5b80604052505050565b600061368e826135d4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136c1576136c06136cc565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156137a75760046000803e6137a46000516137d4565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720696e76616c69642069640000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f556e617574686f72697a6564206d696e74657200000000000000000000000000600082015250565b7f5552492072657175657374656420666f7220696e76616c69642061727469737460008201527f2074797065000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f696e76616c696420757269000000000000000000000000000000000000000000600082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613d3657613db9565b613d3e6133df565b60043d036004823e80513d602482011167ffffffffffffffff82111715613d66575050613db9565b808201805167ffffffffffffffff811115613d845750505050613db9565b80602083010160043d038501811115613da1575050505050613db9565b613db082602001850186613652565b82955050505050505b90565b613dc58161356a565b8114613dd057600080fd5b50565b613ddc8161357c565b8114613de757600080fd5b50565b613df381613588565b8114613dfe57600080fd5b50565b613e0a816135d4565b8114613e1557600080fd5b5056fea264697066735822122088aa2af50526a27c6154bd625349ccd276d7966e62d8da6d5b7ed6900cab068864736f6c63430008060033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000205036893e1fe4f620626623592a6c4ab6436d26000000000000000000000000000000000000000000000000000000000000004668747470733a2f2f617277656176652e6e65742f537277355f536f7441734764446449527a326f65705f694746544149416e4d666f4535774d5244742d71302f302e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000842616b6141727473000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): https://arweave.net/Srw5_SotAsGdDdIRz2oep_iGFTAIAnMfoE5wMRDt-q0/0.json
Arg [1] : _artistName (string): BakaArts
Arg [2] : _sender (address): 0x205036893e1FE4f620626623592A6c4ab6436d26

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000205036893e1fe4f620626623592a6c4ab6436d26
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000046
Arg [4] : 68747470733a2f2f617277656176652e6e65742f537277355f536f7441734764
Arg [5] : 446449527a326f65705f694746544149416e4d666f4535774d5244742d71302f
Arg [6] : 302e6a736f6e0000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [8] : 42616b6141727473000000000000000000000000000000000000000000000000


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.