ETH Price: $3,288.35 (-0.72%)

Token

 

Overview

Max Total Supply

26

Holders

26

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x6fb25fdd52f0375a7d0a1b248eedf84653dbaa57
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:
OmnimorphsCollabs

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

contract OmnimorphsCollabs is ERC1155, Ownable {
    using ECDSA for bytes32;

    string public message = "The Omnimorphs are here.";

    mapping(uint => string) private _tokenURIs;

    mapping(uint => uint) private _supply;

    mapping(uint => uint) private _maxSupply;

    mapping(uint => bytes[]) private _signatures;

    constructor(string memory initialURI) ERC1155(initialURI) {}

    // ONLY OWNER

    function setSignatures(uint id, bytes[] memory signatures) external onlyOwner {
        _signatures[id] = signatures;
    }

    function setMaxSupply(uint id, uint newMaxSupply) external onlyOwner {
        require(_maxSupply[id] == 0, "Cannot reset max supply once it was set");

        _maxSupply[id] = newMaxSupply;
    }

    function setURI(uint id, string memory newURI) external onlyOwner {
        _setURI(id, newURI);
    }

    function mint(address to, uint id, uint amount) external onlyOwner {
        require(_supply[id] + amount <= _maxSupply[id], "Max supply exceeded");

        _mintTokens(to, id, amount);
    }

    function mintForList(address[] calldata addresses, uint id, uint amount) external onlyOwner {
        require(_supply[id] + (addresses.length * amount) <= _maxSupply[id], "Max supply exceeded");

        for (uint i = 0; i < addresses.length; i++) {
            _mintTokens(addresses[i], id, amount);
        }
    }

    // INTERNAL

    function _setURI(uint id, string memory newURI) private {
        _tokenURIs[id] = newURI;
    }

    function _mintTokens(address to, uint id, uint amount) private {
        _supply[id] += amount;
        _mint(to, id, amount, "0x");
    }

    // PUBLIC

    function uri(uint id) public view override returns(string memory) {
        return _tokenURIs[id];
    }

    function getMaxSupply(uint id) public view returns(uint) {
        return _maxSupply[id];
    }

    function getSupply(uint id) public view returns(uint) {
        return _supply[id];
    }

    function getSignerByIndex(uint id, uint index) public view returns(address) {
        return keccak256(
            abi.encodePacked(
                "\x19Ethereum Signed Message:\n32",
                keccak256(abi.encodePacked(address(this), id, message))
            )
        ).recover(_signatures[id][index]);
    }

    function getNumberOfSigners(uint id) public view returns(uint) {
        return _signatures[id].length;
    }
}

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 : 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 4 of 11 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return recover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return recover(hash, r, vs);
        } else {
            revert("ECDSA: invalid signature length");
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`, `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        require(
            uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0,
            "ECDSA: invalid signature 's' value"
        );
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initialURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getNumberOfSigners","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getSignerByIndex","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"message","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintForList","outputs":[],"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":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes[]","name":"signatures","type":"bytes[]"}],"name":"setSignatures","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"newURI","type":"string"}],"name":"setURI","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":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526040518060400160405280601881526020017f546865204f6d6e696d6f727068732061726520686572652e00000000000000008152506004908051906020019062000051929190620001a9565b503480156200005f57600080fd5b5060405162004647380380620046478339818101604052810190620000859190620002cb565b806200009781620000bf60201b60201c565b50620000b8620000ac620000db60201b60201c565b620000e360201b60201c565b5062000441565b8060029080519060200190620000d7929190620001a9565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b790620003ad565b90600052602060002090601f016020900481019282620001db576000855562000227565b82601f10620001f657805160ff191683800117855562000227565b8280016001018555821562000227579182015b828111156200022657825182559160200191906001019062000209565b5b5090506200023691906200023a565b5090565b5b80821115620002555760008160009055506001016200023b565b5090565b6000620002706200026a8462000344565b62000310565b9050828152602081018484840111156200028957600080fd5b6200029684828562000377565b509392505050565b600082601f830112620002b057600080fd5b8151620002c284826020860162000259565b91505092915050565b600060208284031215620002de57600080fd5b600082015167ffffffffffffffff811115620002f957600080fd5b62000307848285016200029e565b91505092915050565b6000604051905081810181811067ffffffffffffffff821117156200033a576200033962000412565b5b8060405250919050565b600067ffffffffffffffff82111562000362576200036162000412565b5b601f19601f8301169050602081019050919050565b60005b83811015620003975780820151818401526020810190506200037a565b83811115620003a7576000848401525b50505050565b60006002820490506001821680620003c657607f821691505b60208210811415620003dd57620003dc620003e3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6141f680620004516000396000f3fe608060405234801561001057600080fd5b50600436106101365760003560e01c8063715018a6116100b8578063abcf69181161007c578063abcf691814610347578063e21f37ce14610377578063e985e9c514610395578063f242432a146103c5578063f2fde38b146103e1578063f77ee79d146103fd57610136565b8063715018a6146102b757806375d1611e146102c1578063862440e2146102f15780638da5cb5b1461030d578063a22cb4651461032b57610136565b80632eb2c2d6116100ff5780632eb2c2d61461020357806337da577c1461021f5780634e1273f41461023b5780635e495d741461026b5780635fbc62971461029b57610136565b8062fdd58e1461013b57806301ffc9a71461016b5780630e89341c1461019b578063156e29f6146101cb57806316e90735146101e7575b600080fd5b61015560048036038101906101509190612b63565b61042d565b6040516101629190613bdc565b60405180910390f35b61018560048036038101906101809190612cc6565b6104f6565b60405161019291906138fa565b60405180910390f35b6101b560048036038101906101b09190612d18565b6105d8565b6040516101c2919061395a565b60405180910390f35b6101e560048036038101906101e09190612b9f565b61067d565b005b61020160048036038101906101fc9190612d41565b61077d565b005b61021d600480360381019061021891906129d9565b610825565b005b61023960048036038101906102349190612de9565b6108c6565b005b61025560048036038101906102509190612c5a565b6109b4565b60405161026291906138a1565b60405180910390f35b61028560048036038101906102809190612d18565b610b65565b6040516102929190613bdc565b60405180910390f35b6102b560048036038101906102b09190612bee565b610b82565b005b6102bf610d00565b005b6102db60048036038101906102d69190612d18565b610d88565b6040516102e89190613bdc565b60405180910390f35b61030b60048036038101906103069190612d95565b610da8565b005b610315610e32565b60405161032291906137c4565b60405180910390f35b61034560048036038101906103409190612b27565b610e5c565b005b610361600480360381019061035c9190612de9565b610fdd565b60405161036e91906137c4565b60405180910390f35b61037f611128565b60405161038c919061395a565b60405180910390f35b6103af60048036038101906103aa919061299d565b6111b6565b6040516103bc91906138fa565b60405180910390f35b6103df60048036038101906103da9190612a98565b61124a565b005b6103fb60048036038101906103f69190612974565b6112eb565b005b61041760048036038101906104129190612d18565b6113e3565b6040516104249190613bdc565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561049e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049590613a1c565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c157507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105d157506105d082611400565b5b9050919050565b60606005600083815260200190815260200160002080546105f890613f43565b80601f016020809104026020016040519081016040528092919081815260200182805461062490613f43565b80156106715780601f1061064657610100808354040283529160200191610671565b820191906000526020600020905b81548152906001019060200180831161065457829003601f168201915b50505050509050919050565b61068561146a565b73ffffffffffffffffffffffffffffffffffffffff166106a3610e32565b73ffffffffffffffffffffffffffffffffffffffff16146106f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f090613b3c565b60405180910390fd5b600760008381526020019081526020016000205481600660008581526020019081526020016000205461072c9190613dc6565b111561076d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610764906139dc565b60405180910390fd5b610778838383611472565b505050565b61078561146a565b73ffffffffffffffffffffffffffffffffffffffff166107a3610e32565b73ffffffffffffffffffffffffffffffffffffffff16146107f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f090613b3c565b60405180910390fd5b80600860008481526020019081526020016000209080519060200190610820929190612451565b505050565b61082d61146a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061087357506108728561086d61146a565b6111b6565b5b6108b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a990613abc565b60405180910390fd5b6108bf85858585856114e2565b5050505050565b6108ce61146a565b73ffffffffffffffffffffffffffffffffffffffff166108ec610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093990613b3c565b60405180910390fd5b6000600760008481526020019081526020016000205414610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f90613adc565b60405180910390fd5b8060076000848152602001908152602001600020819055505050565b606081518351146109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190613b7c565b60405180910390fd5b6000835167ffffffffffffffff811115610a3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610a6b5781602001602082028036833780820191505090505b50905060005b8451811015610b5a57610b04858281518110610ab6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610af7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161042d565b828281518110610b3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610b5390613f75565b9050610a71565b508091505092915050565b600060076000838152602001908152602001600020549050919050565b610b8a61146a565b73ffffffffffffffffffffffffffffffffffffffff16610ba8610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf590613b3c565b60405180910390fd5b60076000838152602001908152602001600020548185859050610c219190613e1c565b6006600085815260200190815260200160002054610c3f9190613dc6565b1115610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c77906139dc565b60405180910390fd5b60005b84849050811015610cf957610ce6858583818110610cca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610cdf9190612974565b8484611472565b8080610cf190613f75565b915050610c83565b5050505050565b610d0861146a565b73ffffffffffffffffffffffffffffffffffffffff16610d26610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390613b3c565b60405180910390fd5b610d866000611842565b565b600060086000838152602001908152602001600020805490509050919050565b610db061146a565b73ffffffffffffffffffffffffffffffffffffffff16610dce610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90613b3c565b60405180910390fd5b610e2e8282611908565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff16610e7b61146a565b73ffffffffffffffffffffffffffffffffffffffff161415610ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec990613b5c565b60405180910390fd5b8060016000610edf61146a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f8c61146a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fd191906138fa565b60405180910390a35050565b600061112060086000858152602001908152602001600020838154811061102d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001805461104290613f43565b80601f016020809104026020016040519081016040528092919081815260200182805461106e90613f43565b80156110bb5780601f10611090576101008083540402835291602001916110bb565b820191906000526020600020905b81548152906001019060200180831161109e57829003601f168201915b5050505050308560046040516020016110d693929190613765565b604051602081830303815290604052805190602001206040516020016110fc919061379e565b6040516020818303038152906040528051906020012061193490919063ffffffff16565b905092915050565b6004805461113590613f43565b80601f016020809104026020016040519081016040528092919081815260200182805461116190613f43565b80156111ae5780601f10611183576101008083540402835291602001916111ae565b820191906000526020600020905b81548152906001019060200180831161119157829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61125261146a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061129857506112978561129261146a565b6111b6565b5b6112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90613a5c565b60405180910390fd5b6112e485858585856119e3565b5050505050565b6112f361146a565b73ffffffffffffffffffffffffffffffffffffffff16611311610e32565b73ffffffffffffffffffffffffffffffffffffffff1614611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90613b3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90613a3c565b60405180910390fd5b6113e081611842565b50565b600060066000838152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806006600084815260200190815260200160002060008282546114959190613dc6565b925050819055506114dd8383836040518060400160405280600281526020017f3078000000000000000000000000000000000000000000000000000000000000815250611c65565b505050565b8151835114611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d90613b9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158d90613a9c565b60405180910390fd5b60006115a061146a565b90506115b0818787878787611dfb565b60005b84518110156117ad5760008582815181106115f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061163c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490613b1c565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117929190613dc6565b92505081905550505050806117a690613f75565b90506115b3565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516118249291906138c3565b60405180910390a461183a818787878787611e03565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060056000848152602001908152602001600020908051906020019061192f9291906124b1565b505050565b60006041825114156119735760008060006020850151925060408501519150606085015160001a905061196986828585611fd3565b93505050506119dd565b6040825114156119a257600080602084015191506040840151905061199985838361215e565b925050506119dd565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d4906139fc565b60405180910390fd5b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4a90613a9c565b60405180910390fd5b6000611a5d61146a565b9050611a7d818787611a6e886121a8565b611a77886121a8565b87611dfb565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b90613b1c565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bc99190613dc6565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611c46929190613bf7565b60405180910390a4611c5c82888888888861226e565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90613bbc565b60405180910390fd5b6000611cdf61146a565b9050611d0081600087611cf1886121a8565b611cfa886121a8565b87611dfb565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d5f9190613dc6565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611ddd929190613bf7565b60405180910390a4611df48160008787878761226e565b5050505050565b505050505050565b611e228473ffffffffffffffffffffffffffffffffffffffff1661243e565b15611fcb578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611e689594939291906137df565b602060405180830381600087803b158015611e8257600080fd5b505af1925050508015611eb357506040513d601f19601f82011682018060405250810190611eb09190612cef565b60015b611f4257611ebf6140ae565b80611eca5750611f07565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe919061395a565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f399061399c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc0906139bc565b60405180910390fd5b505b505050505050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c111561203b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203290613a7c565b60405180910390fd5b601b8460ff1614806120505750601c8460ff16145b61208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690613afc565b60405180910390fd5b6000600186868686604051600081526020016040526040516120b49493929190613915565b6020604051602081039080840390855afa1580156120d6573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121499061397c565b60405180910390fd5b80915050949350505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84169150601b8460ff1c01905061219d86828785611fd3565b925050509392505050565b60606000600167ffffffffffffffff8111156121ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561221b5781602001602082028036833780820191505090505b5090508281600081518110612259577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b61228d8473ffffffffffffffffffffffffffffffffffffffff1661243e565b15612436578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016122d3959493929190613847565b602060405180830381600087803b1580156122ed57600080fd5b505af192505050801561231e57506040513d601f19601f8201168201806040525081019061231b9190612cef565b60015b6123ad5761232a6140ae565b806123355750612372565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612369919061395a565b60405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a49061399c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242b906139bc565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b8280548282559060005260206000209081019282156124a0579160200282015b8281111561249f57825182908051906020019061248f929190612537565b5091602001919060010190612471565b5b5090506124ad91906125bd565b5090565b8280546124bd90613f43565b90600052602060002090601f0160209004810192826124df5760008555612526565b82601f106124f857805160ff1916838001178555612526565b82800160010185558215612526579182015b8281111561252557825182559160200191906001019061250a565b5b50905061253391906125e1565b5090565b82805461254390613f43565b90600052602060002090601f01602090048101928261256557600085556125ac565b82601f1061257e57805160ff19168380011785556125ac565b828001600101855582156125ac579182015b828111156125ab578251825591602001919060010190612590565b5b5090506125b991906125e1565b5090565b5b808211156125dd57600081816125d491906125fe565b506001016125be565b5090565b5b808211156125fa5760008160009055506001016125e2565b5090565b50805461260a90613f43565b6000825580601f1061261c575061263b565b601f01602090049060005260206000209081019061263a91906125e1565b5b50565b600061265161264c84613c51565b613c20565b9050808382526020820190508285602086028201111561267057600080fd5b60005b858110156126a0578161268688826127ef565b845260208401935060208301925050600181019050612673565b5050509392505050565b60006126bd6126b884613c7d565b613c20565b9050808382526020820190508260005b858110156126fd57813585016126e3888261290b565b8452602084019350602083019250506001810190506126cd565b5050509392505050565b600061271a61271584613ca9565b613c20565b9050808382526020820190508285602086028201111561273957600080fd5b60005b85811015612769578161274f888261295f565b84526020840193506020830192505060018101905061273c565b5050509392505050565b600061278661278184613cd5565b613c20565b90508281526020810184848401111561279e57600080fd5b6127a9848285613f01565b509392505050565b60006127c46127bf84613d05565b613c20565b9050828152602081018484840111156127dc57600080fd5b6127e7848285613f01565b509392505050565b6000813590506127fe81614164565b92915050565b60008083601f84011261281657600080fd5b8235905067ffffffffffffffff81111561282f57600080fd5b60208301915083602082028301111561284757600080fd5b9250929050565b600082601f83011261285f57600080fd5b813561286f84826020860161263e565b91505092915050565b600082601f83011261288957600080fd5b81356128998482602086016126aa565b91505092915050565b600082601f8301126128b357600080fd5b81356128c3848260208601612707565b91505092915050565b6000813590506128db8161417b565b92915050565b6000813590506128f081614192565b92915050565b60008151905061290581614192565b92915050565b600082601f83011261291c57600080fd5b813561292c848260208601612773565b91505092915050565b600082601f83011261294657600080fd5b81356129568482602086016127b1565b91505092915050565b60008135905061296e816141a9565b92915050565b60006020828403121561298657600080fd5b6000612994848285016127ef565b91505092915050565b600080604083850312156129b057600080fd5b60006129be858286016127ef565b92505060206129cf858286016127ef565b9150509250929050565b600080600080600060a086880312156129f157600080fd5b60006129ff888289016127ef565b9550506020612a10888289016127ef565b945050604086013567ffffffffffffffff811115612a2d57600080fd5b612a39888289016128a2565b935050606086013567ffffffffffffffff811115612a5657600080fd5b612a62888289016128a2565b925050608086013567ffffffffffffffff811115612a7f57600080fd5b612a8b8882890161290b565b9150509295509295909350565b600080600080600060a08688031215612ab057600080fd5b6000612abe888289016127ef565b9550506020612acf888289016127ef565b9450506040612ae08882890161295f565b9350506060612af18882890161295f565b925050608086013567ffffffffffffffff811115612b0e57600080fd5b612b1a8882890161290b565b9150509295509295909350565b60008060408385031215612b3a57600080fd5b6000612b48858286016127ef565b9250506020612b59858286016128cc565b9150509250929050565b60008060408385031215612b7657600080fd5b6000612b84858286016127ef565b9250506020612b958582860161295f565b9150509250929050565b600080600060608486031215612bb457600080fd5b6000612bc2868287016127ef565b9350506020612bd38682870161295f565b9250506040612be48682870161295f565b9150509250925092565b60008060008060608587031215612c0457600080fd5b600085013567ffffffffffffffff811115612c1e57600080fd5b612c2a87828801612804565b94509450506020612c3d8782880161295f565b9250506040612c4e8782880161295f565b91505092959194509250565b60008060408385031215612c6d57600080fd5b600083013567ffffffffffffffff811115612c8757600080fd5b612c938582860161284e565b925050602083013567ffffffffffffffff811115612cb057600080fd5b612cbc858286016128a2565b9150509250929050565b600060208284031215612cd857600080fd5b6000612ce6848285016128e1565b91505092915050565b600060208284031215612d0157600080fd5b6000612d0f848285016128f6565b91505092915050565b600060208284031215612d2a57600080fd5b6000612d388482850161295f565b91505092915050565b60008060408385031215612d5457600080fd5b6000612d628582860161295f565b925050602083013567ffffffffffffffff811115612d7f57600080fd5b612d8b85828601612878565b9150509250929050565b60008060408385031215612da857600080fd5b6000612db68582860161295f565b925050602083013567ffffffffffffffff811115612dd357600080fd5b612ddf85828601612935565b9150509250929050565b60008060408385031215612dfc57600080fd5b6000612e0a8582860161295f565b9250506020612e1b8582860161295f565b9150509250929050565b6000612e318383613721565b60208301905092915050565b612e4681613e76565b82525050565b612e5d612e5882613e76565b613fbe565b82525050565b6000612e6e82613d5a565b612e788185613d88565b9350612e8383613d35565b8060005b83811015612eb4578151612e9b8882612e25565b9750612ea683613d7b565b925050600181019050612e87565b5085935050505092915050565b612eca81613e88565b82525050565b612ed981613e94565b82525050565b612ef0612eeb82613e94565b613fd0565b82525050565b6000612f0182613d65565b612f0b8185613d99565b9350612f1b818560208601613f10565b612f2481614083565b840191505092915050565b6000612f3a82613d70565b612f448185613daa565b9350612f54818560208601613f10565b612f5d81614083565b840191505092915050565b60008154612f7581613f43565b612f7f8186613dbb565b94506001821660008114612f9a5760018114612fab57612fde565b60ff19831686528186019350612fde565b612fb485613d45565b60005b83811015612fd657815481890152600182019150602081019050612fb7565b838801955050505b50505092915050565b6000612ff4601883613daa565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b6000613034603483613daa565b91507f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008301527f526563656976657220696d706c656d656e7465720000000000000000000000006020830152604082019050919050565b600061309a602883613daa565b91507f455243313135353a204552433131353552656365697665722072656a6563746560008301527f6420746f6b656e730000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613100601383613daa565b91507f4d617820737570706c79206578636565646564000000000000000000000000006000830152602082019050919050565b6000613140601f83613daa565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b6000613180601c83613dbb565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b60006131c0602b83613daa565b91507f455243313135353a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000613226602683613daa565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061328c602983613daa565b91507f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008301527f20617070726f76656400000000000000000000000000000000000000000000006020830152604082019050919050565b60006132f2602283613daa565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613358602583613daa565b91507f455243313135353a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133be603283613daa565b91507f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000613424602783613daa565b91507f43616e6e6f74207265736574206d617820737570706c79206f6e63652069742060008301527f77617320736574000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061348a602283613daa565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134f0602a83613daa565b91507f455243313135353a20696e73756666696369656e742062616c616e636520666f60008301527f72207472616e73666572000000000000000000000000000000000000000000006020830152604082019050919050565b6000613556602083613daa565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613596602983613daa565b91507f455243313135353a2073657474696e6720617070726f76616c2073746174757360008301527f20666f722073656c6600000000000000000000000000000000000000000000006020830152604082019050919050565b60006135fc602983613daa565b91507f455243313135353a206163636f756e747320616e6420696473206c656e67746860008301527f206d69736d6174636800000000000000000000000000000000000000000000006020830152604082019050919050565b6000613662602883613daa565b91507f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008301527f6d69736d617463680000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136c8602183613daa565b91507f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61372a81613eea565b82525050565b61373981613eea565b82525050565b61375061374b82613eea565b613fec565b82525050565b61375f81613ef4565b82525050565b60006137718286612e4c565b601482019150613781828561373f565b6020820191506137918284612f68565b9150819050949350505050565b60006137a982613173565b91506137b58284612edf565b60208201915081905092915050565b60006020820190506137d96000830184612e3d565b92915050565b600060a0820190506137f46000830188612e3d565b6138016020830187612e3d565b81810360408301526138138186612e63565b905081810360608301526138278185612e63565b9050818103608083015261383b8184612ef6565b90509695505050505050565b600060a08201905061385c6000830188612e3d565b6138696020830187612e3d565b6138766040830186613730565b6138836060830185613730565b81810360808301526138958184612ef6565b90509695505050505050565b600060208201905081810360008301526138bb8184612e63565b905092915050565b600060408201905081810360008301526138dd8185612e63565b905081810360208301526138f18184612e63565b90509392505050565b600060208201905061390f6000830184612ec1565b92915050565b600060808201905061392a6000830187612ed0565b6139376020830186613756565b6139446040830185612ed0565b6139516060830184612ed0565b95945050505050565b600060208201905081810360008301526139748184612f2f565b905092915050565b6000602082019050818103600083015261399581612fe7565b9050919050565b600060208201905081810360008301526139b581613027565b9050919050565b600060208201905081810360008301526139d58161308d565b9050919050565b600060208201905081810360008301526139f5816130f3565b9050919050565b60006020820190508181036000830152613a1581613133565b9050919050565b60006020820190508181036000830152613a35816131b3565b9050919050565b60006020820190508181036000830152613a5581613219565b9050919050565b60006020820190508181036000830152613a758161327f565b9050919050565b60006020820190508181036000830152613a95816132e5565b9050919050565b60006020820190508181036000830152613ab58161334b565b9050919050565b60006020820190508181036000830152613ad5816133b1565b9050919050565b60006020820190508181036000830152613af581613417565b9050919050565b60006020820190508181036000830152613b158161347d565b9050919050565b60006020820190508181036000830152613b35816134e3565b9050919050565b60006020820190508181036000830152613b5581613549565b9050919050565b60006020820190508181036000830152613b7581613589565b9050919050565b60006020820190508181036000830152613b95816135ef565b9050919050565b60006020820190508181036000830152613bb581613655565b9050919050565b60006020820190508181036000830152613bd5816136bb565b9050919050565b6000602082019050613bf16000830184613730565b92915050565b6000604082019050613c0c6000830185613730565b613c196020830184613730565b9392505050565b6000604051905081810181811067ffffffffffffffff82111715613c4757613c46614054565b5b8060405250919050565b600067ffffffffffffffff821115613c6c57613c6b614054565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c9857613c97614054565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613cc457613cc3614054565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613cf057613cef614054565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613d2057613d1f614054565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dd182613eea565b9150613ddc83613eea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e1157613e10613ff6565b5b828201905092915050565b6000613e2782613eea565b9150613e3283613eea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e6b57613e6a613ff6565b5b828202905092915050565b6000613e8182613eca565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613f2e578082015181840152602081019050613f13565b83811115613f3d576000848401525b50505050565b60006002820490506001821680613f5b57607f821691505b60208210811415613f6f57613f6e614025565b5b50919050565b6000613f8082613eea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fb357613fb2613ff6565b5b600182019050919050565b6000613fc982613fda565b9050919050565b6000819050919050565b6000613fe582614094565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b600060443d10156140be57614161565b60046000803e6140cf6000516140a1565b6308c379a081146140e05750614161565b60405160043d036004823e80513d602482011167ffffffffffffffff8211171561410c57505050614161565b808201805167ffffffffffffffff81111561412b575050505050614161565b8060208301013d850181111561414657505050505050614161565b61414f82614083565b60208401016040528296505050505050505b90565b61416d81613e76565b811461417857600080fd5b50565b61418481613e88565b811461418f57600080fd5b50565b61419b81613e9e565b81146141a657600080fd5b50565b6141b281613eea565b81146141bd57600080fd5b5056fea264697066735822122057efd74099eb1df20a25d42ebb9517ad0dfb0d80b336e17eafacf1a13e9edb9364736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101365760003560e01c8063715018a6116100b8578063abcf69181161007c578063abcf691814610347578063e21f37ce14610377578063e985e9c514610395578063f242432a146103c5578063f2fde38b146103e1578063f77ee79d146103fd57610136565b8063715018a6146102b757806375d1611e146102c1578063862440e2146102f15780638da5cb5b1461030d578063a22cb4651461032b57610136565b80632eb2c2d6116100ff5780632eb2c2d61461020357806337da577c1461021f5780634e1273f41461023b5780635e495d741461026b5780635fbc62971461029b57610136565b8062fdd58e1461013b57806301ffc9a71461016b5780630e89341c1461019b578063156e29f6146101cb57806316e90735146101e7575b600080fd5b61015560048036038101906101509190612b63565b61042d565b6040516101629190613bdc565b60405180910390f35b61018560048036038101906101809190612cc6565b6104f6565b60405161019291906138fa565b60405180910390f35b6101b560048036038101906101b09190612d18565b6105d8565b6040516101c2919061395a565b60405180910390f35b6101e560048036038101906101e09190612b9f565b61067d565b005b61020160048036038101906101fc9190612d41565b61077d565b005b61021d600480360381019061021891906129d9565b610825565b005b61023960048036038101906102349190612de9565b6108c6565b005b61025560048036038101906102509190612c5a565b6109b4565b60405161026291906138a1565b60405180910390f35b61028560048036038101906102809190612d18565b610b65565b6040516102929190613bdc565b60405180910390f35b6102b560048036038101906102b09190612bee565b610b82565b005b6102bf610d00565b005b6102db60048036038101906102d69190612d18565b610d88565b6040516102e89190613bdc565b60405180910390f35b61030b60048036038101906103069190612d95565b610da8565b005b610315610e32565b60405161032291906137c4565b60405180910390f35b61034560048036038101906103409190612b27565b610e5c565b005b610361600480360381019061035c9190612de9565b610fdd565b60405161036e91906137c4565b60405180910390f35b61037f611128565b60405161038c919061395a565b60405180910390f35b6103af60048036038101906103aa919061299d565b6111b6565b6040516103bc91906138fa565b60405180910390f35b6103df60048036038101906103da9190612a98565b61124a565b005b6103fb60048036038101906103f69190612974565b6112eb565b005b61041760048036038101906104129190612d18565b6113e3565b6040516104249190613bdc565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561049e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049590613a1c565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c157507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105d157506105d082611400565b5b9050919050565b60606005600083815260200190815260200160002080546105f890613f43565b80601f016020809104026020016040519081016040528092919081815260200182805461062490613f43565b80156106715780601f1061064657610100808354040283529160200191610671565b820191906000526020600020905b81548152906001019060200180831161065457829003601f168201915b50505050509050919050565b61068561146a565b73ffffffffffffffffffffffffffffffffffffffff166106a3610e32565b73ffffffffffffffffffffffffffffffffffffffff16146106f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f090613b3c565b60405180910390fd5b600760008381526020019081526020016000205481600660008581526020019081526020016000205461072c9190613dc6565b111561076d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610764906139dc565b60405180910390fd5b610778838383611472565b505050565b61078561146a565b73ffffffffffffffffffffffffffffffffffffffff166107a3610e32565b73ffffffffffffffffffffffffffffffffffffffff16146107f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f090613b3c565b60405180910390fd5b80600860008481526020019081526020016000209080519060200190610820929190612451565b505050565b61082d61146a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061087357506108728561086d61146a565b6111b6565b5b6108b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a990613abc565b60405180910390fd5b6108bf85858585856114e2565b5050505050565b6108ce61146a565b73ffffffffffffffffffffffffffffffffffffffff166108ec610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093990613b3c565b60405180910390fd5b6000600760008481526020019081526020016000205414610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f90613adc565b60405180910390fd5b8060076000848152602001908152602001600020819055505050565b606081518351146109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190613b7c565b60405180910390fd5b6000835167ffffffffffffffff811115610a3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610a6b5781602001602082028036833780820191505090505b50905060005b8451811015610b5a57610b04858281518110610ab6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610af7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161042d565b828281518110610b3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610b5390613f75565b9050610a71565b508091505092915050565b600060076000838152602001908152602001600020549050919050565b610b8a61146a565b73ffffffffffffffffffffffffffffffffffffffff16610ba8610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf590613b3c565b60405180910390fd5b60076000838152602001908152602001600020548185859050610c219190613e1c565b6006600085815260200190815260200160002054610c3f9190613dc6565b1115610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c77906139dc565b60405180910390fd5b60005b84849050811015610cf957610ce6858583818110610cca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610cdf9190612974565b8484611472565b8080610cf190613f75565b915050610c83565b5050505050565b610d0861146a565b73ffffffffffffffffffffffffffffffffffffffff16610d26610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390613b3c565b60405180910390fd5b610d866000611842565b565b600060086000838152602001908152602001600020805490509050919050565b610db061146a565b73ffffffffffffffffffffffffffffffffffffffff16610dce610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90613b3c565b60405180910390fd5b610e2e8282611908565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff16610e7b61146a565b73ffffffffffffffffffffffffffffffffffffffff161415610ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec990613b5c565b60405180910390fd5b8060016000610edf61146a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f8c61146a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fd191906138fa565b60405180910390a35050565b600061112060086000858152602001908152602001600020838154811061102d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001805461104290613f43565b80601f016020809104026020016040519081016040528092919081815260200182805461106e90613f43565b80156110bb5780601f10611090576101008083540402835291602001916110bb565b820191906000526020600020905b81548152906001019060200180831161109e57829003601f168201915b5050505050308560046040516020016110d693929190613765565b604051602081830303815290604052805190602001206040516020016110fc919061379e565b6040516020818303038152906040528051906020012061193490919063ffffffff16565b905092915050565b6004805461113590613f43565b80601f016020809104026020016040519081016040528092919081815260200182805461116190613f43565b80156111ae5780601f10611183576101008083540402835291602001916111ae565b820191906000526020600020905b81548152906001019060200180831161119157829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61125261146a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061129857506112978561129261146a565b6111b6565b5b6112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90613a5c565b60405180910390fd5b6112e485858585856119e3565b5050505050565b6112f361146a565b73ffffffffffffffffffffffffffffffffffffffff16611311610e32565b73ffffffffffffffffffffffffffffffffffffffff1614611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90613b3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90613a3c565b60405180910390fd5b6113e081611842565b50565b600060066000838152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806006600084815260200190815260200160002060008282546114959190613dc6565b925050819055506114dd8383836040518060400160405280600281526020017f3078000000000000000000000000000000000000000000000000000000000000815250611c65565b505050565b8151835114611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d90613b9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158d90613a9c565b60405180910390fd5b60006115a061146a565b90506115b0818787878787611dfb565b60005b84518110156117ad5760008582815181106115f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061163c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490613b1c565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117929190613dc6565b92505081905550505050806117a690613f75565b90506115b3565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516118249291906138c3565b60405180910390a461183a818787878787611e03565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060056000848152602001908152602001600020908051906020019061192f9291906124b1565b505050565b60006041825114156119735760008060006020850151925060408501519150606085015160001a905061196986828585611fd3565b93505050506119dd565b6040825114156119a257600080602084015191506040840151905061199985838361215e565b925050506119dd565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d4906139fc565b60405180910390fd5b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4a90613a9c565b60405180910390fd5b6000611a5d61146a565b9050611a7d818787611a6e886121a8565b611a77886121a8565b87611dfb565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b90613b1c565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bc99190613dc6565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611c46929190613bf7565b60405180910390a4611c5c82888888888861226e565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90613bbc565b60405180910390fd5b6000611cdf61146a565b9050611d0081600087611cf1886121a8565b611cfa886121a8565b87611dfb565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d5f9190613dc6565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611ddd929190613bf7565b60405180910390a4611df48160008787878761226e565b5050505050565b505050505050565b611e228473ffffffffffffffffffffffffffffffffffffffff1661243e565b15611fcb578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611e689594939291906137df565b602060405180830381600087803b158015611e8257600080fd5b505af1925050508015611eb357506040513d601f19601f82011682018060405250810190611eb09190612cef565b60015b611f4257611ebf6140ae565b80611eca5750611f07565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe919061395a565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f399061399c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc0906139bc565b60405180910390fd5b505b505050505050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c111561203b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203290613a7c565b60405180910390fd5b601b8460ff1614806120505750601c8460ff16145b61208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690613afc565b60405180910390fd5b6000600186868686604051600081526020016040526040516120b49493929190613915565b6020604051602081039080840390855afa1580156120d6573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121499061397c565b60405180910390fd5b80915050949350505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84169150601b8460ff1c01905061219d86828785611fd3565b925050509392505050565b60606000600167ffffffffffffffff8111156121ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561221b5781602001602082028036833780820191505090505b5090508281600081518110612259577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b61228d8473ffffffffffffffffffffffffffffffffffffffff1661243e565b15612436578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016122d3959493929190613847565b602060405180830381600087803b1580156122ed57600080fd5b505af192505050801561231e57506040513d601f19601f8201168201806040525081019061231b9190612cef565b60015b6123ad5761232a6140ae565b806123355750612372565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612369919061395a565b60405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a49061399c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242b906139bc565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b8280548282559060005260206000209081019282156124a0579160200282015b8281111561249f57825182908051906020019061248f929190612537565b5091602001919060010190612471565b5b5090506124ad91906125bd565b5090565b8280546124bd90613f43565b90600052602060002090601f0160209004810192826124df5760008555612526565b82601f106124f857805160ff1916838001178555612526565b82800160010185558215612526579182015b8281111561252557825182559160200191906001019061250a565b5b50905061253391906125e1565b5090565b82805461254390613f43565b90600052602060002090601f01602090048101928261256557600085556125ac565b82601f1061257e57805160ff19168380011785556125ac565b828001600101855582156125ac579182015b828111156125ab578251825591602001919060010190612590565b5b5090506125b991906125e1565b5090565b5b808211156125dd57600081816125d491906125fe565b506001016125be565b5090565b5b808211156125fa5760008160009055506001016125e2565b5090565b50805461260a90613f43565b6000825580601f1061261c575061263b565b601f01602090049060005260206000209081019061263a91906125e1565b5b50565b600061265161264c84613c51565b613c20565b9050808382526020820190508285602086028201111561267057600080fd5b60005b858110156126a0578161268688826127ef565b845260208401935060208301925050600181019050612673565b5050509392505050565b60006126bd6126b884613c7d565b613c20565b9050808382526020820190508260005b858110156126fd57813585016126e3888261290b565b8452602084019350602083019250506001810190506126cd565b5050509392505050565b600061271a61271584613ca9565b613c20565b9050808382526020820190508285602086028201111561273957600080fd5b60005b85811015612769578161274f888261295f565b84526020840193506020830192505060018101905061273c565b5050509392505050565b600061278661278184613cd5565b613c20565b90508281526020810184848401111561279e57600080fd5b6127a9848285613f01565b509392505050565b60006127c46127bf84613d05565b613c20565b9050828152602081018484840111156127dc57600080fd5b6127e7848285613f01565b509392505050565b6000813590506127fe81614164565b92915050565b60008083601f84011261281657600080fd5b8235905067ffffffffffffffff81111561282f57600080fd5b60208301915083602082028301111561284757600080fd5b9250929050565b600082601f83011261285f57600080fd5b813561286f84826020860161263e565b91505092915050565b600082601f83011261288957600080fd5b81356128998482602086016126aa565b91505092915050565b600082601f8301126128b357600080fd5b81356128c3848260208601612707565b91505092915050565b6000813590506128db8161417b565b92915050565b6000813590506128f081614192565b92915050565b60008151905061290581614192565b92915050565b600082601f83011261291c57600080fd5b813561292c848260208601612773565b91505092915050565b600082601f83011261294657600080fd5b81356129568482602086016127b1565b91505092915050565b60008135905061296e816141a9565b92915050565b60006020828403121561298657600080fd5b6000612994848285016127ef565b91505092915050565b600080604083850312156129b057600080fd5b60006129be858286016127ef565b92505060206129cf858286016127ef565b9150509250929050565b600080600080600060a086880312156129f157600080fd5b60006129ff888289016127ef565b9550506020612a10888289016127ef565b945050604086013567ffffffffffffffff811115612a2d57600080fd5b612a39888289016128a2565b935050606086013567ffffffffffffffff811115612a5657600080fd5b612a62888289016128a2565b925050608086013567ffffffffffffffff811115612a7f57600080fd5b612a8b8882890161290b565b9150509295509295909350565b600080600080600060a08688031215612ab057600080fd5b6000612abe888289016127ef565b9550506020612acf888289016127ef565b9450506040612ae08882890161295f565b9350506060612af18882890161295f565b925050608086013567ffffffffffffffff811115612b0e57600080fd5b612b1a8882890161290b565b9150509295509295909350565b60008060408385031215612b3a57600080fd5b6000612b48858286016127ef565b9250506020612b59858286016128cc565b9150509250929050565b60008060408385031215612b7657600080fd5b6000612b84858286016127ef565b9250506020612b958582860161295f565b9150509250929050565b600080600060608486031215612bb457600080fd5b6000612bc2868287016127ef565b9350506020612bd38682870161295f565b9250506040612be48682870161295f565b9150509250925092565b60008060008060608587031215612c0457600080fd5b600085013567ffffffffffffffff811115612c1e57600080fd5b612c2a87828801612804565b94509450506020612c3d8782880161295f565b9250506040612c4e8782880161295f565b91505092959194509250565b60008060408385031215612c6d57600080fd5b600083013567ffffffffffffffff811115612c8757600080fd5b612c938582860161284e565b925050602083013567ffffffffffffffff811115612cb057600080fd5b612cbc858286016128a2565b9150509250929050565b600060208284031215612cd857600080fd5b6000612ce6848285016128e1565b91505092915050565b600060208284031215612d0157600080fd5b6000612d0f848285016128f6565b91505092915050565b600060208284031215612d2a57600080fd5b6000612d388482850161295f565b91505092915050565b60008060408385031215612d5457600080fd5b6000612d628582860161295f565b925050602083013567ffffffffffffffff811115612d7f57600080fd5b612d8b85828601612878565b9150509250929050565b60008060408385031215612da857600080fd5b6000612db68582860161295f565b925050602083013567ffffffffffffffff811115612dd357600080fd5b612ddf85828601612935565b9150509250929050565b60008060408385031215612dfc57600080fd5b6000612e0a8582860161295f565b9250506020612e1b8582860161295f565b9150509250929050565b6000612e318383613721565b60208301905092915050565b612e4681613e76565b82525050565b612e5d612e5882613e76565b613fbe565b82525050565b6000612e6e82613d5a565b612e788185613d88565b9350612e8383613d35565b8060005b83811015612eb4578151612e9b8882612e25565b9750612ea683613d7b565b925050600181019050612e87565b5085935050505092915050565b612eca81613e88565b82525050565b612ed981613e94565b82525050565b612ef0612eeb82613e94565b613fd0565b82525050565b6000612f0182613d65565b612f0b8185613d99565b9350612f1b818560208601613f10565b612f2481614083565b840191505092915050565b6000612f3a82613d70565b612f448185613daa565b9350612f54818560208601613f10565b612f5d81614083565b840191505092915050565b60008154612f7581613f43565b612f7f8186613dbb565b94506001821660008114612f9a5760018114612fab57612fde565b60ff19831686528186019350612fde565b612fb485613d45565b60005b83811015612fd657815481890152600182019150602081019050612fb7565b838801955050505b50505092915050565b6000612ff4601883613daa565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b6000613034603483613daa565b91507f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008301527f526563656976657220696d706c656d656e7465720000000000000000000000006020830152604082019050919050565b600061309a602883613daa565b91507f455243313135353a204552433131353552656365697665722072656a6563746560008301527f6420746f6b656e730000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613100601383613daa565b91507f4d617820737570706c79206578636565646564000000000000000000000000006000830152602082019050919050565b6000613140601f83613daa565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b6000613180601c83613dbb565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b60006131c0602b83613daa565b91507f455243313135353a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000613226602683613daa565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061328c602983613daa565b91507f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008301527f20617070726f76656400000000000000000000000000000000000000000000006020830152604082019050919050565b60006132f2602283613daa565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613358602583613daa565b91507f455243313135353a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133be603283613daa565b91507f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000613424602783613daa565b91507f43616e6e6f74207265736574206d617820737570706c79206f6e63652069742060008301527f77617320736574000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061348a602283613daa565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134f0602a83613daa565b91507f455243313135353a20696e73756666696369656e742062616c616e636520666f60008301527f72207472616e73666572000000000000000000000000000000000000000000006020830152604082019050919050565b6000613556602083613daa565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613596602983613daa565b91507f455243313135353a2073657474696e6720617070726f76616c2073746174757360008301527f20666f722073656c6600000000000000000000000000000000000000000000006020830152604082019050919050565b60006135fc602983613daa565b91507f455243313135353a206163636f756e747320616e6420696473206c656e67746860008301527f206d69736d6174636800000000000000000000000000000000000000000000006020830152604082019050919050565b6000613662602883613daa565b91507f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008301527f6d69736d617463680000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136c8602183613daa565b91507f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61372a81613eea565b82525050565b61373981613eea565b82525050565b61375061374b82613eea565b613fec565b82525050565b61375f81613ef4565b82525050565b60006137718286612e4c565b601482019150613781828561373f565b6020820191506137918284612f68565b9150819050949350505050565b60006137a982613173565b91506137b58284612edf565b60208201915081905092915050565b60006020820190506137d96000830184612e3d565b92915050565b600060a0820190506137f46000830188612e3d565b6138016020830187612e3d565b81810360408301526138138186612e63565b905081810360608301526138278185612e63565b9050818103608083015261383b8184612ef6565b90509695505050505050565b600060a08201905061385c6000830188612e3d565b6138696020830187612e3d565b6138766040830186613730565b6138836060830185613730565b81810360808301526138958184612ef6565b90509695505050505050565b600060208201905081810360008301526138bb8184612e63565b905092915050565b600060408201905081810360008301526138dd8185612e63565b905081810360208301526138f18184612e63565b90509392505050565b600060208201905061390f6000830184612ec1565b92915050565b600060808201905061392a6000830187612ed0565b6139376020830186613756565b6139446040830185612ed0565b6139516060830184612ed0565b95945050505050565b600060208201905081810360008301526139748184612f2f565b905092915050565b6000602082019050818103600083015261399581612fe7565b9050919050565b600060208201905081810360008301526139b581613027565b9050919050565b600060208201905081810360008301526139d58161308d565b9050919050565b600060208201905081810360008301526139f5816130f3565b9050919050565b60006020820190508181036000830152613a1581613133565b9050919050565b60006020820190508181036000830152613a35816131b3565b9050919050565b60006020820190508181036000830152613a5581613219565b9050919050565b60006020820190508181036000830152613a758161327f565b9050919050565b60006020820190508181036000830152613a95816132e5565b9050919050565b60006020820190508181036000830152613ab58161334b565b9050919050565b60006020820190508181036000830152613ad5816133b1565b9050919050565b60006020820190508181036000830152613af581613417565b9050919050565b60006020820190508181036000830152613b158161347d565b9050919050565b60006020820190508181036000830152613b35816134e3565b9050919050565b60006020820190508181036000830152613b5581613549565b9050919050565b60006020820190508181036000830152613b7581613589565b9050919050565b60006020820190508181036000830152613b95816135ef565b9050919050565b60006020820190508181036000830152613bb581613655565b9050919050565b60006020820190508181036000830152613bd5816136bb565b9050919050565b6000602082019050613bf16000830184613730565b92915050565b6000604082019050613c0c6000830185613730565b613c196020830184613730565b9392505050565b6000604051905081810181811067ffffffffffffffff82111715613c4757613c46614054565b5b8060405250919050565b600067ffffffffffffffff821115613c6c57613c6b614054565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c9857613c97614054565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613cc457613cc3614054565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613cf057613cef614054565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613d2057613d1f614054565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dd182613eea565b9150613ddc83613eea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e1157613e10613ff6565b5b828201905092915050565b6000613e2782613eea565b9150613e3283613eea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e6b57613e6a613ff6565b5b828202905092915050565b6000613e8182613eca565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613f2e578082015181840152602081019050613f13565b83811115613f3d576000848401525b50505050565b60006002820490506001821680613f5b57607f821691505b60208210811415613f6f57613f6e614025565b5b50919050565b6000613f8082613eea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fb357613fb2613ff6565b5b600182019050919050565b6000613fc982613fda565b9050919050565b6000819050919050565b6000613fe582614094565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b600060443d10156140be57614161565b60046000803e6140cf6000516140a1565b6308c379a081146140e05750614161565b60405160043d036004823e80513d602482011167ffffffffffffffff8211171561410c57505050614161565b808201805167ffffffffffffffff81111561412b575050505050614161565b8060208301013d850181111561414657505050505050614161565b61414f82614083565b60208401016040528296505050505050505b90565b61416d81613e76565b811461417857600080fd5b50565b61418481613e88565b811461418f57600080fd5b50565b61419b81613e9e565b81146141a657600080fd5b50565b6141b281613eea565b81146141bd57600080fd5b5056fea264697066735822122057efd74099eb1df20a25d42ebb9517ad0dfb0d80b336e17eafacf1a13e9edb9364736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


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.