ETH Price: $2,627.48 (+0.54%)

Token

 

Overview

Max Total Supply

126

Holders

80

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ballardfund.eth
0x941463D0Eb90033cF551a9f0eFa89FF596E7E78E
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:
BlendedColors

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : BlendedColors.sol
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.4;

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

contract BlendedColors is Ownable, ERC1155Supply {
    uint256 public claimInterval = 7 days;

    struct Art {
        string collectionName;
        address collectionAddress;
        string uri;
        uint256 claimTimeStart;
        mapping(address => uint256) whitelist;
    }

    mapping(uint256 => Art) public arts;

    constructor() ERC1155("") {}

    function changeClaimInterval(uint256 _interval) external onlyOwner {
        claimInterval = _interval;
    }

    function addWhitelist(
        uint256 _artId,
        address[] calldata _addrs,
        uint256[] calldata _limit
    ) external onlyOwner {
        require(_addrs.length == _limit.length, "length data not same");

        for (uint256 i; i < _addrs.length; ) {
            arts[_artId].whitelist[_addrs[i]] = _limit[i];
            unchecked {
                ++i;
            }
        }
    }

    function setArts(
        uint256[] calldata _ids,
        string[] calldata _collectionNames,
        address[] calldata _collectionAddresses,
        string[] calldata _uris
    ) external onlyOwner {
        require(_ids.length == _collectionNames.length, "length data not same");
        require(
            _ids.length == _collectionAddresses.length,
            "length data not same"
        );
        require(_ids.length == _uris.length, "length data not same");

        for (uint256 i; i < _ids.length; ) {
            Art storage art = arts[_ids[i]];
            art.collectionName = _collectionNames[i];
            art.collectionAddress = _collectionAddresses[i];
            art.uri = _uris[i];
            unchecked {
                ++i;
            }
        }
    }

    function changeUris(uint256[] calldata _ids, string[] calldata _uris)
        external
        onlyOwner
    {
        for (uint256 i; i < _ids.length; ) {
            arts[_ids[i]].uri = _uris[i];
            unchecked {
                ++i;
            }
        }
    }

    function startClaimTimeNow(uint256[] calldata _ids) external onlyOwner {
        for (uint256 i; i < _ids.length; ) {
            arts[_ids[i]].claimTimeStart = block.timestamp;
            unchecked {
                ++i;
            }
        }
    }

    function setStartClaimTime(
        uint256[] calldata _ids,
        uint256[] calldata _timestamps
    ) external onlyOwner {
        require(_ids.length == _timestamps.length, "length data not same");

        for (uint256 i; i < _ids.length; ) {
            arts[_ids[i]].claimTimeStart = _timestamps[i];
            unchecked {
                ++i;
            }
        }
    }

    function resetClaimTime(uint256[] calldata _ids) external onlyOwner {
        for (uint256 i; i < _ids.length; ) {
            arts[_ids[i]].claimTimeStart = 0;
            unchecked {
                ++i;
            }
        }
    }

    function claim(uint256 _id, uint256 _amount) external {
        Art storage art = arts[_id];

        require(art.collectionAddress != address(0), "No token for such id");

        uint256 senderLimit = art.whitelist[msg.sender];

        require(_amount <= senderLimit, "Not eligible to claim");

        require(
            art.claimTimeStart > 0 && block.timestamp > art.claimTimeStart,
            "Claim time has not started yet"
        );

        require(
            art.claimTimeStart + claimInterval > block.timestamp,
            "Claim time is over"
        );

        senderLimit -= _amount;
        art.whitelist[msg.sender] = senderLimit;
        _mint(msg.sender, _id, _amount, "");
    }

    function checkWhitelistAmount(uint256 _id, address _address)
        external
        view
        returns (uint256)
    {
        return arts[_id].whitelist[_address];
    }

    function uri(uint256 _id) public view override returns (string memory) {
        return arts[_id].uri;
    }
}

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

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

        return array;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

File 8 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"uint256","name":"_artId","type":"uint256"},{"internalType":"address[]","name":"_addrs","type":"address[]"},{"internalType":"uint256[]","name":"_limit","type":"uint256[]"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"arts","outputs":[{"internalType":"string","name":"collectionName","type":"string"},{"internalType":"address","name":"collectionAddress","type":"address"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"claimTimeStart","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_interval","type":"uint256"}],"name":"changeClaimInterval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"string[]","name":"_uris","type":"string[]"}],"name":"changeUris","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"checkWhitelistAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"resetClaimTime","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":"_ids","type":"uint256[]"},{"internalType":"string[]","name":"_collectionNames","type":"string[]"},{"internalType":"address[]","name":"_collectionAddresses","type":"address[]"},{"internalType":"string[]","name":"_uris","type":"string[]"}],"name":"setArts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_timestamps","type":"uint256[]"}],"name":"setStartClaimTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"startClaimTimeNow","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":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

608060405262093a806005553480156200001857600080fd5b5060405180602001604052806000815250620000496200003d6200006160201b60201c565b6200006960201b60201c565b6200005a816200012d60201b60201c565b506200025e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600390805190602001906200014592919062000149565b5050565b8280546200015790620001f9565b90600052602060002090601f0160209004810192826200017b5760008555620001c7565b82601f106200019657805160ff1916838001178555620001c7565b82800160010185558215620001c7579182015b82811115620001c6578251825591602001919060010190620001a9565b5b509050620001d69190620001da565b5090565b5b80821115620001f5576000816000905550600101620001db565b5090565b600060028204905060018216806200021257607f821691505b602082108114156200022957620002286200022f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614840806200026e6000396000f3fe608060405234801561001057600080fd5b50600436106101575760003560e01c80638a2eb1ef116100c3578063e57a104a1161007c578063e57a104a146103d2578063e985e9c514610405578063f242432a14610435578063f2fde38b14610451578063f7f4d5cf1461046d578063fd6cfd661461048957610157565b80638a2eb1ef146103005780638da5cb5b1461031c578063a22cb4651461033a578063a78a656214610356578063bd85b03914610386578063c3490263146103b657610157565b80632eb2c2d6116101155780632eb2c2d6146102425780634e1273f41461025e5780634f558e791461028e578063715018a6146102be578063796f838e146102c8578063859155a9146102e457610157565b8062fdd58e1461015c57806301ffc9a71461018c57806302faac76146101bc57806304c29755146101d85780630b433a12146101f45780630e89341c14610212575b600080fd5b610176600480360381019061017191906131a1565b6104a5565b6040516101839190613dac565b60405180910390f35b6101a660048036038101906101a1919061344d565b61056f565b6040516101b39190613abc565b60405180910390f35b6101d660048036038101906101d191906133d8565b610651565b005b6101f260048036038101906101ed9190613303565b6107ce565b005b6101fc610ae7565b6040516102099190613dac565b60405180910390f35b61022c6004803603810190610227919061349f565b610aed565b6040516102399190613ad7565b60405180910390f35b61025c60048036038101906102579190613017565b610b95565b005b610278600480360381019061027391906131dd565b610c36565b6040516102859190613a63565b60405180910390f35b6102a860048036038101906102a3919061349f565b610de7565b6040516102b59190613abc565b60405180910390f35b6102c6610dfb565b005b6102e260048036038101906102dd919061349f565b610e83565b005b6102fe60048036038101906102f99190613249565b610f09565b005b61031a60048036038101906103159190613504565b610ffd565b005b6103246111c6565b6040516103319190613986565b60405180910390f35b610354600480360381019061034f9190613165565b6111ef565b005b610370600480360381019061036b91906134c8565b611205565b60405161037d9190613dac565b60405180910390f35b6103a0600480360381019061039b919061349f565b611263565b6040516103ad9190613dac565b60405180910390f35b6103d060048036038101906103cb919061358d565b611280565b005b6103ec60048036038101906103e7919061349f565b6114d2565b6040516103fc9493929190613af9565b60405180910390f35b61041f600480360381019061041a9190612fdb565b611632565b60405161042c9190613abc565b60405180910390f35b61044f600480360381019061044a91906130d6565b6116c6565b005b61046b60048036038101906104669190612fb2565b611767565b005b6104876004803603810190610482919061328e565b61185f565b005b6104a3600480360381019061049e9190613249565b6119a9565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050d90613b8c565b60405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063a57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061064a575061064982611a9e565b5b9050919050565b610659611b08565b73ffffffffffffffffffffffffffffffffffffffff166106776111c6565b73ffffffffffffffffffffffffffffffffffffffff16146106cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c490613c6c565b60405180910390fd5b818190508484905014610715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070c90613d0c565b60405180910390fd5b60005b848490508110156107c75782828281811061075c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600660008787858181106107a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002060030181905550806001019050610718565b5050505050565b6107d6611b08565b73ffffffffffffffffffffffffffffffffffffffff166107f46111c6565b73ffffffffffffffffffffffffffffffffffffffff161461084a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084190613c6c565b60405180910390fd5b858590508888905014610892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088990613d0c565b60405180910390fd5b8383905088889050146108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190613d0c565b60405180910390fd5b818190508888905014610922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091990613d0c565b60405180910390fd5b60005b88889050811015610adc576000600660008b8b8581811061096f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002090508787838181106109bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020028101906109d19190613df0565b8260000191906109e2929190612c34565b50858583818110610a1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610a319190612fb2565b8160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838383818110610aac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610abe9190613df0565b826002019190610acf929190612c34565b5081600101915050610925565b505050505050505050565b60055481565b6060600660008381526020019081526020016000206002018054610b10906140a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3c906140a6565b8015610b895780601f10610b5e57610100808354040283529160200191610b89565b820191906000526020600020905b815481529060010190602001808311610b6c57829003601f168201915b50505050509050919050565b610b9d611b08565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610be35750610be285610bdd611b08565b611632565b5b610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1990613c2c565b60405180910390fd5b610c2f8585858585611b10565b5050505050565b60608151835114610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390613d4c565b60405180910390fd5b6000835167ffffffffffffffff811115610cbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ced5781602001602082028036833780820191505090505b50905060005b8451811015610ddc57610d86858281518110610d38577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610d79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516104a5565b828281518110610dbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610dd590614109565b9050610cf3565b508091505092915050565b600080610df383611263565b119050919050565b610e03611b08565b73ffffffffffffffffffffffffffffffffffffffff16610e216111c6565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90613c6c565b60405180910390fd5b610e816000611e81565b565b610e8b611b08565b73ffffffffffffffffffffffffffffffffffffffff16610ea96111c6565b73ffffffffffffffffffffffffffffffffffffffff1614610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690613c6c565b60405180910390fd5b8060058190555050565b610f11611b08565b73ffffffffffffffffffffffffffffffffffffffff16610f2f6111c6565b73ffffffffffffffffffffffffffffffffffffffff1614610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613c6c565b60405180910390fd5b60005b82829050811015610ff8574260066000858585818110610fd1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002060030181905550806001019050610f88565b505050565b611005611b08565b73ffffffffffffffffffffffffffffffffffffffff166110236111c6565b73ffffffffffffffffffffffffffffffffffffffff1614611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090613c6c565b60405180910390fd5b8181905084849050146110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890613d0c565b60405180910390fd5b60005b848490508110156111be57828282818110611108577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600660008881526020019081526020016000206004016000878785818110611160577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906111759190612fb2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060010190506110c4565b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112016111fa611b08565b8383611f45565b5050565b60006006600084815260200190815260200160002060040160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600060046000838152602001908152602001600020549050919050565b6000600660008481526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290613cec565b60405180910390fd5b60008160040160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808311156113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90613bec565b60405180910390fd5b600082600301541180156113cb5750816003015442115b61140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190613ccc565b60405180910390fd5b42600554836003015461141d9190613f66565b1161145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145490613cac565b60405180910390fd5b82816114699190613fbc565b9050808260040160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114cc338585604051806020016040528060008152506120b2565b50505050565b60066020528060005260406000206000915090508060000180546114f5906140a6565b80601f0160208091040260200160405190810160405280929190818152602001828054611521906140a6565b801561156e5780601f106115435761010080835404028352916020019161156e565b820191906000526020600020905b81548152906001019060200180831161155157829003601f168201915b5050505050908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020180546115a9906140a6565b80601f01602080910402602001604051908101604052809291908181526020018280546115d5906140a6565b80156116225780601f106115f757610100808354040283529160200191611622565b820191906000526020600020905b81548152906001019060200180831161160557829003601f168201915b5050505050908060030154905084565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116ce611b08565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061171457506117138561170e611b08565b611632565b5b611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90613bcc565b60405180910390fd5b6117608585858585612264565b5050505050565b61176f611b08565b73ffffffffffffffffffffffffffffffffffffffff1661178d6111c6565b73ffffffffffffffffffffffffffffffffffffffff16146117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117da90613c6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a90613bac565b60405180910390fd5b61185c81611e81565b50565b611867611b08565b73ffffffffffffffffffffffffffffffffffffffff166118856111c6565b73ffffffffffffffffffffffffffffffffffffffff16146118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290613c6c565b60405180910390fd5b60005b848490508110156119a257828282818110611922577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020028101906119349190613df0565b60066000888886818110611971577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013581526020019081526020016000206002019190611996929190612c34565b508060010190506118de565b5050505050565b6119b1611b08565b73ffffffffffffffffffffffffffffffffffffffff166119cf6111c6565b73ffffffffffffffffffffffffffffffffffffffff1614611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c90613c6c565b60405180910390fd5b60005b82829050811015611a9957600060066000858585818110611a72577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002060030181905550806001019050611a28565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90613d6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90613c0c565b60405180910390fd5b6000611bce611b08565b9050611bde818787878787612503565b60005b8451811015611dde576000858281518110611c25577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611c6a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0390613c4c565b60405180910390fd5b8181036001600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dc39190613f66565b9250508190555050505080611dd790614109565b9050611be1565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611e55929190613a85565b60405180910390a4611e6b81878787878761276d565b611e79818787878787612775565b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fab90613d2c565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120a59190613abc565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211990613d8c565b60405180910390fd5b600061212c611b08565b905060006121398561295c565b905060006121468561295c565b905061215783600089858589612503565b846001600088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b79190613f66565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612235929190613dc7565b60405180910390a461224c8360008985858961276d565b61225b83600089898989612a22565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cb90613c0c565b60405180910390fd5b60006122de611b08565b905060006122eb8561295c565b905060006122f88561295c565b9050612308838989858589612503565b60006001600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156123a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239790613c4c565b60405180910390fd5b8581036001600089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550856001600089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124579190613f66565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516124d4929190613dc7565b60405180910390a46124ea848a8a86868a61276d565b6124f8848a8a8a8a8a612a22565b505050505050505050565b612511868686868686612c09565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561260f5760005b835181101561260d5782818151811061258b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600460008684815181106125d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008282546125f59190613f66565b925050819055508061260690614109565b9050612549565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127655760005b835181101561276357600084828151811061268b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106126d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006004600084815260200190815260200160002054905081811015612735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272c90613c8c565b60405180910390fd5b81810360046000858152602001908152602001600020819055505050508061275c90614109565b9050612647565b505b505050505050565b505050505050565b6127948473ffffffffffffffffffffffffffffffffffffffff16612c11565b15612954578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016127da9594939291906139a1565b602060405180830381600087803b1580156127f457600080fd5b505af192505050801561282557506040513d601f19601f820116820180604052508101906128229190613476565b60015b6128cb576128316141df565b806308c379a0141561288e5750612846614718565b806128515750612890565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128859190613ad7565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c290613b4c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294990613b6c565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156129a1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156129cf5781602001602082028036833780820191505090505b5090508281600081518110612a0d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b612a418473ffffffffffffffffffffffffffffffffffffffff16612c11565b15612c01578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612a87959493929190613a09565b602060405180830381600087803b158015612aa157600080fd5b505af1925050508015612ad257506040513d601f19601f82011682018060405250810190612acf9190613476565b60015b612b7857612ade6141df565b806308c379a01415612b3b5750612af3614718565b80612afe5750612b3d565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b329190613ad7565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6f90613b4c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf690613b6c565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612c40906140a6565b90600052602060002090601f016020900481019282612c625760008555612ca9565b82601f10612c7b57803560ff1916838001178555612ca9565b82800160010185558215612ca9579182015b82811115612ca8578235825591602001919060010190612c8d565b5b509050612cb69190612cba565b5090565b5b80821115612cd3576000816000905550600101612cbb565b5090565b6000612cea612ce584613e6c565b613e47565b90508083825260208201905082856020860282011115612d0957600080fd5b60005b85811015612d395781612d1f8882612ded565b845260208401935060208301925050600181019050612d0c565b5050509392505050565b6000612d56612d5184613e98565b613e47565b90508083825260208201905082856020860282011115612d7557600080fd5b60005b85811015612da55781612d8b8882612f9d565b845260208401935060208301925050600181019050612d78565b5050509392505050565b6000612dc2612dbd84613ec4565b613e47565b905082815260208101848484011115612dda57600080fd5b612de5848285614064565b509392505050565b600081359050612dfc816147ae565b92915050565b60008083601f840112612e1457600080fd5b8235905067ffffffffffffffff811115612e2d57600080fd5b602083019150836020820283011115612e4557600080fd5b9250929050565b600082601f830112612e5d57600080fd5b8135612e6d848260208601612cd7565b91505092915050565b60008083601f840112612e8857600080fd5b8235905067ffffffffffffffff811115612ea157600080fd5b602083019150836020820283011115612eb957600080fd5b9250929050565b60008083601f840112612ed257600080fd5b8235905067ffffffffffffffff811115612eeb57600080fd5b602083019150836020820283011115612f0357600080fd5b9250929050565b600082601f830112612f1b57600080fd5b8135612f2b848260208601612d43565b91505092915050565b600081359050612f43816147c5565b92915050565b600081359050612f58816147dc565b92915050565b600081519050612f6d816147dc565b92915050565b600082601f830112612f8457600080fd5b8135612f94848260208601612daf565b91505092915050565b600081359050612fac816147f3565b92915050565b600060208284031215612fc457600080fd5b6000612fd284828501612ded565b91505092915050565b60008060408385031215612fee57600080fd5b6000612ffc85828601612ded565b925050602061300d85828601612ded565b9150509250929050565b600080600080600060a0868803121561302f57600080fd5b600061303d88828901612ded565b955050602061304e88828901612ded565b945050604086013567ffffffffffffffff81111561306b57600080fd5b61307788828901612f0a565b935050606086013567ffffffffffffffff81111561309457600080fd5b6130a088828901612f0a565b925050608086013567ffffffffffffffff8111156130bd57600080fd5b6130c988828901612f73565b9150509295509295909350565b600080600080600060a086880312156130ee57600080fd5b60006130fc88828901612ded565b955050602061310d88828901612ded565b945050604061311e88828901612f9d565b935050606061312f88828901612f9d565b925050608086013567ffffffffffffffff81111561314c57600080fd5b61315888828901612f73565b9150509295509295909350565b6000806040838503121561317857600080fd5b600061318685828601612ded565b925050602061319785828601612f34565b9150509250929050565b600080604083850312156131b457600080fd5b60006131c285828601612ded565b92505060206131d385828601612f9d565b9150509250929050565b600080604083850312156131f057600080fd5b600083013567ffffffffffffffff81111561320a57600080fd5b61321685828601612e4c565b925050602083013567ffffffffffffffff81111561323357600080fd5b61323f85828601612f0a565b9150509250929050565b6000806020838503121561325c57600080fd5b600083013567ffffffffffffffff81111561327657600080fd5b61328285828601612ec0565b92509250509250929050565b600080600080604085870312156132a457600080fd5b600085013567ffffffffffffffff8111156132be57600080fd5b6132ca87828801612ec0565b9450945050602085013567ffffffffffffffff8111156132e957600080fd5b6132f587828801612e76565b925092505092959194509250565b6000806000806000806000806080898b03121561331f57600080fd5b600089013567ffffffffffffffff81111561333957600080fd5b6133458b828c01612ec0565b9850985050602089013567ffffffffffffffff81111561336457600080fd5b6133708b828c01612e76565b9650965050604089013567ffffffffffffffff81111561338f57600080fd5b61339b8b828c01612e02565b9450945050606089013567ffffffffffffffff8111156133ba57600080fd5b6133c68b828c01612e76565b92509250509295985092959890939650565b600080600080604085870312156133ee57600080fd5b600085013567ffffffffffffffff81111561340857600080fd5b61341487828801612ec0565b9450945050602085013567ffffffffffffffff81111561343357600080fd5b61343f87828801612ec0565b925092505092959194509250565b60006020828403121561345f57600080fd5b600061346d84828501612f49565b91505092915050565b60006020828403121561348857600080fd5b600061349684828501612f5e565b91505092915050565b6000602082840312156134b157600080fd5b60006134bf84828501612f9d565b91505092915050565b600080604083850312156134db57600080fd5b60006134e985828601612f9d565b92505060206134fa85828601612ded565b9150509250929050565b60008060008060006060868803121561351c57600080fd5b600061352a88828901612f9d565b955050602086013567ffffffffffffffff81111561354757600080fd5b61355388828901612e02565b9450945050604086013567ffffffffffffffff81111561357257600080fd5b61357e88828901612ec0565b92509250509295509295909350565b600080604083850312156135a057600080fd5b60006135ae85828601612f9d565b92505060206135bf85828601612f9d565b9150509250929050565b60006135d58383613968565b60208301905092915050565b6135ea81613ff0565b82525050565b60006135fb82613f05565b6136058185613f33565b935061361083613ef5565b8060005b8381101561364157815161362888826135c9565b975061363383613f26565b925050600181019050613614565b5085935050505092915050565b61365781614002565b82525050565b600061366882613f10565b6136728185613f44565b9350613682818560208601614073565b61368b81614201565b840191505092915050565b60006136a182613f1b565b6136ab8185613f55565b93506136bb818560208601614073565b6136c481614201565b840191505092915050565b60006136dc603483613f55565b91506136e78261421f565b604082019050919050565b60006136ff602883613f55565b915061370a8261426e565b604082019050919050565b6000613722602b83613f55565b915061372d826142bd565b604082019050919050565b6000613745602683613f55565b91506137508261430c565b604082019050919050565b6000613768602983613f55565b91506137738261435b565b604082019050919050565b600061378b601583613f55565b9150613796826143aa565b602082019050919050565b60006137ae602583613f55565b91506137b9826143d3565b604082019050919050565b60006137d1603283613f55565b91506137dc82614422565b604082019050919050565b60006137f4602a83613f55565b91506137ff82614471565b604082019050919050565b6000613817602083613f55565b9150613822826144c0565b602082019050919050565b600061383a602883613f55565b9150613845826144e9565b604082019050919050565b600061385d601283613f55565b915061386882614538565b602082019050919050565b6000613880601e83613f55565b915061388b82614561565b602082019050919050565b60006138a3601483613f55565b91506138ae8261458a565b602082019050919050565b60006138c6601483613f55565b91506138d1826145b3565b602082019050919050565b60006138e9602983613f55565b91506138f4826145dc565b604082019050919050565b600061390c602983613f55565b91506139178261462b565b604082019050919050565b600061392f602883613f55565b915061393a8261467a565b604082019050919050565b6000613952602183613f55565b915061395d826146c9565b604082019050919050565b6139718161405a565b82525050565b6139808161405a565b82525050565b600060208201905061399b60008301846135e1565b92915050565b600060a0820190506139b660008301886135e1565b6139c360208301876135e1565b81810360408301526139d581866135f0565b905081810360608301526139e981856135f0565b905081810360808301526139fd818461365d565b90509695505050505050565b600060a082019050613a1e60008301886135e1565b613a2b60208301876135e1565b613a386040830186613977565b613a456060830185613977565b8181036080830152613a57818461365d565b90509695505050505050565b60006020820190508181036000830152613a7d81846135f0565b905092915050565b60006040820190508181036000830152613a9f81856135f0565b90508181036020830152613ab381846135f0565b90509392505050565b6000602082019050613ad1600083018461364e565b92915050565b60006020820190508181036000830152613af18184613696565b905092915050565b60006080820190508181036000830152613b138187613696565b9050613b2260208301866135e1565b8181036040830152613b348185613696565b9050613b436060830184613977565b95945050505050565b60006020820190508181036000830152613b65816136cf565b9050919050565b60006020820190508181036000830152613b85816136f2565b9050919050565b60006020820190508181036000830152613ba581613715565b9050919050565b60006020820190508181036000830152613bc581613738565b9050919050565b60006020820190508181036000830152613be58161375b565b9050919050565b60006020820190508181036000830152613c058161377e565b9050919050565b60006020820190508181036000830152613c25816137a1565b9050919050565b60006020820190508181036000830152613c45816137c4565b9050919050565b60006020820190508181036000830152613c65816137e7565b9050919050565b60006020820190508181036000830152613c858161380a565b9050919050565b60006020820190508181036000830152613ca58161382d565b9050919050565b60006020820190508181036000830152613cc581613850565b9050919050565b60006020820190508181036000830152613ce581613873565b9050919050565b60006020820190508181036000830152613d0581613896565b9050919050565b60006020820190508181036000830152613d25816138b9565b9050919050565b60006020820190508181036000830152613d45816138dc565b9050919050565b60006020820190508181036000830152613d65816138ff565b9050919050565b60006020820190508181036000830152613d8581613922565b9050919050565b60006020820190508181036000830152613da581613945565b9050919050565b6000602082019050613dc16000830184613977565b92915050565b6000604082019050613ddc6000830185613977565b613de96020830184613977565b9392505050565b60008083356001602003843603038112613e0957600080fd5b80840192508235915067ffffffffffffffff821115613e2757600080fd5b602083019250600182023603831315613e3f57600080fd5b509250929050565b6000613e51613e62565b9050613e5d82826140d8565b919050565b6000604051905090565b600067ffffffffffffffff821115613e8757613e866141b0565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613eb357613eb26141b0565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613edf57613ede6141b0565b5b613ee882614201565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613f718261405a565b9150613f7c8361405a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fb157613fb0614152565b5b828201905092915050565b6000613fc78261405a565b9150613fd28361405a565b925082821015613fe557613fe4614152565b5b828203905092915050565b6000613ffb8261403a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614091578082015181840152602081019050614076565b838111156140a0576000848401525b50505050565b600060028204905060018216806140be57607f821691505b602082108114156140d2576140d1614181565b5b50919050565b6140e182614201565b810181811067ffffffffffffffff82111715614100576140ff6141b0565b5b80604052505050565b60006141148261405a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561414757614146614152565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156141fe5760046000803e6141fb600051614212565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656c696769626c6520746f20636c61696d0000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b7f436c61696d2074696d65206973206f7665720000000000000000000000000000600082015250565b7f436c61696d2074696d6520686173206e6f742073746172746564207965740000600082015250565b7f4e6f20746f6b656e20666f722073756368206964000000000000000000000000600082015250565b7f6c656e6774682064617461206e6f742073616d65000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015614728576147ab565b614730613e62565b60043d036004823e80513d602482011167ffffffffffffffff821117156147585750506147ab565b808201805167ffffffffffffffff81111561477657505050506147ab565b80602083010160043d0385018111156147935750505050506147ab565b6147a2826020018501866140d8565b82955050505050505b90565b6147b781613ff0565b81146147c257600080fd5b50565b6147ce81614002565b81146147d957600080fd5b50565b6147e58161400e565b81146147f057600080fd5b50565b6147fc8161405a565b811461480757600080fd5b5056fea264697066735822122091bdc5d25aa6bd1c1a8a5738f9b32ed3248178486a5b780e5ed05cd234e4666164736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101575760003560e01c80638a2eb1ef116100c3578063e57a104a1161007c578063e57a104a146103d2578063e985e9c514610405578063f242432a14610435578063f2fde38b14610451578063f7f4d5cf1461046d578063fd6cfd661461048957610157565b80638a2eb1ef146103005780638da5cb5b1461031c578063a22cb4651461033a578063a78a656214610356578063bd85b03914610386578063c3490263146103b657610157565b80632eb2c2d6116101155780632eb2c2d6146102425780634e1273f41461025e5780634f558e791461028e578063715018a6146102be578063796f838e146102c8578063859155a9146102e457610157565b8062fdd58e1461015c57806301ffc9a71461018c57806302faac76146101bc57806304c29755146101d85780630b433a12146101f45780630e89341c14610212575b600080fd5b610176600480360381019061017191906131a1565b6104a5565b6040516101839190613dac565b60405180910390f35b6101a660048036038101906101a1919061344d565b61056f565b6040516101b39190613abc565b60405180910390f35b6101d660048036038101906101d191906133d8565b610651565b005b6101f260048036038101906101ed9190613303565b6107ce565b005b6101fc610ae7565b6040516102099190613dac565b60405180910390f35b61022c6004803603810190610227919061349f565b610aed565b6040516102399190613ad7565b60405180910390f35b61025c60048036038101906102579190613017565b610b95565b005b610278600480360381019061027391906131dd565b610c36565b6040516102859190613a63565b60405180910390f35b6102a860048036038101906102a3919061349f565b610de7565b6040516102b59190613abc565b60405180910390f35b6102c6610dfb565b005b6102e260048036038101906102dd919061349f565b610e83565b005b6102fe60048036038101906102f99190613249565b610f09565b005b61031a60048036038101906103159190613504565b610ffd565b005b6103246111c6565b6040516103319190613986565b60405180910390f35b610354600480360381019061034f9190613165565b6111ef565b005b610370600480360381019061036b91906134c8565b611205565b60405161037d9190613dac565b60405180910390f35b6103a0600480360381019061039b919061349f565b611263565b6040516103ad9190613dac565b60405180910390f35b6103d060048036038101906103cb919061358d565b611280565b005b6103ec60048036038101906103e7919061349f565b6114d2565b6040516103fc9493929190613af9565b60405180910390f35b61041f600480360381019061041a9190612fdb565b611632565b60405161042c9190613abc565b60405180910390f35b61044f600480360381019061044a91906130d6565b6116c6565b005b61046b60048036038101906104669190612fb2565b611767565b005b6104876004803603810190610482919061328e565b61185f565b005b6104a3600480360381019061049e9190613249565b6119a9565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050d90613b8c565b60405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063a57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061064a575061064982611a9e565b5b9050919050565b610659611b08565b73ffffffffffffffffffffffffffffffffffffffff166106776111c6565b73ffffffffffffffffffffffffffffffffffffffff16146106cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c490613c6c565b60405180910390fd5b818190508484905014610715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070c90613d0c565b60405180910390fd5b60005b848490508110156107c75782828281811061075c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600660008787858181106107a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002060030181905550806001019050610718565b5050505050565b6107d6611b08565b73ffffffffffffffffffffffffffffffffffffffff166107f46111c6565b73ffffffffffffffffffffffffffffffffffffffff161461084a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084190613c6c565b60405180910390fd5b858590508888905014610892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088990613d0c565b60405180910390fd5b8383905088889050146108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190613d0c565b60405180910390fd5b818190508888905014610922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091990613d0c565b60405180910390fd5b60005b88889050811015610adc576000600660008b8b8581811061096f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002090508787838181106109bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020028101906109d19190613df0565b8260000191906109e2929190612c34565b50858583818110610a1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610a319190612fb2565b8160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838383818110610aac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610abe9190613df0565b826002019190610acf929190612c34565b5081600101915050610925565b505050505050505050565b60055481565b6060600660008381526020019081526020016000206002018054610b10906140a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3c906140a6565b8015610b895780601f10610b5e57610100808354040283529160200191610b89565b820191906000526020600020905b815481529060010190602001808311610b6c57829003601f168201915b50505050509050919050565b610b9d611b08565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610be35750610be285610bdd611b08565b611632565b5b610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1990613c2c565b60405180910390fd5b610c2f8585858585611b10565b5050505050565b60608151835114610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390613d4c565b60405180910390fd5b6000835167ffffffffffffffff811115610cbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ced5781602001602082028036833780820191505090505b50905060005b8451811015610ddc57610d86858281518110610d38577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610d79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516104a5565b828281518110610dbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610dd590614109565b9050610cf3565b508091505092915050565b600080610df383611263565b119050919050565b610e03611b08565b73ffffffffffffffffffffffffffffffffffffffff16610e216111c6565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90613c6c565b60405180910390fd5b610e816000611e81565b565b610e8b611b08565b73ffffffffffffffffffffffffffffffffffffffff16610ea96111c6565b73ffffffffffffffffffffffffffffffffffffffff1614610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690613c6c565b60405180910390fd5b8060058190555050565b610f11611b08565b73ffffffffffffffffffffffffffffffffffffffff16610f2f6111c6565b73ffffffffffffffffffffffffffffffffffffffff1614610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613c6c565b60405180910390fd5b60005b82829050811015610ff8574260066000858585818110610fd1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002060030181905550806001019050610f88565b505050565b611005611b08565b73ffffffffffffffffffffffffffffffffffffffff166110236111c6565b73ffffffffffffffffffffffffffffffffffffffff1614611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090613c6c565b60405180910390fd5b8181905084849050146110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890613d0c565b60405180910390fd5b60005b848490508110156111be57828282818110611108577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600660008881526020019081526020016000206004016000878785818110611160577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906111759190612fb2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060010190506110c4565b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112016111fa611b08565b8383611f45565b5050565b60006006600084815260200190815260200160002060040160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600060046000838152602001908152602001600020549050919050565b6000600660008481526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290613cec565b60405180910390fd5b60008160040160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808311156113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90613bec565b60405180910390fd5b600082600301541180156113cb5750816003015442115b61140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190613ccc565b60405180910390fd5b42600554836003015461141d9190613f66565b1161145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145490613cac565b60405180910390fd5b82816114699190613fbc565b9050808260040160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114cc338585604051806020016040528060008152506120b2565b50505050565b60066020528060005260406000206000915090508060000180546114f5906140a6565b80601f0160208091040260200160405190810160405280929190818152602001828054611521906140a6565b801561156e5780601f106115435761010080835404028352916020019161156e565b820191906000526020600020905b81548152906001019060200180831161155157829003601f168201915b5050505050908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020180546115a9906140a6565b80601f01602080910402602001604051908101604052809291908181526020018280546115d5906140a6565b80156116225780601f106115f757610100808354040283529160200191611622565b820191906000526020600020905b81548152906001019060200180831161160557829003601f168201915b5050505050908060030154905084565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116ce611b08565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061171457506117138561170e611b08565b611632565b5b611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90613bcc565b60405180910390fd5b6117608585858585612264565b5050505050565b61176f611b08565b73ffffffffffffffffffffffffffffffffffffffff1661178d6111c6565b73ffffffffffffffffffffffffffffffffffffffff16146117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117da90613c6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a90613bac565b60405180910390fd5b61185c81611e81565b50565b611867611b08565b73ffffffffffffffffffffffffffffffffffffffff166118856111c6565b73ffffffffffffffffffffffffffffffffffffffff16146118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290613c6c565b60405180910390fd5b60005b848490508110156119a257828282818110611922577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020028101906119349190613df0565b60066000888886818110611971577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013581526020019081526020016000206002019190611996929190612c34565b508060010190506118de565b5050505050565b6119b1611b08565b73ffffffffffffffffffffffffffffffffffffffff166119cf6111c6565b73ffffffffffffffffffffffffffffffffffffffff1614611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c90613c6c565b60405180910390fd5b60005b82829050811015611a9957600060066000858585818110611a72577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002060030181905550806001019050611a28565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90613d6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90613c0c565b60405180910390fd5b6000611bce611b08565b9050611bde818787878787612503565b60005b8451811015611dde576000858281518110611c25577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611c6a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0390613c4c565b60405180910390fd5b8181036001600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dc39190613f66565b9250508190555050505080611dd790614109565b9050611be1565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611e55929190613a85565b60405180910390a4611e6b81878787878761276d565b611e79818787878787612775565b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fab90613d2c565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120a59190613abc565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211990613d8c565b60405180910390fd5b600061212c611b08565b905060006121398561295c565b905060006121468561295c565b905061215783600089858589612503565b846001600088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b79190613f66565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612235929190613dc7565b60405180910390a461224c8360008985858961276d565b61225b83600089898989612a22565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cb90613c0c565b60405180910390fd5b60006122de611b08565b905060006122eb8561295c565b905060006122f88561295c565b9050612308838989858589612503565b60006001600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156123a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239790613c4c565b60405180910390fd5b8581036001600089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550856001600089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124579190613f66565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516124d4929190613dc7565b60405180910390a46124ea848a8a86868a61276d565b6124f8848a8a8a8a8a612a22565b505050505050505050565b612511868686868686612c09565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561260f5760005b835181101561260d5782818151811061258b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600460008684815181106125d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008282546125f59190613f66565b925050819055508061260690614109565b9050612549565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127655760005b835181101561276357600084828151811061268b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106126d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006004600084815260200190815260200160002054905081811015612735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272c90613c8c565b60405180910390fd5b81810360046000858152602001908152602001600020819055505050508061275c90614109565b9050612647565b505b505050505050565b505050505050565b6127948473ffffffffffffffffffffffffffffffffffffffff16612c11565b15612954578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016127da9594939291906139a1565b602060405180830381600087803b1580156127f457600080fd5b505af192505050801561282557506040513d601f19601f820116820180604052508101906128229190613476565b60015b6128cb576128316141df565b806308c379a0141561288e5750612846614718565b806128515750612890565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128859190613ad7565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c290613b4c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294990613b6c565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156129a1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156129cf5781602001602082028036833780820191505090505b5090508281600081518110612a0d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b612a418473ffffffffffffffffffffffffffffffffffffffff16612c11565b15612c01578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612a87959493929190613a09565b602060405180830381600087803b158015612aa157600080fd5b505af1925050508015612ad257506040513d601f19601f82011682018060405250810190612acf9190613476565b60015b612b7857612ade6141df565b806308c379a01415612b3b5750612af3614718565b80612afe5750612b3d565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b329190613ad7565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6f90613b4c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf690613b6c565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612c40906140a6565b90600052602060002090601f016020900481019282612c625760008555612ca9565b82601f10612c7b57803560ff1916838001178555612ca9565b82800160010185558215612ca9579182015b82811115612ca8578235825591602001919060010190612c8d565b5b509050612cb69190612cba565b5090565b5b80821115612cd3576000816000905550600101612cbb565b5090565b6000612cea612ce584613e6c565b613e47565b90508083825260208201905082856020860282011115612d0957600080fd5b60005b85811015612d395781612d1f8882612ded565b845260208401935060208301925050600181019050612d0c565b5050509392505050565b6000612d56612d5184613e98565b613e47565b90508083825260208201905082856020860282011115612d7557600080fd5b60005b85811015612da55781612d8b8882612f9d565b845260208401935060208301925050600181019050612d78565b5050509392505050565b6000612dc2612dbd84613ec4565b613e47565b905082815260208101848484011115612dda57600080fd5b612de5848285614064565b509392505050565b600081359050612dfc816147ae565b92915050565b60008083601f840112612e1457600080fd5b8235905067ffffffffffffffff811115612e2d57600080fd5b602083019150836020820283011115612e4557600080fd5b9250929050565b600082601f830112612e5d57600080fd5b8135612e6d848260208601612cd7565b91505092915050565b60008083601f840112612e8857600080fd5b8235905067ffffffffffffffff811115612ea157600080fd5b602083019150836020820283011115612eb957600080fd5b9250929050565b60008083601f840112612ed257600080fd5b8235905067ffffffffffffffff811115612eeb57600080fd5b602083019150836020820283011115612f0357600080fd5b9250929050565b600082601f830112612f1b57600080fd5b8135612f2b848260208601612d43565b91505092915050565b600081359050612f43816147c5565b92915050565b600081359050612f58816147dc565b92915050565b600081519050612f6d816147dc565b92915050565b600082601f830112612f8457600080fd5b8135612f94848260208601612daf565b91505092915050565b600081359050612fac816147f3565b92915050565b600060208284031215612fc457600080fd5b6000612fd284828501612ded565b91505092915050565b60008060408385031215612fee57600080fd5b6000612ffc85828601612ded565b925050602061300d85828601612ded565b9150509250929050565b600080600080600060a0868803121561302f57600080fd5b600061303d88828901612ded565b955050602061304e88828901612ded565b945050604086013567ffffffffffffffff81111561306b57600080fd5b61307788828901612f0a565b935050606086013567ffffffffffffffff81111561309457600080fd5b6130a088828901612f0a565b925050608086013567ffffffffffffffff8111156130bd57600080fd5b6130c988828901612f73565b9150509295509295909350565b600080600080600060a086880312156130ee57600080fd5b60006130fc88828901612ded565b955050602061310d88828901612ded565b945050604061311e88828901612f9d565b935050606061312f88828901612f9d565b925050608086013567ffffffffffffffff81111561314c57600080fd5b61315888828901612f73565b9150509295509295909350565b6000806040838503121561317857600080fd5b600061318685828601612ded565b925050602061319785828601612f34565b9150509250929050565b600080604083850312156131b457600080fd5b60006131c285828601612ded565b92505060206131d385828601612f9d565b9150509250929050565b600080604083850312156131f057600080fd5b600083013567ffffffffffffffff81111561320a57600080fd5b61321685828601612e4c565b925050602083013567ffffffffffffffff81111561323357600080fd5b61323f85828601612f0a565b9150509250929050565b6000806020838503121561325c57600080fd5b600083013567ffffffffffffffff81111561327657600080fd5b61328285828601612ec0565b92509250509250929050565b600080600080604085870312156132a457600080fd5b600085013567ffffffffffffffff8111156132be57600080fd5b6132ca87828801612ec0565b9450945050602085013567ffffffffffffffff8111156132e957600080fd5b6132f587828801612e76565b925092505092959194509250565b6000806000806000806000806080898b03121561331f57600080fd5b600089013567ffffffffffffffff81111561333957600080fd5b6133458b828c01612ec0565b9850985050602089013567ffffffffffffffff81111561336457600080fd5b6133708b828c01612e76565b9650965050604089013567ffffffffffffffff81111561338f57600080fd5b61339b8b828c01612e02565b9450945050606089013567ffffffffffffffff8111156133ba57600080fd5b6133c68b828c01612e76565b92509250509295985092959890939650565b600080600080604085870312156133ee57600080fd5b600085013567ffffffffffffffff81111561340857600080fd5b61341487828801612ec0565b9450945050602085013567ffffffffffffffff81111561343357600080fd5b61343f87828801612ec0565b925092505092959194509250565b60006020828403121561345f57600080fd5b600061346d84828501612f49565b91505092915050565b60006020828403121561348857600080fd5b600061349684828501612f5e565b91505092915050565b6000602082840312156134b157600080fd5b60006134bf84828501612f9d565b91505092915050565b600080604083850312156134db57600080fd5b60006134e985828601612f9d565b92505060206134fa85828601612ded565b9150509250929050565b60008060008060006060868803121561351c57600080fd5b600061352a88828901612f9d565b955050602086013567ffffffffffffffff81111561354757600080fd5b61355388828901612e02565b9450945050604086013567ffffffffffffffff81111561357257600080fd5b61357e88828901612ec0565b92509250509295509295909350565b600080604083850312156135a057600080fd5b60006135ae85828601612f9d565b92505060206135bf85828601612f9d565b9150509250929050565b60006135d58383613968565b60208301905092915050565b6135ea81613ff0565b82525050565b60006135fb82613f05565b6136058185613f33565b935061361083613ef5565b8060005b8381101561364157815161362888826135c9565b975061363383613f26565b925050600181019050613614565b5085935050505092915050565b61365781614002565b82525050565b600061366882613f10565b6136728185613f44565b9350613682818560208601614073565b61368b81614201565b840191505092915050565b60006136a182613f1b565b6136ab8185613f55565b93506136bb818560208601614073565b6136c481614201565b840191505092915050565b60006136dc603483613f55565b91506136e78261421f565b604082019050919050565b60006136ff602883613f55565b915061370a8261426e565b604082019050919050565b6000613722602b83613f55565b915061372d826142bd565b604082019050919050565b6000613745602683613f55565b91506137508261430c565b604082019050919050565b6000613768602983613f55565b91506137738261435b565b604082019050919050565b600061378b601583613f55565b9150613796826143aa565b602082019050919050565b60006137ae602583613f55565b91506137b9826143d3565b604082019050919050565b60006137d1603283613f55565b91506137dc82614422565b604082019050919050565b60006137f4602a83613f55565b91506137ff82614471565b604082019050919050565b6000613817602083613f55565b9150613822826144c0565b602082019050919050565b600061383a602883613f55565b9150613845826144e9565b604082019050919050565b600061385d601283613f55565b915061386882614538565b602082019050919050565b6000613880601e83613f55565b915061388b82614561565b602082019050919050565b60006138a3601483613f55565b91506138ae8261458a565b602082019050919050565b60006138c6601483613f55565b91506138d1826145b3565b602082019050919050565b60006138e9602983613f55565b91506138f4826145dc565b604082019050919050565b600061390c602983613f55565b91506139178261462b565b604082019050919050565b600061392f602883613f55565b915061393a8261467a565b604082019050919050565b6000613952602183613f55565b915061395d826146c9565b604082019050919050565b6139718161405a565b82525050565b6139808161405a565b82525050565b600060208201905061399b60008301846135e1565b92915050565b600060a0820190506139b660008301886135e1565b6139c360208301876135e1565b81810360408301526139d581866135f0565b905081810360608301526139e981856135f0565b905081810360808301526139fd818461365d565b90509695505050505050565b600060a082019050613a1e60008301886135e1565b613a2b60208301876135e1565b613a386040830186613977565b613a456060830185613977565b8181036080830152613a57818461365d565b90509695505050505050565b60006020820190508181036000830152613a7d81846135f0565b905092915050565b60006040820190508181036000830152613a9f81856135f0565b90508181036020830152613ab381846135f0565b90509392505050565b6000602082019050613ad1600083018461364e565b92915050565b60006020820190508181036000830152613af18184613696565b905092915050565b60006080820190508181036000830152613b138187613696565b9050613b2260208301866135e1565b8181036040830152613b348185613696565b9050613b436060830184613977565b95945050505050565b60006020820190508181036000830152613b65816136cf565b9050919050565b60006020820190508181036000830152613b85816136f2565b9050919050565b60006020820190508181036000830152613ba581613715565b9050919050565b60006020820190508181036000830152613bc581613738565b9050919050565b60006020820190508181036000830152613be58161375b565b9050919050565b60006020820190508181036000830152613c058161377e565b9050919050565b60006020820190508181036000830152613c25816137a1565b9050919050565b60006020820190508181036000830152613c45816137c4565b9050919050565b60006020820190508181036000830152613c65816137e7565b9050919050565b60006020820190508181036000830152613c858161380a565b9050919050565b60006020820190508181036000830152613ca58161382d565b9050919050565b60006020820190508181036000830152613cc581613850565b9050919050565b60006020820190508181036000830152613ce581613873565b9050919050565b60006020820190508181036000830152613d0581613896565b9050919050565b60006020820190508181036000830152613d25816138b9565b9050919050565b60006020820190508181036000830152613d45816138dc565b9050919050565b60006020820190508181036000830152613d65816138ff565b9050919050565b60006020820190508181036000830152613d8581613922565b9050919050565b60006020820190508181036000830152613da581613945565b9050919050565b6000602082019050613dc16000830184613977565b92915050565b6000604082019050613ddc6000830185613977565b613de96020830184613977565b9392505050565b60008083356001602003843603038112613e0957600080fd5b80840192508235915067ffffffffffffffff821115613e2757600080fd5b602083019250600182023603831315613e3f57600080fd5b509250929050565b6000613e51613e62565b9050613e5d82826140d8565b919050565b6000604051905090565b600067ffffffffffffffff821115613e8757613e866141b0565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613eb357613eb26141b0565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613edf57613ede6141b0565b5b613ee882614201565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613f718261405a565b9150613f7c8361405a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fb157613fb0614152565b5b828201905092915050565b6000613fc78261405a565b9150613fd28361405a565b925082821015613fe557613fe4614152565b5b828203905092915050565b6000613ffb8261403a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614091578082015181840152602081019050614076565b838111156140a0576000848401525b50505050565b600060028204905060018216806140be57607f821691505b602082108114156140d2576140d1614181565b5b50919050565b6140e182614201565b810181811067ffffffffffffffff82111715614100576140ff6141b0565b5b80604052505050565b60006141148261405a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561414757614146614152565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156141fe5760046000803e6141fb600051614212565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656c696769626c6520746f20636c61696d0000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b7f436c61696d2074696d65206973206f7665720000000000000000000000000000600082015250565b7f436c61696d2074696d6520686173206e6f742073746172746564207965740000600082015250565b7f4e6f20746f6b656e20666f722073756368206964000000000000000000000000600082015250565b7f6c656e6774682064617461206e6f742073616d65000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015614728576147ab565b614730613e62565b60043d036004823e80513d602482011167ffffffffffffffff821117156147585750506147ab565b808201805167ffffffffffffffff81111561477657505050506147ab565b80602083010160043d0385018111156147935750505050506147ab565b6147a2826020018501866140d8565b82955050505050505b90565b6147b781613ff0565b81146147c257600080fd5b50565b6147ce81614002565b81146147d957600080fd5b50565b6147e58161400e565b81146147f057600080fd5b50565b6147fc8161405a565b811461480757600080fd5b5056fea264697066735822122091bdc5d25aa6bd1c1a8a5738f9b32ed3248178486a5b780e5ed05cd234e4666164736f6c63430008040033

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.