ETH Price: $2,522.74 (+0.30%)

Toshimeta Pass ()
 

Overview

TokenID

1

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
ToshimetaPasses

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : ToshimetaPasses.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract ToshimetaPasses is ERC1155Supply, Ownable, ReentrancyGuard {
    using Strings for uint256;
    uint256 public constant GenesisPass = 1;
    uint256 public constant ToshimetaPass = 2;
    bytes32 public genesisMerkleRoot;
    bytes32 public toshimetaMerkleRoot;

    bool public paused = false;
    bool public publicSaleActive = false;
    bool public privateSaleActive = false;
    string private baseURI;

    uint256 public genesisPassCost = 0.08 ether;
    uint256 public genesisSupply = 1111;
    uint256 public genesisMintAmount = 1;
    uint256 public genesisMintPerAddr = 1;

    uint256 public toshimetaPassCost = 0.05 ether;
    uint256 public toshimetaSupply = 2500;
    uint256 public toshimetaMintAmount = 1;
    uint256 public toshimetaMintPerAddr = 1;

    string public name = "Toshimeta Pass";
    string public contractURIstr = "";

    mapping(address => uint256) public genesisAddressMintedBalance;
    mapping(address => uint256) public toshimetaAddressMintedBalance;
    mapping (address => uint8) public genesisPresaleAddresses;
    mapping (address => uint8) public toshimetaPresaleAddresses;

    constructor() ERC1155("https://gateway.pinata.cloud/ipfs/QmNTqVmCTco9GeZxTwohnPxUJ2NdhaNWvkMZssbSHdxuqr/{id}.json") {}

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function mintGenesisPass(bytes32[] calldata _merkleproof, uint256 _mintAmount) public payable callerIsUser{
        require(!paused, "the contract is paused");
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(totalSupply(GenesisPass) + _mintAmount <= genesisSupply, "reached max supply");
        require(_mintAmount <= genesisMintAmount, "max mint amount per session exceeded");
        require(msg.value >= genesisPassCost * _mintAmount, "insufficient funds");
        if (!publicSaleActive) {
            require(privateSaleActive, "the private sale is not active");
            uint256 ownerMintedCount = genesisAddressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= genesisMintPerAddr, "max NFT per address exceeded");
            require(verifyGenesisWhitelist(_merkleproof,msg.sender), "user is not on genesis pass whitelist");
            _mint(msg.sender, GenesisPass, _mintAmount, "");
        } else {
            require(publicSaleActive, "the public sale is not active");
            _mint(msg.sender, GenesisPass, _mintAmount, "");   
        }
        genesisAddressMintedBalance[msg.sender] = genesisAddressMintedBalance[msg.sender] + _mintAmount;
    }

    function mintToshimetaPass(bytes32[] calldata _merkleproof, uint256 _mintAmount) public payable callerIsUser{
        require(!paused, "the contract is paused");
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(totalSupply(ToshimetaPass) + _mintAmount <= toshimetaSupply, "reached max supply");
        require(_mintAmount <= toshimetaMintAmount, "max mint amount per session exceeded");
        require(msg.value >= toshimetaPassCost * _mintAmount, "insufficient funds");
        if (!publicSaleActive) {
            require(privateSaleActive, "the private sale is not active");
            uint256 ownerMintedCount = toshimetaAddressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= toshimetaMintPerAddr, "max NFT per address exceeded");
            require(verifyToshimetaWhitelist(_merkleproof,msg.sender), "user is not on toshimeta pass whitelist");
            _mint(msg.sender, ToshimetaPass, _mintAmount, "");
        } else {
            require(publicSaleActive, "the public sale is not active");
            _mint(msg.sender, ToshimetaPass, _mintAmount, "");
        }
        toshimetaAddressMintedBalance[msg.sender] = toshimetaAddressMintedBalance[msg.sender] + _mintAmount;
    }

    function ownerMintToshimetaPass(uint256 _mintAmount) external onlyOwner{
        require(!paused, "the contract is paused");
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(totalSupply(ToshimetaPass) + _mintAmount <= toshimetaSupply, "reached max supply");
        _mint(msg.sender, ToshimetaPass, _mintAmount, "");
    }

    function ownerMintGenesisPass(uint256 _mintAmount) external onlyOwner{
        require(!paused, "the contract is paused");
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(totalSupply(GenesisPass) + _mintAmount <= genesisSupply, "reached max supply");
        _mint(msg.sender, GenesisPass, _mintAmount, "");
    }

    function verifyGenesisWhitelist(bytes32[] calldata _merkleproof, address _address) public view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(_address));
        return MerkleProof.verify(_merkleproof,genesisMerkleRoot,leaf);
    }

    function verifyToshimetaWhitelist(bytes32[] calldata _merkleproof, address _address) public view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(_address));
        return MerkleProof.verify(_merkleproof,toshimetaMerkleRoot,leaf);
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setPublicSaleState(bool _state) public onlyOwner {
        publicSaleActive = _state;
    }

    function setPrivateSaleState(bool _state) public onlyOwner {
        privateSaleActive = _state;
    }

    function setGenesisMerkleRootHash(bytes32 _rootHash) public onlyOwner {
        genesisMerkleRoot = _rootHash;
    }

    function setToshimetaMerkleRootHash(bytes32 _rootHash) public onlyOwner {
        toshimetaMerkleRoot = _rootHash;
    }

    function setURI(string memory newuri) external onlyOwner{
        _setURI(newuri);
    }

    function setName(string memory _name) public onlyOwner {
        name = _name;
    }

    function getName() public view returns (string memory) {
       return name;
    }


    address addr1 = 0xdC7dBFd6ab4BF3215b01806ae9edDC7447016793;
    address addr2 = 0xB9aC442e606809459d7E80C75c5eaBE5eaC3b88b;
    address addr3 = 0x0cAd323FB84Eb9D7BA2e42Cb4Afaf09157D72A16;
    address addr4 = 0x6352E129FdD4acCd2B1DE6B7bb13142800Ad6CE1;
    address addr5 = 0xB9b2dF03F48d86F9d02c00FB56DaDb42962d784D;
    
    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        require(balance > 0, "contract balance is 0");
        payable(addr1).transfer((balance * 190) / 1000);
        payable(addr2).transfer((balance * 190) / 1000);
        payable(addr3).transfer((balance * 190) / 1000);
        payable(addr4).transfer((balance * 190) / 1000);
        payable(addr5).transfer((balance * 190) / 1000);
        payable(msg.sender).transfer((balance * 50) / 1000);
    }
}

File 2 of 14 : 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 14 : 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 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 5 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 6 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 14 : 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 8 of 14 : 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 9 of 14 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

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

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

File 10 of 14 : 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 11 of 14 : 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 12 of 14 : 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 13 of 14 : 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 14 of 14 : 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":[],"name":"GenesisPass","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ToshimetaPass","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURIstr","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"","type":"address"}],"name":"genesisAddressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genesisMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genesisMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genesisMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genesisPassCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"genesisPresaleAddresses","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genesisSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"bytes32[]","name":"_merkleproof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintGenesisPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleproof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintToshimetaPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMintGenesisPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMintToshimetaPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"setGenesisMerkleRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPrivateSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"setToshimetaMerkleRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"toshimetaAddressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toshimetaMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toshimetaMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toshimetaMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toshimetaPassCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"toshimetaPresaleAddresses","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toshimetaSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleproof","type":"bytes32[]"},{"internalType":"address","name":"_address","type":"address"}],"name":"verifyGenesisWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleproof","type":"bytes32[]"},{"internalType":"address","name":"_address","type":"address"}],"name":"verifyToshimetaWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff0219169083151502179055506000600860026101000a81548160ff02191690831515021790555067011c37937e080000600a55610457600b556001600c556001600d5566b1a2bc2ec50000600e556109c4600f55600160105560016011556040518060400160405280600e81526020017f546f7368696d657461205061737300000000000000000000000000000000000081525060129080519060200190620000d9929190620003fd565b50604051806020016040528060008152506013908051906020019062000101929190620003fd565b5073dc7dbfd6ab4bf3215b01806ae9eddc7447016793601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b9ac442e606809459d7e80c75c5eabe5eac3b88b601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730cad323fb84eb9d7ba2e42cb4afaf09157d72a16601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736352e129fdd4accd2b1de6b7bb13142800ad6ce1601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b9b2df03f48d86f9d02c00fb56dadb42962d784d601c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620002b857600080fd5b506040518060800160405280605a81526020016200610b605a9139620002e4816200031360201b60201c565b5062000305620002f96200032f60201b60201c565b6200033760201b60201c565b600160058190555062000512565b80600290805190602001906200032b929190620003fd565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200040b90620004ad565b90600052602060002090601f0160209004810192826200042f57600085556200047b565b82601f106200044a57805160ff19168380011785556200047b565b828001600101855582156200047b579182015b828111156200047a5782518255916020019190600101906200045d565b5b5090506200048a91906200048e565b5090565b5b80821115620004a95760008160009055506001016200048f565b5090565b60006002820490506001821680620004c657607f821691505b60208210811415620004dd57620004dc620004e3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615be980620005226000396000f3fe6080604052600436106102ac5760003560e01c8063662111ae11610175578063a4b5d378116100dc578063cedde7fe11610095578063eb0fd03d1161006f578063eb0fd03d14610ad0578063f242432a14610af9578063f2fde38b14610b22578063f863e36614610b4b576102ac565b8063cedde7fe14610a2b578063d821d68414610a56578063e985e9c514610a93576102ac565b8063a4b5d37814610909578063b6dc23eb14610946578063b9545fde1461096f578063bc8893b41461099a578063bd85b039146109c5578063c47f002714610a02576102ac565b80638da5cb5b1161012e5780638da5cb5b1461080f5780639293a5c71461083a5780639775a4fb146108635780639fe88d6e1461088c578063a22cb465146108b5578063a3ac6e5d146108de576102ac565b8063662111ae14610721578063715018a61461074c57806380a952f0146107635780638269533b1461078e5780638af17ac2146107b95780638c5c1dac146107e4576102ac565b80631aabab15116102195780634e1273f4116101d25780634e1273f4146105eb5780634f558e791461062857806353f90b9d146106655780635b78e492146106905780635c975abb146106b957806364f7232c146106e4576102ac565b80631aabab151461051d5780631d86fd65146105395780632a237bb6146105555780632eb2c2d6146105805780633ccfd60b146105a95780634bbf179b146105c0576102ac565b80630612d3641161026b5780630612d364146103f757806306fdde03146104225780630e89341c1461044d578063103fcfac1461048a578063163ebb08146104b557806317d7de7c146104f2576102ac565b806213f0bf146102b1578062fdd58e146102ee57806301ffc9a71461032b57806302329a291461036857806302fe5305146103915780630484c974146103ba575b600080fd5b3480156102bd57600080fd5b506102d860048036038101906102d39190614059565b610b76565b6040516102e59190614ec1565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190614248565b610b8e565b6040516103229190614ec1565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906143f2565b610c57565b60405161035f9190614b09565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a91906143a0565b610d39565b005b34801561039d57600080fd5b506103b860048036038101906103b39190614444565b610dd2565b005b3480156103c657600080fd5b506103e160048036038101906103dc91906142f0565b610e5a565b6040516103ee9190614b09565b60405180910390f35b34801561040357600080fd5b5061040c610ede565b6040516104199190614b3f565b60405180910390f35b34801561042e57600080fd5b50610437610f6c565b6040516104449190614b3f565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190614485565b610ffa565b6040516104819190614b3f565b60405180910390f35b34801561049657600080fd5b5061049f61108e565b6040516104ac9190614ec1565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190614059565b611094565b6040516104e99190614f05565b60405180910390f35b3480156104fe57600080fd5b506105076110b4565b6040516105149190614b3f565b60405180910390f35b61053760048036038101906105329190614348565b611146565b005b610553600480360381019061054e9190614348565b611597565b005b34801561056157600080fd5b5061056a6119e8565b6040516105779190614b09565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a291906140be565b6119fb565b005b3480156105b557600080fd5b506105be611a9c565b005b3480156105cc57600080fd5b506105d5611ea3565b6040516105e29190614ec1565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190614284565b611ea9565b60405161061f9190614ab0565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190614485565b61205a565b60405161065c9190614b09565b60405180910390f35b34801561067157600080fd5b5061067a61206e565b6040516106879190614ec1565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190614485565b612074565b005b3480156106c557600080fd5b506106ce6121fb565b6040516106db9190614b09565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190614059565b61220e565b6040516107189190614f05565b60405180910390f35b34801561072d57600080fd5b5061073661222e565b6040516107439190614b24565b60405180910390f35b34801561075857600080fd5b50610761612234565b005b34801561076f57600080fd5b506107786122bc565b6040516107859190614b24565b60405180910390f35b34801561079a57600080fd5b506107a36122c2565b6040516107b09190614ec1565b60405180910390f35b3480156107c557600080fd5b506107ce6122c8565b6040516107db9190614ec1565b60405180910390f35b3480156107f057600080fd5b506107f96122ce565b6040516108069190614ec1565b60405180910390f35b34801561081b57600080fd5b506108246122d4565b60405161083191906149d3565b60405180910390f35b34801561084657600080fd5b50610861600480360381019061085c91906143a0565b6122fe565b005b34801561086f57600080fd5b5061088a600480360381019061088591906143c9565b612397565b005b34801561089857600080fd5b506108b360048036038101906108ae9190614485565b61241d565b005b3480156108c157600080fd5b506108dc60048036038101906108d7919061420c565b6125a4565b005b3480156108ea57600080fd5b506108f36125ba565b6040516109009190614ec1565b60405180910390f35b34801561091557600080fd5b50610930600480360381019061092b9190614059565b6125bf565b60405161093d9190614ec1565b60405180910390f35b34801561095257600080fd5b5061096d600480360381019061096891906143c9565b6125d7565b005b34801561097b57600080fd5b5061098461265d565b6040516109919190614ec1565b60405180910390f35b3480156109a657600080fd5b506109af612663565b6040516109bc9190614b09565b60405180910390f35b3480156109d157600080fd5b506109ec60048036038101906109e79190614485565b612676565b6040516109f99190614ec1565b60405180910390f35b348015610a0e57600080fd5b50610a296004803603810190610a249190614444565b612693565b005b348015610a3757600080fd5b50610a40612729565b604051610a4d9190614ec1565b60405180910390f35b348015610a6257600080fd5b50610a7d6004803603810190610a7891906142f0565b61272f565b604051610a8a9190614b09565b60405180910390f35b348015610a9f57600080fd5b50610aba6004803603810190610ab59190614082565b6127b3565b604051610ac79190614b09565b60405180910390f35b348015610adc57600080fd5b50610af76004803603810190610af291906143a0565b612847565b005b348015610b0557600080fd5b50610b206004803603810190610b1b919061417d565b6128e0565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190614059565b612981565b005b348015610b5757600080fd5b50610b60612a79565b604051610b6d9190614ec1565b60405180910390f35b60156020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690614bc1565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d2257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d325750610d3182612a7e565b5b9050919050565b610d41612ae8565b73ffffffffffffffffffffffffffffffffffffffff16610d5f6122d4565b73ffffffffffffffffffffffffffffffffffffffff1614610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac90614d41565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b610dda612ae8565b73ffffffffffffffffffffffffffffffffffffffff16610df86122d4565b73ffffffffffffffffffffffffffffffffffffffff1614610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590614d41565b60405180910390fd5b610e5781612af0565b50565b60008082604051602001610e6e91906149b8565b604051602081830303815290604052805190602001209050610ed4858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060065483612b0a565b9150509392505050565b60138054610eeb9061521e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f179061521e565b8015610f645780601f10610f3957610100808354040283529160200191610f64565b820191906000526020600020905b815481529060010190602001808311610f4757829003601f168201915b505050505081565b60128054610f799061521e565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa59061521e565b8015610ff25780601f10610fc757610100808354040283529160200191610ff2565b820191906000526020600020905b815481529060010190602001808311610fd557829003601f168201915b505050505081565b6060600280546110099061521e565b80601f01602080910402602001604051908101604052809291908181526020018280546110359061521e565b80156110825780601f1061105757610100808354040283529160200191611082565b820191906000526020600020905b81548152906001019060200180831161106557829003601f168201915b50505050509050919050565b600a5481565b60176020528060005260406000206000915054906101000a900460ff1681565b6060601280546110c39061521e565b80601f01602080910402602001604051908101604052809291908181526020018280546110ef9061521e565b801561113c5780601f106111115761010080835404028352916020019161113c565b820191906000526020600020905b81548152906001019060200180831161111f57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90614c81565b60405180910390fd5b600860009054906101000a900460ff1615611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90614d61565b60405180910390fd5b60008111611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90614e81565b60405180910390fd5b600f54816112556002612676565b61125f9190615070565b11156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790614d01565b60405180910390fd5b6010548111156112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc90614ce1565b60405180910390fd5b80600e546112f391906150f7565b341015611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90614da1565b60405180910390fd5b600860019054906101000a900460ff1661149857600860029054906101000a900460ff16611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90614ea1565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060115482826113eb9190615070565b111561142c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142390614c61565b60405180910390fd5b61143784843361272f565b611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90614c21565b60405180910390fd5b6114923360028460405180602001604052806000815250612b21565b50611504565b600860019054906101000a900460ff166114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de90614e01565b60405180910390fd5b6115033360028360405180602001604052806000815250612b21565b5b80601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461154f9190615070565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90614c81565b60405180910390fd5b600860009054906101000a900460ff1615611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90614d61565b60405180910390fd5b60008111611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f90614e81565b60405180910390fd5b600b54816116a66001612676565b6116b09190615070565b11156116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e890614d01565b60405180910390fd5b600c54811115611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d90614ce1565b60405180910390fd5b80600a5461174491906150f7565b341015611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90614da1565b60405180910390fd5b600860019054906101000a900460ff166118e957600860029054906101000a900460ff166117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e090614ea1565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d54828261183c9190615070565b111561187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490614c61565b60405180910390fd5b611888848433610e5a565b6118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90614b61565b60405180910390fd5b6118e33360018460405180602001604052806000815250612b21565b50611955565b600860019054906101000a900460ff16611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90614e01565b60405180910390fd5b6119543360018360405180602001604052806000815250612b21565b5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119a09190615070565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b600860029054906101000a900460ff1681565b611a03612ae8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611a495750611a4885611a43612ae8565b6127b3565b5b611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f90614cc1565b60405180910390fd5b611a958585858585612cd2565b5050505050565b611aa4612ae8565b73ffffffffffffffffffffffffffffffffffffffff16611ac26122d4565b73ffffffffffffffffffffffffffffffffffffffff1614611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f90614d41565b60405180910390fd5b60026005541415611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5590614e61565b60405180910390fd5b6002600581905550600047905060008111611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590614c01565b60405180910390fd5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860be84611bfa91906150f7565b611c0491906150c6565b9081150290604051600060405180830381858888f19350505050158015611c2f573d6000803e3d6000fd5b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860be84611c7c91906150f7565b611c8691906150c6565b9081150290604051600060405180830381858888f19350505050158015611cb1573d6000803e3d6000fd5b50601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860be84611cfe91906150f7565b611d0891906150c6565b9081150290604051600060405180830381858888f19350505050158015611d33573d6000803e3d6000fd5b50601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860be84611d8091906150f7565b611d8a91906150c6565b9081150290604051600060405180830381858888f19350505050158015611db5573d6000803e3d6000fd5b50601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860be84611e0291906150f7565b611e0c91906150c6565b9081150290604051600060405180830381858888f19350505050158015611e37573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc6103e8603284611e6291906150f7565b611e6c91906150c6565b9081150290604051600060405180830381858888f19350505050158015611e97573d6000803e3d6000fd5b50506001600581905550565b600b5481565b60608151835114611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee690614de1565b60405180910390fd5b6000835167ffffffffffffffff811115611f32577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611f605781602001602082028036833780820191505090505b50905060005b845181101561204f57611ff9858281518110611fab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110611fec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610b8e565b828281518110612032577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061204890615281565b9050611f66565b508091505092915050565b60008061206683612676565b119050919050565b60115481565b61207c612ae8565b73ffffffffffffffffffffffffffffffffffffffff1661209a6122d4565b73ffffffffffffffffffffffffffffffffffffffff16146120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790614d41565b60405180910390fd5b600860009054906101000a900460ff1615612140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213790614d61565b60405180910390fd5b60008111612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a90614e81565b60405180910390fd5b600f54816121916002612676565b61219b9190615070565b11156121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d390614d01565b60405180910390fd5b6121f83360028360405180602001604052806000815250612b21565b50565b600860009054906101000a900460ff1681565b60166020528060005260406000206000915054906101000a900460ff1681565b60065481565b61223c612ae8565b73ffffffffffffffffffffffffffffffffffffffff1661225a6122d4565b73ffffffffffffffffffffffffffffffffffffffff16146122b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a790614d41565b60405180910390fd5b6122ba6000613040565b565b60075481565b600d5481565b600f5481565b600e5481565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612306612ae8565b73ffffffffffffffffffffffffffffffffffffffff166123246122d4565b73ffffffffffffffffffffffffffffffffffffffff161461237a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237190614d41565b60405180910390fd5b80600860016101000a81548160ff02191690831515021790555050565b61239f612ae8565b73ffffffffffffffffffffffffffffffffffffffff166123bd6122d4565b73ffffffffffffffffffffffffffffffffffffffff1614612413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240a90614d41565b60405180910390fd5b8060068190555050565b612425612ae8565b73ffffffffffffffffffffffffffffffffffffffff166124436122d4565b73ffffffffffffffffffffffffffffffffffffffff1614612499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249090614d41565b60405180910390fd5b600860009054906101000a900460ff16156124e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e090614d61565b60405180910390fd5b6000811161252c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252390614e81565b60405180910390fd5b600b548161253a6001612676565b6125449190615070565b1115612585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257c90614d01565b60405180910390fd5b6125a13360018360405180602001604052806000815250612b21565b50565b6125b66125af612ae8565b8383613106565b5050565b600281565b60146020528060005260406000206000915090505481565b6125df612ae8565b73ffffffffffffffffffffffffffffffffffffffff166125fd6122d4565b73ffffffffffffffffffffffffffffffffffffffff1614612653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264a90614d41565b60405180910390fd5b8060078190555050565b60105481565b600860019054906101000a900460ff1681565b600060036000838152602001908152602001600020549050919050565b61269b612ae8565b73ffffffffffffffffffffffffffffffffffffffff166126b96122d4565b73ffffffffffffffffffffffffffffffffffffffff161461270f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270690614d41565b60405180910390fd5b8060129080519060200190612725929190613cf2565b5050565b600c5481565b6000808260405160200161274391906149b8565b6040516020818303038152906040528051906020012090506127a9858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060075483612b0a565b9150509392505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61284f612ae8565b73ffffffffffffffffffffffffffffffffffffffff1661286d6122d4565b73ffffffffffffffffffffffffffffffffffffffff16146128c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ba90614d41565b60405180910390fd5b80600860026101000a81548160ff02191690831515021790555050565b6128e8612ae8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061292e575061292d85612928612ae8565b6127b3565b5b61296d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296490614c41565b60405180910390fd5b61297a8585858585613273565b5050505050565b612989612ae8565b73ffffffffffffffffffffffffffffffffffffffff166129a76122d4565b73ffffffffffffffffffffffffffffffffffffffff16146129fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f490614d41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6490614be1565b60405180910390fd5b612a7681613040565b50565b600181565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029080519060200190612b06929190613cf2565b5050565b600082612b17858461350f565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8890614e41565b60405180910390fd5b6000612b9b612ae8565b90506000612ba8856135aa565b90506000612bb5856135aa565b9050612bc683600089858589613670565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c259190615070565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612ca3929190614edc565b60405180910390a4612cba836000898585896138da565b612cc9836000898989896138e2565b50505050505050565b8151835114612d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0d90614e21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7d90614ca1565b60405180910390fd5b6000612d90612ae8565b9050612da0818787878787613670565b60005b8451811015612f9d576000858281518110612de7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110612e2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec490614d21565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f829190615070565b9250508190555050505080612f9690615281565b9050612da3565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051613014929190614ad2565b60405180910390a461302a8187878787876138da565b613038818787878787613ac9565b505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316c90614dc1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516132669190614b09565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132da90614ca1565b60405180910390fd5b60006132ed612ae8565b905060006132fa856135aa565b90506000613307856135aa565b9050613317838989858589613670565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156133ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a590614d21565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134639190615070565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516134e0929190614edc565b60405180910390a46134f6848a8a86868a6138da565b613504848a8a8a8a8a6138e2565b505050505050505050565b60008082905060005b845181101561359f57600085828151811061355c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161357e576135778382613cb0565b925061358b565b6135888184613cb0565b92505b50808061359790615281565b915050613518565b508091505092915050565b60606000600167ffffffffffffffff8111156135ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561361d5781602001602082028036833780820191505090505b509050828160008151811061365b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b61367e868686868686613cc7565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561377c5760005b835181101561377a578281815181106136f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516003600086848151811061373d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008282546137629190615070565b925050819055508061377390615281565b90506136b6565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156138d25760005b83518110156138d05760008482815181106137f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600084838151811061383d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600060036000848152602001908152602001600020549050818110156138a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389990614d81565b60405180910390fd5b8181036003600085815260200190815260200160002081905550505050806138c990615281565b90506137b4565b505b505050505050565b505050505050565b6139018473ffffffffffffffffffffffffffffffffffffffff16613ccf565b15613ac1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613947959493929190614a56565b602060405180830381600087803b15801561396157600080fd5b505af192505050801561399257506040513d601f19601f8201168201806040525081019061398f919061441b565b60015b613a385761399e6153aa565b806308c379a014156139fb57506139b3615aaa565b806139be57506139fd565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139f29190614b3f565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2f90614b81565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab690614ba1565b60405180910390fd5b505b505050505050565b613ae88473ffffffffffffffffffffffffffffffffffffffff16613ccf565b15613ca8578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401613b2e9594939291906149ee565b602060405180830381600087803b158015613b4857600080fd5b505af1925050508015613b7957506040513d601f19601f82011682018060405250810190613b76919061441b565b60015b613c1f57613b856153aa565b806308c379a01415613be25750613b9a615aaa565b80613ba55750613be4565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bd99190614b3f565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c1690614b81565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c9d90614ba1565b60405180910390fd5b505b505050505050565b600082600052816020526040600020905092915050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613cfe9061521e565b90600052602060002090601f016020900481019282613d205760008555613d67565b82601f10613d3957805160ff1916838001178555613d67565b82800160010185558215613d67579182015b82811115613d66578251825591602001919060010190613d4b565b5b509050613d749190613d78565b5090565b5b80821115613d91576000816000905550600101613d79565b5090565b6000613da8613da384614f45565b614f20565b90508083825260208201905082856020860282011115613dc757600080fd5b60005b85811015613df75781613ddd8882613ee9565b845260208401935060208301925050600181019050613dca565b5050509392505050565b6000613e14613e0f84614f71565b614f20565b90508083825260208201905082856020860282011115613e3357600080fd5b60005b85811015613e635781613e498882614044565b845260208401935060208301925050600181019050613e36565b5050509392505050565b6000613e80613e7b84614f9d565b614f20565b905082815260208101848484011115613e9857600080fd5b613ea38482856151dc565b509392505050565b6000613ebe613eb984614fce565b614f20565b905082815260208101848484011115613ed657600080fd5b613ee18482856151dc565b509392505050565b600081359050613ef881615b40565b92915050565b600082601f830112613f0f57600080fd5b8135613f1f848260208601613d95565b91505092915050565b60008083601f840112613f3a57600080fd5b8235905067ffffffffffffffff811115613f5357600080fd5b602083019150836020820283011115613f6b57600080fd5b9250929050565b600082601f830112613f8357600080fd5b8135613f93848260208601613e01565b91505092915050565b600081359050613fab81615b57565b92915050565b600081359050613fc081615b6e565b92915050565b600081359050613fd581615b85565b92915050565b600081519050613fea81615b85565b92915050565b600082601f83011261400157600080fd5b8135614011848260208601613e6d565b91505092915050565b600082601f83011261402b57600080fd5b813561403b848260208601613eab565b91505092915050565b60008135905061405381615b9c565b92915050565b60006020828403121561406b57600080fd5b600061407984828501613ee9565b91505092915050565b6000806040838503121561409557600080fd5b60006140a385828601613ee9565b92505060206140b485828601613ee9565b9150509250929050565b600080600080600060a086880312156140d657600080fd5b60006140e488828901613ee9565b95505060206140f588828901613ee9565b945050604086013567ffffffffffffffff81111561411257600080fd5b61411e88828901613f72565b935050606086013567ffffffffffffffff81111561413b57600080fd5b61414788828901613f72565b925050608086013567ffffffffffffffff81111561416457600080fd5b61417088828901613ff0565b9150509295509295909350565b600080600080600060a0868803121561419557600080fd5b60006141a388828901613ee9565b95505060206141b488828901613ee9565b94505060406141c588828901614044565b93505060606141d688828901614044565b925050608086013567ffffffffffffffff8111156141f357600080fd5b6141ff88828901613ff0565b9150509295509295909350565b6000806040838503121561421f57600080fd5b600061422d85828601613ee9565b925050602061423e85828601613f9c565b9150509250929050565b6000806040838503121561425b57600080fd5b600061426985828601613ee9565b925050602061427a85828601614044565b9150509250929050565b6000806040838503121561429757600080fd5b600083013567ffffffffffffffff8111156142b157600080fd5b6142bd85828601613efe565b925050602083013567ffffffffffffffff8111156142da57600080fd5b6142e685828601613f72565b9150509250929050565b60008060006040848603121561430557600080fd5b600084013567ffffffffffffffff81111561431f57600080fd5b61432b86828701613f28565b9350935050602061433e86828701613ee9565b9150509250925092565b60008060006040848603121561435d57600080fd5b600084013567ffffffffffffffff81111561437757600080fd5b61438386828701613f28565b9350935050602061439686828701614044565b9150509250925092565b6000602082840312156143b257600080fd5b60006143c084828501613f9c565b91505092915050565b6000602082840312156143db57600080fd5b60006143e984828501613fb1565b91505092915050565b60006020828403121561440457600080fd5b600061441284828501613fc6565b91505092915050565b60006020828403121561442d57600080fd5b600061443b84828501613fdb565b91505092915050565b60006020828403121561445657600080fd5b600082013567ffffffffffffffff81111561447057600080fd5b61447c8482850161401a565b91505092915050565b60006020828403121561449757600080fd5b60006144a584828501614044565b91505092915050565b60006144ba838361498b565b60208301905092915050565b6144cf81615151565b82525050565b6144e66144e182615151565b6152ca565b82525050565b60006144f78261500f565b614501818561503d565b935061450c83614fff565b8060005b8381101561453d57815161452488826144ae565b975061452f83615030565b925050600181019050614510565b5085935050505092915050565b61455381615163565b82525050565b6145628161516f565b82525050565b60006145738261501a565b61457d818561504e565b935061458d8185602086016151eb565b614596816153cc565b840191505092915050565b60006145ac82615025565b6145b6818561505f565b93506145c68185602086016151eb565b6145cf816153cc565b840191505092915050565b60006145e760258361505f565b91506145f2826153f7565b604082019050919050565b600061460a60348361505f565b915061461582615446565b604082019050919050565b600061462d60288361505f565b915061463882615495565b604082019050919050565b6000614650602b8361505f565b915061465b826154e4565b604082019050919050565b600061467360268361505f565b915061467e82615533565b604082019050919050565b600061469660158361505f565b91506146a182615582565b602082019050919050565b60006146b960278361505f565b91506146c4826155ab565b604082019050919050565b60006146dc60298361505f565b91506146e7826155fa565b604082019050919050565b60006146ff601c8361505f565b915061470a82615649565b602082019050919050565b6000614722601e8361505f565b915061472d82615672565b602082019050919050565b600061474560258361505f565b91506147508261569b565b604082019050919050565b600061476860328361505f565b9150614773826156ea565b604082019050919050565b600061478b60248361505f565b915061479682615739565b604082019050919050565b60006147ae60128361505f565b91506147b982615788565b602082019050919050565b60006147d1602a8361505f565b91506147dc826157b1565b604082019050919050565b60006147f460208361505f565b91506147ff82615800565b602082019050919050565b600061481760168361505f565b915061482282615829565b602082019050919050565b600061483a60288361505f565b915061484582615852565b604082019050919050565b600061485d60128361505f565b9150614868826158a1565b602082019050919050565b600061488060298361505f565b915061488b826158ca565b604082019050919050565b60006148a360298361505f565b91506148ae82615919565b604082019050919050565b60006148c6601d8361505f565b91506148d182615968565b602082019050919050565b60006148e960288361505f565b91506148f482615991565b604082019050919050565b600061490c60218361505f565b9150614917826159e0565b604082019050919050565b600061492f601f8361505f565b915061493a82615a2f565b602082019050919050565b6000614952601b8361505f565b915061495d82615a58565b602082019050919050565b6000614975601e8361505f565b915061498082615a81565b602082019050919050565b614994816151c5565b82525050565b6149a3816151c5565b82525050565b6149b2816151cf565b82525050565b60006149c482846144d5565b60148201915081905092915050565b60006020820190506149e860008301846144c6565b92915050565b600060a082019050614a0360008301886144c6565b614a1060208301876144c6565b8181036040830152614a2281866144ec565b90508181036060830152614a3681856144ec565b90508181036080830152614a4a8184614568565b90509695505050505050565b600060a082019050614a6b60008301886144c6565b614a7860208301876144c6565b614a85604083018661499a565b614a92606083018561499a565b8181036080830152614aa48184614568565b90509695505050505050565b60006020820190508181036000830152614aca81846144ec565b905092915050565b60006040820190508181036000830152614aec81856144ec565b90508181036020830152614b0081846144ec565b90509392505050565b6000602082019050614b1e600083018461454a565b92915050565b6000602082019050614b396000830184614559565b92915050565b60006020820190508181036000830152614b5981846145a1565b905092915050565b60006020820190508181036000830152614b7a816145da565b9050919050565b60006020820190508181036000830152614b9a816145fd565b9050919050565b60006020820190508181036000830152614bba81614620565b9050919050565b60006020820190508181036000830152614bda81614643565b9050919050565b60006020820190508181036000830152614bfa81614666565b9050919050565b60006020820190508181036000830152614c1a81614689565b9050919050565b60006020820190508181036000830152614c3a816146ac565b9050919050565b60006020820190508181036000830152614c5a816146cf565b9050919050565b60006020820190508181036000830152614c7a816146f2565b9050919050565b60006020820190508181036000830152614c9a81614715565b9050919050565b60006020820190508181036000830152614cba81614738565b9050919050565b60006020820190508181036000830152614cda8161475b565b9050919050565b60006020820190508181036000830152614cfa8161477e565b9050919050565b60006020820190508181036000830152614d1a816147a1565b9050919050565b60006020820190508181036000830152614d3a816147c4565b9050919050565b60006020820190508181036000830152614d5a816147e7565b9050919050565b60006020820190508181036000830152614d7a8161480a565b9050919050565b60006020820190508181036000830152614d9a8161482d565b9050919050565b60006020820190508181036000830152614dba81614850565b9050919050565b60006020820190508181036000830152614dda81614873565b9050919050565b60006020820190508181036000830152614dfa81614896565b9050919050565b60006020820190508181036000830152614e1a816148b9565b9050919050565b60006020820190508181036000830152614e3a816148dc565b9050919050565b60006020820190508181036000830152614e5a816148ff565b9050919050565b60006020820190508181036000830152614e7a81614922565b9050919050565b60006020820190508181036000830152614e9a81614945565b9050919050565b60006020820190508181036000830152614eba81614968565b9050919050565b6000602082019050614ed6600083018461499a565b92915050565b6000604082019050614ef1600083018561499a565b614efe602083018461499a565b9392505050565b6000602082019050614f1a60008301846149a9565b92915050565b6000614f2a614f3b565b9050614f368282615250565b919050565b6000604051905090565b600067ffffffffffffffff821115614f6057614f5f61537b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f8c57614f8b61537b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614fb857614fb761537b565b5b614fc1826153cc565b9050602081019050919050565b600067ffffffffffffffff821115614fe957614fe861537b565b5b614ff2826153cc565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061507b826151c5565b9150615086836151c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150bb576150ba6152ee565b5b828201905092915050565b60006150d1826151c5565b91506150dc836151c5565b9250826150ec576150eb61531d565b5b828204905092915050565b6000615102826151c5565b915061510d836151c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615146576151456152ee565b5b828202905092915050565b600061515c826151a5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156152095780820151818401526020810190506151ee565b83811115615218576000848401525b50505050565b6000600282049050600182168061523657607f821691505b6020821081141561524a5761524961534c565b5b50919050565b615259826153cc565b810181811067ffffffffffffffff821117156152785761527761537b565b5b80604052505050565b600061528c826151c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156152bf576152be6152ee565b5b600182019050919050565b60006152d5826152dc565b9050919050565b60006152e7826153dd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156153c95760046000803e6153c66000516153ea565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f75736572206973206e6f74206f6e2067656e657369732070617373207768697460008201527f656c697374000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f636f6e74726163742062616c616e636520697320300000000000000000000000600082015250565b7f75736572206973206e6f74206f6e20746f7368696d657461207061737320776860008201527f6974656c69737400000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f746865207075626c69632073616c65206973206e6f7420616374697665000000600082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b7f74686520707269766174652073616c65206973206e6f74206163746976650000600082015250565b600060443d1015615aba57615b3d565b615ac2614f3b565b60043d036004823e80513d602482011167ffffffffffffffff82111715615aea575050615b3d565b808201805167ffffffffffffffff811115615b085750505050615b3d565b80602083010160043d038501811115615b25575050505050615b3d565b615b3482602001850186615250565b82955050505050505b90565b615b4981615151565b8114615b5457600080fd5b50565b615b6081615163565b8114615b6b57600080fd5b50565b615b778161516f565b8114615b8257600080fd5b50565b615b8e81615179565b8114615b9957600080fd5b50565b615ba5816151c5565b8114615bb057600080fd5b5056fea264697066735822122045bc5f46d08a1f6e5aa60b22bbb9019e075e86afb96a8be25e4c07f9b4c6c09964736f6c6343000804003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e5471566d4354636f3947655a7854776f686e5078554a324e6468614e57766b4d5a737362534864787571722f7b69647d2e6a736f6e

Deployed Bytecode

0x6080604052600436106102ac5760003560e01c8063662111ae11610175578063a4b5d378116100dc578063cedde7fe11610095578063eb0fd03d1161006f578063eb0fd03d14610ad0578063f242432a14610af9578063f2fde38b14610b22578063f863e36614610b4b576102ac565b8063cedde7fe14610a2b578063d821d68414610a56578063e985e9c514610a93576102ac565b8063a4b5d37814610909578063b6dc23eb14610946578063b9545fde1461096f578063bc8893b41461099a578063bd85b039146109c5578063c47f002714610a02576102ac565b80638da5cb5b1161012e5780638da5cb5b1461080f5780639293a5c71461083a5780639775a4fb146108635780639fe88d6e1461088c578063a22cb465146108b5578063a3ac6e5d146108de576102ac565b8063662111ae14610721578063715018a61461074c57806380a952f0146107635780638269533b1461078e5780638af17ac2146107b95780638c5c1dac146107e4576102ac565b80631aabab15116102195780634e1273f4116101d25780634e1273f4146105eb5780634f558e791461062857806353f90b9d146106655780635b78e492146106905780635c975abb146106b957806364f7232c146106e4576102ac565b80631aabab151461051d5780631d86fd65146105395780632a237bb6146105555780632eb2c2d6146105805780633ccfd60b146105a95780634bbf179b146105c0576102ac565b80630612d3641161026b5780630612d364146103f757806306fdde03146104225780630e89341c1461044d578063103fcfac1461048a578063163ebb08146104b557806317d7de7c146104f2576102ac565b806213f0bf146102b1578062fdd58e146102ee57806301ffc9a71461032b57806302329a291461036857806302fe5305146103915780630484c974146103ba575b600080fd5b3480156102bd57600080fd5b506102d860048036038101906102d39190614059565b610b76565b6040516102e59190614ec1565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190614248565b610b8e565b6040516103229190614ec1565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906143f2565b610c57565b60405161035f9190614b09565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a91906143a0565b610d39565b005b34801561039d57600080fd5b506103b860048036038101906103b39190614444565b610dd2565b005b3480156103c657600080fd5b506103e160048036038101906103dc91906142f0565b610e5a565b6040516103ee9190614b09565b60405180910390f35b34801561040357600080fd5b5061040c610ede565b6040516104199190614b3f565b60405180910390f35b34801561042e57600080fd5b50610437610f6c565b6040516104449190614b3f565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190614485565b610ffa565b6040516104819190614b3f565b60405180910390f35b34801561049657600080fd5b5061049f61108e565b6040516104ac9190614ec1565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190614059565b611094565b6040516104e99190614f05565b60405180910390f35b3480156104fe57600080fd5b506105076110b4565b6040516105149190614b3f565b60405180910390f35b61053760048036038101906105329190614348565b611146565b005b610553600480360381019061054e9190614348565b611597565b005b34801561056157600080fd5b5061056a6119e8565b6040516105779190614b09565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a291906140be565b6119fb565b005b3480156105b557600080fd5b506105be611a9c565b005b3480156105cc57600080fd5b506105d5611ea3565b6040516105e29190614ec1565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190614284565b611ea9565b60405161061f9190614ab0565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190614485565b61205a565b60405161065c9190614b09565b60405180910390f35b34801561067157600080fd5b5061067a61206e565b6040516106879190614ec1565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190614485565b612074565b005b3480156106c557600080fd5b506106ce6121fb565b6040516106db9190614b09565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190614059565b61220e565b6040516107189190614f05565b60405180910390f35b34801561072d57600080fd5b5061073661222e565b6040516107439190614b24565b60405180910390f35b34801561075857600080fd5b50610761612234565b005b34801561076f57600080fd5b506107786122bc565b6040516107859190614b24565b60405180910390f35b34801561079a57600080fd5b506107a36122c2565b6040516107b09190614ec1565b60405180910390f35b3480156107c557600080fd5b506107ce6122c8565b6040516107db9190614ec1565b60405180910390f35b3480156107f057600080fd5b506107f96122ce565b6040516108069190614ec1565b60405180910390f35b34801561081b57600080fd5b506108246122d4565b60405161083191906149d3565b60405180910390f35b34801561084657600080fd5b50610861600480360381019061085c91906143a0565b6122fe565b005b34801561086f57600080fd5b5061088a600480360381019061088591906143c9565b612397565b005b34801561089857600080fd5b506108b360048036038101906108ae9190614485565b61241d565b005b3480156108c157600080fd5b506108dc60048036038101906108d7919061420c565b6125a4565b005b3480156108ea57600080fd5b506108f36125ba565b6040516109009190614ec1565b60405180910390f35b34801561091557600080fd5b50610930600480360381019061092b9190614059565b6125bf565b60405161093d9190614ec1565b60405180910390f35b34801561095257600080fd5b5061096d600480360381019061096891906143c9565b6125d7565b005b34801561097b57600080fd5b5061098461265d565b6040516109919190614ec1565b60405180910390f35b3480156109a657600080fd5b506109af612663565b6040516109bc9190614b09565b60405180910390f35b3480156109d157600080fd5b506109ec60048036038101906109e79190614485565b612676565b6040516109f99190614ec1565b60405180910390f35b348015610a0e57600080fd5b50610a296004803603810190610a249190614444565b612693565b005b348015610a3757600080fd5b50610a40612729565b604051610a4d9190614ec1565b60405180910390f35b348015610a6257600080fd5b50610a7d6004803603810190610a7891906142f0565b61272f565b604051610a8a9190614b09565b60405180910390f35b348015610a9f57600080fd5b50610aba6004803603810190610ab59190614082565b6127b3565b604051610ac79190614b09565b60405180910390f35b348015610adc57600080fd5b50610af76004803603810190610af291906143a0565b612847565b005b348015610b0557600080fd5b50610b206004803603810190610b1b919061417d565b6128e0565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190614059565b612981565b005b348015610b5757600080fd5b50610b60612a79565b604051610b6d9190614ec1565b60405180910390f35b60156020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690614bc1565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d2257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d325750610d3182612a7e565b5b9050919050565b610d41612ae8565b73ffffffffffffffffffffffffffffffffffffffff16610d5f6122d4565b73ffffffffffffffffffffffffffffffffffffffff1614610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac90614d41565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b610dda612ae8565b73ffffffffffffffffffffffffffffffffffffffff16610df86122d4565b73ffffffffffffffffffffffffffffffffffffffff1614610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590614d41565b60405180910390fd5b610e5781612af0565b50565b60008082604051602001610e6e91906149b8565b604051602081830303815290604052805190602001209050610ed4858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060065483612b0a565b9150509392505050565b60138054610eeb9061521e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f179061521e565b8015610f645780601f10610f3957610100808354040283529160200191610f64565b820191906000526020600020905b815481529060010190602001808311610f4757829003601f168201915b505050505081565b60128054610f799061521e565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa59061521e565b8015610ff25780601f10610fc757610100808354040283529160200191610ff2565b820191906000526020600020905b815481529060010190602001808311610fd557829003601f168201915b505050505081565b6060600280546110099061521e565b80601f01602080910402602001604051908101604052809291908181526020018280546110359061521e565b80156110825780601f1061105757610100808354040283529160200191611082565b820191906000526020600020905b81548152906001019060200180831161106557829003601f168201915b50505050509050919050565b600a5481565b60176020528060005260406000206000915054906101000a900460ff1681565b6060601280546110c39061521e565b80601f01602080910402602001604051908101604052809291908181526020018280546110ef9061521e565b801561113c5780601f106111115761010080835404028352916020019161113c565b820191906000526020600020905b81548152906001019060200180831161111f57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90614c81565b60405180910390fd5b600860009054906101000a900460ff1615611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90614d61565b60405180910390fd5b60008111611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90614e81565b60405180910390fd5b600f54816112556002612676565b61125f9190615070565b11156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790614d01565b60405180910390fd5b6010548111156112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc90614ce1565b60405180910390fd5b80600e546112f391906150f7565b341015611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90614da1565b60405180910390fd5b600860019054906101000a900460ff1661149857600860029054906101000a900460ff16611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90614ea1565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060115482826113eb9190615070565b111561142c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142390614c61565b60405180910390fd5b61143784843361272f565b611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90614c21565b60405180910390fd5b6114923360028460405180602001604052806000815250612b21565b50611504565b600860019054906101000a900460ff166114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de90614e01565b60405180910390fd5b6115033360028360405180602001604052806000815250612b21565b5b80601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461154f9190615070565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90614c81565b60405180910390fd5b600860009054906101000a900460ff1615611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90614d61565b60405180910390fd5b60008111611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f90614e81565b60405180910390fd5b600b54816116a66001612676565b6116b09190615070565b11156116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e890614d01565b60405180910390fd5b600c54811115611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d90614ce1565b60405180910390fd5b80600a5461174491906150f7565b341015611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90614da1565b60405180910390fd5b600860019054906101000a900460ff166118e957600860029054906101000a900460ff166117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e090614ea1565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d54828261183c9190615070565b111561187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490614c61565b60405180910390fd5b611888848433610e5a565b6118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90614b61565b60405180910390fd5b6118e33360018460405180602001604052806000815250612b21565b50611955565b600860019054906101000a900460ff16611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90614e01565b60405180910390fd5b6119543360018360405180602001604052806000815250612b21565b5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119a09190615070565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b600860029054906101000a900460ff1681565b611a03612ae8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611a495750611a4885611a43612ae8565b6127b3565b5b611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f90614cc1565b60405180910390fd5b611a958585858585612cd2565b5050505050565b611aa4612ae8565b73ffffffffffffffffffffffffffffffffffffffff16611ac26122d4565b73ffffffffffffffffffffffffffffffffffffffff1614611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f90614d41565b60405180910390fd5b60026005541415611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5590614e61565b60405180910390fd5b6002600581905550600047905060008111611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590614c01565b60405180910390fd5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860be84611bfa91906150f7565b611c0491906150c6565b9081150290604051600060405180830381858888f19350505050158015611c2f573d6000803e3d6000fd5b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860be84611c7c91906150f7565b611c8691906150c6565b9081150290604051600060405180830381858888f19350505050158015611cb1573d6000803e3d6000fd5b50601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860be84611cfe91906150f7565b611d0891906150c6565b9081150290604051600060405180830381858888f19350505050158015611d33573d6000803e3d6000fd5b50601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860be84611d8091906150f7565b611d8a91906150c6565b9081150290604051600060405180830381858888f19350505050158015611db5573d6000803e3d6000fd5b50601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860be84611e0291906150f7565b611e0c91906150c6565b9081150290604051600060405180830381858888f19350505050158015611e37573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc6103e8603284611e6291906150f7565b611e6c91906150c6565b9081150290604051600060405180830381858888f19350505050158015611e97573d6000803e3d6000fd5b50506001600581905550565b600b5481565b60608151835114611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee690614de1565b60405180910390fd5b6000835167ffffffffffffffff811115611f32577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611f605781602001602082028036833780820191505090505b50905060005b845181101561204f57611ff9858281518110611fab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110611fec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610b8e565b828281518110612032577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061204890615281565b9050611f66565b508091505092915050565b60008061206683612676565b119050919050565b60115481565b61207c612ae8565b73ffffffffffffffffffffffffffffffffffffffff1661209a6122d4565b73ffffffffffffffffffffffffffffffffffffffff16146120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790614d41565b60405180910390fd5b600860009054906101000a900460ff1615612140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213790614d61565b60405180910390fd5b60008111612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a90614e81565b60405180910390fd5b600f54816121916002612676565b61219b9190615070565b11156121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d390614d01565b60405180910390fd5b6121f83360028360405180602001604052806000815250612b21565b50565b600860009054906101000a900460ff1681565b60166020528060005260406000206000915054906101000a900460ff1681565b60065481565b61223c612ae8565b73ffffffffffffffffffffffffffffffffffffffff1661225a6122d4565b73ffffffffffffffffffffffffffffffffffffffff16146122b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a790614d41565b60405180910390fd5b6122ba6000613040565b565b60075481565b600d5481565b600f5481565b600e5481565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612306612ae8565b73ffffffffffffffffffffffffffffffffffffffff166123246122d4565b73ffffffffffffffffffffffffffffffffffffffff161461237a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237190614d41565b60405180910390fd5b80600860016101000a81548160ff02191690831515021790555050565b61239f612ae8565b73ffffffffffffffffffffffffffffffffffffffff166123bd6122d4565b73ffffffffffffffffffffffffffffffffffffffff1614612413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240a90614d41565b60405180910390fd5b8060068190555050565b612425612ae8565b73ffffffffffffffffffffffffffffffffffffffff166124436122d4565b73ffffffffffffffffffffffffffffffffffffffff1614612499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249090614d41565b60405180910390fd5b600860009054906101000a900460ff16156124e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e090614d61565b60405180910390fd5b6000811161252c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252390614e81565b60405180910390fd5b600b548161253a6001612676565b6125449190615070565b1115612585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257c90614d01565b60405180910390fd5b6125a13360018360405180602001604052806000815250612b21565b50565b6125b66125af612ae8565b8383613106565b5050565b600281565b60146020528060005260406000206000915090505481565b6125df612ae8565b73ffffffffffffffffffffffffffffffffffffffff166125fd6122d4565b73ffffffffffffffffffffffffffffffffffffffff1614612653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264a90614d41565b60405180910390fd5b8060078190555050565b60105481565b600860019054906101000a900460ff1681565b600060036000838152602001908152602001600020549050919050565b61269b612ae8565b73ffffffffffffffffffffffffffffffffffffffff166126b96122d4565b73ffffffffffffffffffffffffffffffffffffffff161461270f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270690614d41565b60405180910390fd5b8060129080519060200190612725929190613cf2565b5050565b600c5481565b6000808260405160200161274391906149b8565b6040516020818303038152906040528051906020012090506127a9858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060075483612b0a565b9150509392505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61284f612ae8565b73ffffffffffffffffffffffffffffffffffffffff1661286d6122d4565b73ffffffffffffffffffffffffffffffffffffffff16146128c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ba90614d41565b60405180910390fd5b80600860026101000a81548160ff02191690831515021790555050565b6128e8612ae8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061292e575061292d85612928612ae8565b6127b3565b5b61296d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296490614c41565b60405180910390fd5b61297a8585858585613273565b5050505050565b612989612ae8565b73ffffffffffffffffffffffffffffffffffffffff166129a76122d4565b73ffffffffffffffffffffffffffffffffffffffff16146129fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f490614d41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6490614be1565b60405180910390fd5b612a7681613040565b50565b600181565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029080519060200190612b06929190613cf2565b5050565b600082612b17858461350f565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8890614e41565b60405180910390fd5b6000612b9b612ae8565b90506000612ba8856135aa565b90506000612bb5856135aa565b9050612bc683600089858589613670565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c259190615070565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612ca3929190614edc565b60405180910390a4612cba836000898585896138da565b612cc9836000898989896138e2565b50505050505050565b8151835114612d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0d90614e21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7d90614ca1565b60405180910390fd5b6000612d90612ae8565b9050612da0818787878787613670565b60005b8451811015612f9d576000858281518110612de7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110612e2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec490614d21565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f829190615070565b9250508190555050505080612f9690615281565b9050612da3565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051613014929190614ad2565b60405180910390a461302a8187878787876138da565b613038818787878787613ac9565b505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316c90614dc1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516132669190614b09565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132da90614ca1565b60405180910390fd5b60006132ed612ae8565b905060006132fa856135aa565b90506000613307856135aa565b9050613317838989858589613670565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156133ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a590614d21565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134639190615070565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516134e0929190614edc565b60405180910390a46134f6848a8a86868a6138da565b613504848a8a8a8a8a6138e2565b505050505050505050565b60008082905060005b845181101561359f57600085828151811061355c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161357e576135778382613cb0565b925061358b565b6135888184613cb0565b92505b50808061359790615281565b915050613518565b508091505092915050565b60606000600167ffffffffffffffff8111156135ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561361d5781602001602082028036833780820191505090505b509050828160008151811061365b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b61367e868686868686613cc7565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561377c5760005b835181101561377a578281815181106136f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516003600086848151811061373d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008282546137629190615070565b925050819055508061377390615281565b90506136b6565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156138d25760005b83518110156138d05760008482815181106137f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600084838151811061383d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600060036000848152602001908152602001600020549050818110156138a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389990614d81565b60405180910390fd5b8181036003600085815260200190815260200160002081905550505050806138c990615281565b90506137b4565b505b505050505050565b505050505050565b6139018473ffffffffffffffffffffffffffffffffffffffff16613ccf565b15613ac1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613947959493929190614a56565b602060405180830381600087803b15801561396157600080fd5b505af192505050801561399257506040513d601f19601f8201168201806040525081019061398f919061441b565b60015b613a385761399e6153aa565b806308c379a014156139fb57506139b3615aaa565b806139be57506139fd565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139f29190614b3f565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2f90614b81565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab690614ba1565b60405180910390fd5b505b505050505050565b613ae88473ffffffffffffffffffffffffffffffffffffffff16613ccf565b15613ca8578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401613b2e9594939291906149ee565b602060405180830381600087803b158015613b4857600080fd5b505af1925050508015613b7957506040513d601f19601f82011682018060405250810190613b76919061441b565b60015b613c1f57613b856153aa565b806308c379a01415613be25750613b9a615aaa565b80613ba55750613be4565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bd99190614b3f565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c1690614b81565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c9d90614ba1565b60405180910390fd5b505b505050505050565b600082600052816020526040600020905092915050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613cfe9061521e565b90600052602060002090601f016020900481019282613d205760008555613d67565b82601f10613d3957805160ff1916838001178555613d67565b82800160010185558215613d67579182015b82811115613d66578251825591602001919060010190613d4b565b5b509050613d749190613d78565b5090565b5b80821115613d91576000816000905550600101613d79565b5090565b6000613da8613da384614f45565b614f20565b90508083825260208201905082856020860282011115613dc757600080fd5b60005b85811015613df75781613ddd8882613ee9565b845260208401935060208301925050600181019050613dca565b5050509392505050565b6000613e14613e0f84614f71565b614f20565b90508083825260208201905082856020860282011115613e3357600080fd5b60005b85811015613e635781613e498882614044565b845260208401935060208301925050600181019050613e36565b5050509392505050565b6000613e80613e7b84614f9d565b614f20565b905082815260208101848484011115613e9857600080fd5b613ea38482856151dc565b509392505050565b6000613ebe613eb984614fce565b614f20565b905082815260208101848484011115613ed657600080fd5b613ee18482856151dc565b509392505050565b600081359050613ef881615b40565b92915050565b600082601f830112613f0f57600080fd5b8135613f1f848260208601613d95565b91505092915050565b60008083601f840112613f3a57600080fd5b8235905067ffffffffffffffff811115613f5357600080fd5b602083019150836020820283011115613f6b57600080fd5b9250929050565b600082601f830112613f8357600080fd5b8135613f93848260208601613e01565b91505092915050565b600081359050613fab81615b57565b92915050565b600081359050613fc081615b6e565b92915050565b600081359050613fd581615b85565b92915050565b600081519050613fea81615b85565b92915050565b600082601f83011261400157600080fd5b8135614011848260208601613e6d565b91505092915050565b600082601f83011261402b57600080fd5b813561403b848260208601613eab565b91505092915050565b60008135905061405381615b9c565b92915050565b60006020828403121561406b57600080fd5b600061407984828501613ee9565b91505092915050565b6000806040838503121561409557600080fd5b60006140a385828601613ee9565b92505060206140b485828601613ee9565b9150509250929050565b600080600080600060a086880312156140d657600080fd5b60006140e488828901613ee9565b95505060206140f588828901613ee9565b945050604086013567ffffffffffffffff81111561411257600080fd5b61411e88828901613f72565b935050606086013567ffffffffffffffff81111561413b57600080fd5b61414788828901613f72565b925050608086013567ffffffffffffffff81111561416457600080fd5b61417088828901613ff0565b9150509295509295909350565b600080600080600060a0868803121561419557600080fd5b60006141a388828901613ee9565b95505060206141b488828901613ee9565b94505060406141c588828901614044565b93505060606141d688828901614044565b925050608086013567ffffffffffffffff8111156141f357600080fd5b6141ff88828901613ff0565b9150509295509295909350565b6000806040838503121561421f57600080fd5b600061422d85828601613ee9565b925050602061423e85828601613f9c565b9150509250929050565b6000806040838503121561425b57600080fd5b600061426985828601613ee9565b925050602061427a85828601614044565b9150509250929050565b6000806040838503121561429757600080fd5b600083013567ffffffffffffffff8111156142b157600080fd5b6142bd85828601613efe565b925050602083013567ffffffffffffffff8111156142da57600080fd5b6142e685828601613f72565b9150509250929050565b60008060006040848603121561430557600080fd5b600084013567ffffffffffffffff81111561431f57600080fd5b61432b86828701613f28565b9350935050602061433e86828701613ee9565b9150509250925092565b60008060006040848603121561435d57600080fd5b600084013567ffffffffffffffff81111561437757600080fd5b61438386828701613f28565b9350935050602061439686828701614044565b9150509250925092565b6000602082840312156143b257600080fd5b60006143c084828501613f9c565b91505092915050565b6000602082840312156143db57600080fd5b60006143e984828501613fb1565b91505092915050565b60006020828403121561440457600080fd5b600061441284828501613fc6565b91505092915050565b60006020828403121561442d57600080fd5b600061443b84828501613fdb565b91505092915050565b60006020828403121561445657600080fd5b600082013567ffffffffffffffff81111561447057600080fd5b61447c8482850161401a565b91505092915050565b60006020828403121561449757600080fd5b60006144a584828501614044565b91505092915050565b60006144ba838361498b565b60208301905092915050565b6144cf81615151565b82525050565b6144e66144e182615151565b6152ca565b82525050565b60006144f78261500f565b614501818561503d565b935061450c83614fff565b8060005b8381101561453d57815161452488826144ae565b975061452f83615030565b925050600181019050614510565b5085935050505092915050565b61455381615163565b82525050565b6145628161516f565b82525050565b60006145738261501a565b61457d818561504e565b935061458d8185602086016151eb565b614596816153cc565b840191505092915050565b60006145ac82615025565b6145b6818561505f565b93506145c68185602086016151eb565b6145cf816153cc565b840191505092915050565b60006145e760258361505f565b91506145f2826153f7565b604082019050919050565b600061460a60348361505f565b915061461582615446565b604082019050919050565b600061462d60288361505f565b915061463882615495565b604082019050919050565b6000614650602b8361505f565b915061465b826154e4565b604082019050919050565b600061467360268361505f565b915061467e82615533565b604082019050919050565b600061469660158361505f565b91506146a182615582565b602082019050919050565b60006146b960278361505f565b91506146c4826155ab565b604082019050919050565b60006146dc60298361505f565b91506146e7826155fa565b604082019050919050565b60006146ff601c8361505f565b915061470a82615649565b602082019050919050565b6000614722601e8361505f565b915061472d82615672565b602082019050919050565b600061474560258361505f565b91506147508261569b565b604082019050919050565b600061476860328361505f565b9150614773826156ea565b604082019050919050565b600061478b60248361505f565b915061479682615739565b604082019050919050565b60006147ae60128361505f565b91506147b982615788565b602082019050919050565b60006147d1602a8361505f565b91506147dc826157b1565b604082019050919050565b60006147f460208361505f565b91506147ff82615800565b602082019050919050565b600061481760168361505f565b915061482282615829565b602082019050919050565b600061483a60288361505f565b915061484582615852565b604082019050919050565b600061485d60128361505f565b9150614868826158a1565b602082019050919050565b600061488060298361505f565b915061488b826158ca565b604082019050919050565b60006148a360298361505f565b91506148ae82615919565b604082019050919050565b60006148c6601d8361505f565b91506148d182615968565b602082019050919050565b60006148e960288361505f565b91506148f482615991565b604082019050919050565b600061490c60218361505f565b9150614917826159e0565b604082019050919050565b600061492f601f8361505f565b915061493a82615a2f565b602082019050919050565b6000614952601b8361505f565b915061495d82615a58565b602082019050919050565b6000614975601e8361505f565b915061498082615a81565b602082019050919050565b614994816151c5565b82525050565b6149a3816151c5565b82525050565b6149b2816151cf565b82525050565b60006149c482846144d5565b60148201915081905092915050565b60006020820190506149e860008301846144c6565b92915050565b600060a082019050614a0360008301886144c6565b614a1060208301876144c6565b8181036040830152614a2281866144ec565b90508181036060830152614a3681856144ec565b90508181036080830152614a4a8184614568565b90509695505050505050565b600060a082019050614a6b60008301886144c6565b614a7860208301876144c6565b614a85604083018661499a565b614a92606083018561499a565b8181036080830152614aa48184614568565b90509695505050505050565b60006020820190508181036000830152614aca81846144ec565b905092915050565b60006040820190508181036000830152614aec81856144ec565b90508181036020830152614b0081846144ec565b90509392505050565b6000602082019050614b1e600083018461454a565b92915050565b6000602082019050614b396000830184614559565b92915050565b60006020820190508181036000830152614b5981846145a1565b905092915050565b60006020820190508181036000830152614b7a816145da565b9050919050565b60006020820190508181036000830152614b9a816145fd565b9050919050565b60006020820190508181036000830152614bba81614620565b9050919050565b60006020820190508181036000830152614bda81614643565b9050919050565b60006020820190508181036000830152614bfa81614666565b9050919050565b60006020820190508181036000830152614c1a81614689565b9050919050565b60006020820190508181036000830152614c3a816146ac565b9050919050565b60006020820190508181036000830152614c5a816146cf565b9050919050565b60006020820190508181036000830152614c7a816146f2565b9050919050565b60006020820190508181036000830152614c9a81614715565b9050919050565b60006020820190508181036000830152614cba81614738565b9050919050565b60006020820190508181036000830152614cda8161475b565b9050919050565b60006020820190508181036000830152614cfa8161477e565b9050919050565b60006020820190508181036000830152614d1a816147a1565b9050919050565b60006020820190508181036000830152614d3a816147c4565b9050919050565b60006020820190508181036000830152614d5a816147e7565b9050919050565b60006020820190508181036000830152614d7a8161480a565b9050919050565b60006020820190508181036000830152614d9a8161482d565b9050919050565b60006020820190508181036000830152614dba81614850565b9050919050565b60006020820190508181036000830152614dda81614873565b9050919050565b60006020820190508181036000830152614dfa81614896565b9050919050565b60006020820190508181036000830152614e1a816148b9565b9050919050565b60006020820190508181036000830152614e3a816148dc565b9050919050565b60006020820190508181036000830152614e5a816148ff565b9050919050565b60006020820190508181036000830152614e7a81614922565b9050919050565b60006020820190508181036000830152614e9a81614945565b9050919050565b60006020820190508181036000830152614eba81614968565b9050919050565b6000602082019050614ed6600083018461499a565b92915050565b6000604082019050614ef1600083018561499a565b614efe602083018461499a565b9392505050565b6000602082019050614f1a60008301846149a9565b92915050565b6000614f2a614f3b565b9050614f368282615250565b919050565b6000604051905090565b600067ffffffffffffffff821115614f6057614f5f61537b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f8c57614f8b61537b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614fb857614fb761537b565b5b614fc1826153cc565b9050602081019050919050565b600067ffffffffffffffff821115614fe957614fe861537b565b5b614ff2826153cc565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061507b826151c5565b9150615086836151c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150bb576150ba6152ee565b5b828201905092915050565b60006150d1826151c5565b91506150dc836151c5565b9250826150ec576150eb61531d565b5b828204905092915050565b6000615102826151c5565b915061510d836151c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615146576151456152ee565b5b828202905092915050565b600061515c826151a5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156152095780820151818401526020810190506151ee565b83811115615218576000848401525b50505050565b6000600282049050600182168061523657607f821691505b6020821081141561524a5761524961534c565b5b50919050565b615259826153cc565b810181811067ffffffffffffffff821117156152785761527761537b565b5b80604052505050565b600061528c826151c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156152bf576152be6152ee565b5b600182019050919050565b60006152d5826152dc565b9050919050565b60006152e7826153dd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156153c95760046000803e6153c66000516153ea565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f75736572206973206e6f74206f6e2067656e657369732070617373207768697460008201527f656c697374000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f636f6e74726163742062616c616e636520697320300000000000000000000000600082015250565b7f75736572206973206e6f74206f6e20746f7368696d657461207061737320776860008201527f6974656c69737400000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f746865207075626c69632073616c65206973206e6f7420616374697665000000600082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b7f74686520707269766174652073616c65206973206e6f74206163746976650000600082015250565b600060443d1015615aba57615b3d565b615ac2614f3b565b60043d036004823e80513d602482011167ffffffffffffffff82111715615aea575050615b3d565b808201805167ffffffffffffffff811115615b085750505050615b3d565b80602083010160043d038501811115615b25575050505050615b3d565b615b3482602001850186615250565b82955050505050505b90565b615b4981615151565b8114615b5457600080fd5b50565b615b6081615163565b8114615b6b57600080fd5b50565b615b778161516f565b8114615b8257600080fd5b50565b615b8e81615179565b8114615b9957600080fd5b50565b615ba5816151c5565b8114615bb057600080fd5b5056fea264697066735822122045bc5f46d08a1f6e5aa60b22bbb9019e075e86afb96a8be25e4c07f9b4c6c09964736f6c63430008040033

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