ETH Price: $3,044.93 (+0.70%)
Gas: 2 Gwei

Token

Dystolab Crates ($CRATES)
 

Overview

Max Total Supply

7,777 $CRATES

Holders

645

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0xa667095770d8875af45a7188a9dbdfd99b236bf7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

To mint a Dystolab Crate you need to go to DystoPunks.net holding a DystoPunk in your wallet and burn 300 $CREDS. DystoPunks is a utility-focused Cyberpunk-themed NFT project that allows holders to generate a utility token called $CREDS, mint Dystolab Crates and use it in the Dystoverse.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DystolabCrates

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Crates.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;


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



interface CredsInterface {

    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function allowance(address owner, address spender) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external returns (bool);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    function burnFrom(address sender, uint256 amount) view external;

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);


}


interface DystoPunks {
    function balanceOf(address account) external view returns (uint256);
}

contract DystolabCrates is ERC1155Supply, Ownable   {


    address constant public CredsAddress = 0xc13F4F0F865bAc08F62654B57E38669EbC4747a3;
    address constant public DystoAddress = 0xbEA8123277142dE42571f1fAc045225a1D347977;
    address constant public BurnAddress = 0x000000000000000000000000000000000000dEaD;
    bool public saleIsActive = true;
    uint private _tokenId = 77;
    uint constant MAX_TOKENS = 7777;
    uint constant TOKEN_PRICE = 300 ether;



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

    function setSaleState(bool newState) public onlyOwner {
        saleIsActive = newState;
    }

    function totalAvailable(address ownwer) external view returns (uint) {
        uint value = CredsInterface(CredsAddress).balanceOf(ownwer);
        return value;
    }

    function mint(uint numberOfTokens) public  {
        require(saleIsActive, "Sale must be active to mint Tokens");
        require(totalSupply(_tokenId) + numberOfTokens <= MAX_TOKENS, "Purchase would exceed max supply of tokens");
        uint valueHold = CredsInterface(CredsAddress).balanceOf(msg.sender);
        require(TOKEN_PRICE * numberOfTokens <= valueHold, "Value is not correct");
        uint punks = DystoPunks(DystoAddress).balanceOf(msg.sender);
        require(punks > 0, "Value of punks is not correct");
        uint value = TOKEN_PRICE * numberOfTokens;
        CredsInterface(CredsAddress).transferFrom(msg.sender,BurnAddress,value);

        _mint(msg.sender, _tokenId, numberOfTokens, "");

    }


}

File 2 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

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

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 weither 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-_mint}.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual override {
        super._mint(account, id, amount, data);
        _totalSupply[id] += amount;
    }

    /**
     * @dev See {ERC1155-_mintBatch}.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._mintBatch(to, ids, amounts, data);
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] += amounts[i];
        }
    }

    /**
     * @dev See {ERC1155-_burn}.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual override {
        super._burn(account, id, amount);
        _totalSupply[id] -= amount;
    }

    /**
     * @dev See {ERC1155-_burnBatch}.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual override {
        super._burnBatch(account, ids, amounts);
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] -= amounts[i];
        }
    }
}

File 5 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 6 of 12 : ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.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 7 of 12 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

File 8 of 12 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

File 9 of 12 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

File 10 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"BurnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CredsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DystoAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","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":"ownwer","type":"address"}],"name":"totalAvailable","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"}]

60806040526001600460146101000a81548160ff021916908315150217905550604d6005553480156200003157600080fd5b5060405162003adf38038062003adf8339818101604052810190620000579190620002a9565b8062000069816200009160201b60201c565b506200008a6200007e620000ad60201b60201c565b620000b560201b60201c565b506200047e565b8060029080519060200190620000a99291906200017b565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000189906200038f565b90600052602060002090601f016020900481019282620001ad5760008555620001f9565b82601f10620001c857805160ff1916838001178555620001f9565b82800160010185558215620001f9579182015b82811115620001f8578251825591602001919060010190620001db565b5b5090506200020891906200020c565b5090565b5b80821115620002275760008160009055506001016200020d565b5090565b6000620002426200023c8462000323565b620002fa565b9050828152602081018484840111156200026157620002606200045e565b5b6200026e84828562000359565b509392505050565b600082601f8301126200028e576200028d62000459565b5b8151620002a08482602086016200022b565b91505092915050565b600060208284031215620002c257620002c162000468565b5b600082015167ffffffffffffffff811115620002e357620002e262000463565b5b620002f18482850162000276565b91505092915050565b60006200030662000319565b9050620003148282620003c5565b919050565b6000604051905090565b600067ffffffffffffffff8211156200034157620003406200042a565b5b6200034c826200046d565b9050602081019050919050565b60005b83811015620003795780820151818401526020810190506200035c565b8381111562000389576000848401525b50505050565b60006002820490506001821680620003a857607f821691505b60208210811415620003bf57620003be620003fb565b5b50919050565b620003d0826200046d565b810181811067ffffffffffffffff82111715620003f257620003f16200042a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b613651806200048e6000396000f3fe608060405234801561001057600080fd5b506004361061012b5760003560e01c8063a22cb465116100ad578063cabcc71811610071578063cabcc71814610354578063e985e9c514610372578063eb8d2444146103a2578063f242432a146103c0578063f2fde38b146103dc5761012b565b8063a22cb4651461029e578063b683674f146102ba578063bd85b039146102ea578063c3f1a3a71461031a578063c4e37095146103385761012b565b80634f558e79116100f45780634f558e791461020c578063715018a61461023c5780638da5cb5b14610246578063993cb90214610264578063a0712d68146102825761012b565b8062fdd58e1461013057806301ffc9a7146101605780630e89341c146101905780632eb2c2d6146101c05780634e1273f4146101dc575b600080fd5b61014a600480360381019061014591906122cb565b6103f8565b6040516101579190612bd2565b60405180910390f35b61017a600480360381019061017591906123dd565b6104c1565b6040516101879190612975565b60405180910390f35b6101aa60048036038101906101a59190612437565b6105a3565b6040516101b79190612990565b60405180910390f35b6101da60048036038101906101d59190612125565b610637565b005b6101f660048036038101906101f1919061230b565b6106d8565b604051610203919061291c565b60405180910390f35b61022660048036038101906102219190612437565b6107f1565b6040516102339190612975565b60405180910390f35b610244610805565b005b61024e61088d565b60405161025b9190612808565b60405180910390f35b61026c6108b7565b6040516102799190612808565b60405180910390f35b61029c60048036038101906102979190612437565b6108cf565b005b6102b860048036038101906102b3919061228b565b610c36565b005b6102d460048036038101906102cf91906120b8565b610db7565b6040516102e19190612bd2565b60405180910390f35b61030460048036038101906102ff9190612437565b610e62565b6040516103119190612bd2565b60405180910390f35b610322610e7f565b60405161032f9190612808565b60405180910390f35b610352600480360381019061034d9190612383565b610e97565b005b61035c610f30565b6040516103699190612808565b60405180910390f35b61038c600480360381019061038791906120e5565b610f36565b6040516103999190612975565b60405180910390f35b6103aa610fca565b6040516103b79190612975565b60405180910390f35b6103da60048036038101906103d591906121f4565b610fdd565b005b6103f660048036038101906103f191906120b8565b61107e565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610469576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610460906129f2565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058c57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061059c575061059b82611176565b5b9050919050565b6060600280546105b290612e9b565b80601f01602080910402602001604051908101604052809291908181526020018280546105de90612e9b565b801561062b5780601f106106005761010080835404028352916020019161062b565b820191906000526020600020905b81548152906001019060200180831161060e57829003601f168201915b50505050509050919050565b61063f6111e0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061068557506106848561067f6111e0565b610f36565b5b6106c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bb90612a92565b60405180910390fd5b6106d185858585856111e8565b5050505050565b6060815183511461071e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071590612b72565b60405180910390fd5b6000835167ffffffffffffffff81111561073b5761073a612fd4565b5b6040519080825280602002602001820160405280156107695781602001602082028036833780820191505090505b50905060005b84518110156107e6576107b685828151811061078e5761078d612fa5565b5b60200260200101518583815181106107a9576107a8612fa5565b5b60200260200101516103f8565b8282815181106107c9576107c8612fa5565b5b602002602001018181525050806107df90612efe565b905061076f565b508091505092915050565b6000806107fd83610e62565b119050919050565b61080d6111e0565b73ffffffffffffffffffffffffffffffffffffffff1661082b61088d565b73ffffffffffffffffffffffffffffffffffffffff1614610881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087890612b32565b60405180910390fd5b61088b60006114fc565b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b73bea8123277142de42571f1fac045225a1d34797781565b600460149054906101000a900460ff1661091e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091590612a52565b60405180910390fd5b611e618161092d600554610e62565b6109379190612d35565b1115610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f90612ab2565b60405180910390fd5b600073c13f4f0f865bac08f62654b57e38669ebc4747a373ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016109c79190612808565b60206040518083038186803b1580156109df57600080fd5b505afa1580156109f3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a179190612464565b90508082681043561a8829300000610a2f9190612d8b565b1115610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6790612af2565b60405180910390fd5b600073bea8123277142de42571f1fac045225a1d34797773ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610abf9190612808565b60206040518083038186803b158015610ad757600080fd5b505afa158015610aeb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0f9190612464565b905060008111610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b90612ad2565b60405180910390fd5b600083681043561a8829300000610b6b9190612d8b565b905073c13f4f0f865bac08f62654b57e38669ebc4747a373ffffffffffffffffffffffffffffffffffffffff166323b872dd3361dead846040518463ffffffff1660e01b8152600401610bc09392919061288b565b602060405180830381600087803b158015610bda57600080fd5b505af1158015610bee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1291906123b0565b50610c303360055486604051806020016040528060008152506115c2565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff16610c556111e0565b73ffffffffffffffffffffffffffffffffffffffff161415610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca390612b52565b60405180910390fd5b8060016000610cb96111e0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d666111e0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dab9190612975565b60405180910390a35050565b60008073c13f4f0f865bac08f62654b57e38669ebc4747a373ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401610e079190612808565b60206040518083038186803b158015610e1f57600080fd5b505afa158015610e33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e579190612464565b905080915050919050565b600060036000838152602001908152602001600020549050919050565b73c13f4f0f865bac08f62654b57e38669ebc4747a381565b610e9f6111e0565b73ffffffffffffffffffffffffffffffffffffffff16610ebd61088d565b73ffffffffffffffffffffffffffffffffffffffff1614610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90612b32565b60405180910390fd5b80600460146101000a81548160ff02191690831515021790555050565b61dead81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600460149054906101000a900460ff1681565b610fe56111e0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061102b575061102a856110256111e0565b610f36565b5b61106a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106190612a32565b60405180910390fd5b61107785858585856115fe565b5050505050565b6110866111e0565b73ffffffffffffffffffffffffffffffffffffffff166110a461088d565b73ffffffffffffffffffffffffffffffffffffffff16146110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190612b32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561116a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116190612a12565b60405180910390fd5b611173816114fc565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b815183511461122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390612b92565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390612a72565b60405180910390fd5b60006112a66111e0565b90506112b6818787878787611880565b60005b84518110156114675760008582815181106112d7576112d6612fa5565b5b6020026020010151905060008583815181106112f6576112f5612fa5565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e90612b12565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144c9190612d35565b925050819055505050508061146090612efe565b90506112b9565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516114de92919061293e565b60405180910390a46114f4818787878787611888565b505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6115ce84848484611a6f565b816003600085815260200190815260200160002060008282546115f19190612d35565b9250508190555050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590612a72565b60405180910390fd5b60006116786111e0565b905061169881878761168988611c05565b61169288611c05565b87611880565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561172f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172690612b12565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117e49190612d35565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611861929190612bed565b60405180910390a4611877828888888888611c7f565b50505050505050565b505050505050565b6118a78473ffffffffffffffffffffffffffffffffffffffff16611e66565b15611a67578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016118ed959493929190612823565b602060405180830381600087803b15801561190757600080fd5b505af192505050801561193857506040513d601f19601f82011682018060405250810190611935919061240a565b60015b6119de57611944613003565b806308c379a014156119a15750611959613529565b8061196457506119a3565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119989190612990565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d5906129b2565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c906129d2565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad690612bb2565b60405180910390fd5b6000611ae96111e0565b9050611b0a81600087611afb88611c05565b611b0488611c05565b87611880565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b699190612d35565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611be7929190612bed565b60405180910390a4611bfe81600087878787611c7f565b5050505050565b60606000600167ffffffffffffffff811115611c2457611c23612fd4565b5b604051908082528060200260200182016040528015611c525781602001602082028036833780820191505090505b5090508281600081518110611c6a57611c69612fa5565b5b60200260200101818152505080915050919050565b611c9e8473ffffffffffffffffffffffffffffffffffffffff16611e66565b15611e5e578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611ce49594939291906128c2565b602060405180830381600087803b158015611cfe57600080fd5b505af1925050508015611d2f57506040513d601f19601f82011682018060405250810190611d2c919061240a565b60015b611dd557611d3b613003565b806308c379a01415611d985750611d50613529565b80611d5b5750611d9a565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f9190612990565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc906129b2565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e53906129d2565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b6000611e8c611e8784612c3b565b612c16565b90508083825260208201905082856020860282011115611eaf57611eae61302a565b5b60005b85811015611edf5781611ec58882611f9b565b845260208401935060208301925050600181019050611eb2565b5050509392505050565b6000611efc611ef784612c67565b612c16565b90508083825260208201905082856020860282011115611f1f57611f1e61302a565b5b60005b85811015611f4f5781611f35888261208e565b845260208401935060208301925050600181019050611f22565b5050509392505050565b6000611f6c611f6784612c93565b612c16565b905082815260208101848484011115611f8857611f8761302f565b5b611f93848285612e59565b509392505050565b600081359050611faa816135bf565b92915050565b600082601f830112611fc557611fc4613025565b5b8135611fd5848260208601611e79565b91505092915050565b600082601f830112611ff357611ff2613025565b5b8135612003848260208601611ee9565b91505092915050565b60008135905061201b816135d6565b92915050565b600081519050612030816135d6565b92915050565b600081359050612045816135ed565b92915050565b60008151905061205a816135ed565b92915050565b600082601f83011261207557612074613025565b5b8135612085848260208601611f59565b91505092915050565b60008135905061209d81613604565b92915050565b6000815190506120b281613604565b92915050565b6000602082840312156120ce576120cd613039565b5b60006120dc84828501611f9b565b91505092915050565b600080604083850312156120fc576120fb613039565b5b600061210a85828601611f9b565b925050602061211b85828601611f9b565b9150509250929050565b600080600080600060a0868803121561214157612140613039565b5b600061214f88828901611f9b565b955050602061216088828901611f9b565b945050604086013567ffffffffffffffff81111561218157612180613034565b5b61218d88828901611fde565b935050606086013567ffffffffffffffff8111156121ae576121ad613034565b5b6121ba88828901611fde565b925050608086013567ffffffffffffffff8111156121db576121da613034565b5b6121e788828901612060565b9150509295509295909350565b600080600080600060a086880312156122105761220f613039565b5b600061221e88828901611f9b565b955050602061222f88828901611f9b565b94505060406122408882890161208e565b93505060606122518882890161208e565b925050608086013567ffffffffffffffff81111561227257612271613034565b5b61227e88828901612060565b9150509295509295909350565b600080604083850312156122a2576122a1613039565b5b60006122b085828601611f9b565b92505060206122c18582860161200c565b9150509250929050565b600080604083850312156122e2576122e1613039565b5b60006122f085828601611f9b565b92505060206123018582860161208e565b9150509250929050565b6000806040838503121561232257612321613039565b5b600083013567ffffffffffffffff8111156123405761233f613034565b5b61234c85828601611fb0565b925050602083013567ffffffffffffffff81111561236d5761236c613034565b5b61237985828601611fde565b9150509250929050565b60006020828403121561239957612398613039565b5b60006123a78482850161200c565b91505092915050565b6000602082840312156123c6576123c5613039565b5b60006123d484828501612021565b91505092915050565b6000602082840312156123f3576123f2613039565b5b600061240184828501612036565b91505092915050565b6000602082840312156124205761241f613039565b5b600061242e8482850161204b565b91505092915050565b60006020828403121561244d5761244c613039565b5b600061245b8482850161208e565b91505092915050565b60006020828403121561247a57612479613039565b5b6000612488848285016120a3565b91505092915050565b600061249d83836127ea565b60208301905092915050565b6124b281612de5565b82525050565b60006124c382612cd4565b6124cd8185612d02565b93506124d883612cc4565b8060005b838110156125095781516124f08882612491565b97506124fb83612cf5565b9250506001810190506124dc565b5085935050505092915050565b61251f81612df7565b82525050565b600061253082612cdf565b61253a8185612d13565b935061254a818560208601612e68565b6125538161303e565b840191505092915050565b600061256982612cea565b6125738185612d24565b9350612583818560208601612e68565b61258c8161303e565b840191505092915050565b60006125a4603483612d24565b91506125af8261305c565b604082019050919050565b60006125c7602883612d24565b91506125d2826130ab565b604082019050919050565b60006125ea602b83612d24565b91506125f5826130fa565b604082019050919050565b600061260d602683612d24565b915061261882613149565b604082019050919050565b6000612630602983612d24565b915061263b82613198565b604082019050919050565b6000612653602283612d24565b915061265e826131e7565b604082019050919050565b6000612676602583612d24565b915061268182613236565b604082019050919050565b6000612699603283612d24565b91506126a482613285565b604082019050919050565b60006126bc602a83612d24565b91506126c7826132d4565b604082019050919050565b60006126df601d83612d24565b91506126ea82613323565b602082019050919050565b6000612702601483612d24565b915061270d8261334c565b602082019050919050565b6000612725602a83612d24565b915061273082613375565b604082019050919050565b6000612748602083612d24565b9150612753826133c4565b602082019050919050565b600061276b602983612d24565b9150612776826133ed565b604082019050919050565b600061278e602983612d24565b91506127998261343c565b604082019050919050565b60006127b1602883612d24565b91506127bc8261348b565b604082019050919050565b60006127d4602183612d24565b91506127df826134da565b604082019050919050565b6127f381612e4f565b82525050565b61280281612e4f565b82525050565b600060208201905061281d60008301846124a9565b92915050565b600060a08201905061283860008301886124a9565b61284560208301876124a9565b818103604083015261285781866124b8565b9050818103606083015261286b81856124b8565b9050818103608083015261287f8184612525565b90509695505050505050565b60006060820190506128a060008301866124a9565b6128ad60208301856124a9565b6128ba60408301846127f9565b949350505050565b600060a0820190506128d760008301886124a9565b6128e460208301876124a9565b6128f160408301866127f9565b6128fe60608301856127f9565b81810360808301526129108184612525565b90509695505050505050565b6000602082019050818103600083015261293681846124b8565b905092915050565b6000604082019050818103600083015261295881856124b8565b9050818103602083015261296c81846124b8565b90509392505050565b600060208201905061298a6000830184612516565b92915050565b600060208201905081810360008301526129aa818461255e565b905092915050565b600060208201905081810360008301526129cb81612597565b9050919050565b600060208201905081810360008301526129eb816125ba565b9050919050565b60006020820190508181036000830152612a0b816125dd565b9050919050565b60006020820190508181036000830152612a2b81612600565b9050919050565b60006020820190508181036000830152612a4b81612623565b9050919050565b60006020820190508181036000830152612a6b81612646565b9050919050565b60006020820190508181036000830152612a8b81612669565b9050919050565b60006020820190508181036000830152612aab8161268c565b9050919050565b60006020820190508181036000830152612acb816126af565b9050919050565b60006020820190508181036000830152612aeb816126d2565b9050919050565b60006020820190508181036000830152612b0b816126f5565b9050919050565b60006020820190508181036000830152612b2b81612718565b9050919050565b60006020820190508181036000830152612b4b8161273b565b9050919050565b60006020820190508181036000830152612b6b8161275e565b9050919050565b60006020820190508181036000830152612b8b81612781565b9050919050565b60006020820190508181036000830152612bab816127a4565b9050919050565b60006020820190508181036000830152612bcb816127c7565b9050919050565b6000602082019050612be760008301846127f9565b92915050565b6000604082019050612c0260008301856127f9565b612c0f60208301846127f9565b9392505050565b6000612c20612c31565b9050612c2c8282612ecd565b919050565b6000604051905090565b600067ffffffffffffffff821115612c5657612c55612fd4565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612c8257612c81612fd4565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612cae57612cad612fd4565b5b612cb78261303e565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612d4082612e4f565b9150612d4b83612e4f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d8057612d7f612f47565b5b828201905092915050565b6000612d9682612e4f565b9150612da183612e4f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612dda57612dd9612f47565b5b828202905092915050565b6000612df082612e2f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e86578082015181840152602081019050612e6b565b83811115612e95576000848401525b50505050565b60006002820490506001821680612eb357607f821691505b60208210811415612ec757612ec6612f76565b5b50919050565b612ed68261303e565b810181811067ffffffffffffffff82111715612ef557612ef4612fd4565b5b80604052505050565b6000612f0982612e4f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f3c57612f3b612f47565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156130225760046000803e61301f60005161304f565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f56616c7565206f662070756e6b73206973206e6f7420636f7272656374000000600082015250565b7f56616c7565206973206e6f7420636f7272656374000000000000000000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613539576135bc565b613541612c31565b60043d036004823e80513d602482011167ffffffffffffffff821117156135695750506135bc565b808201805167ffffffffffffffff81111561358757505050506135bc565b80602083010160043d0385018111156135a45750505050506135bc565b6135b382602001850186612ecd565b82955050505050505b90565b6135c881612de5565b81146135d357600080fd5b50565b6135df81612df7565b81146135ea57600080fd5b50565b6135f681612e03565b811461360157600080fd5b50565b61360d81612e4f565b811461361857600080fd5b5056fea2646970667358221220a4365112d1a7a147f6a4407fb50ff8839a94012fb85a4b86195ebe857b9e737f64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5557506551316f4d62776b4b4341724c59745139327657737944487636775a70335a6673387a4a777364387000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012b5760003560e01c8063a22cb465116100ad578063cabcc71811610071578063cabcc71814610354578063e985e9c514610372578063eb8d2444146103a2578063f242432a146103c0578063f2fde38b146103dc5761012b565b8063a22cb4651461029e578063b683674f146102ba578063bd85b039146102ea578063c3f1a3a71461031a578063c4e37095146103385761012b565b80634f558e79116100f45780634f558e791461020c578063715018a61461023c5780638da5cb5b14610246578063993cb90214610264578063a0712d68146102825761012b565b8062fdd58e1461013057806301ffc9a7146101605780630e89341c146101905780632eb2c2d6146101c05780634e1273f4146101dc575b600080fd5b61014a600480360381019061014591906122cb565b6103f8565b6040516101579190612bd2565b60405180910390f35b61017a600480360381019061017591906123dd565b6104c1565b6040516101879190612975565b60405180910390f35b6101aa60048036038101906101a59190612437565b6105a3565b6040516101b79190612990565b60405180910390f35b6101da60048036038101906101d59190612125565b610637565b005b6101f660048036038101906101f1919061230b565b6106d8565b604051610203919061291c565b60405180910390f35b61022660048036038101906102219190612437565b6107f1565b6040516102339190612975565b60405180910390f35b610244610805565b005b61024e61088d565b60405161025b9190612808565b60405180910390f35b61026c6108b7565b6040516102799190612808565b60405180910390f35b61029c60048036038101906102979190612437565b6108cf565b005b6102b860048036038101906102b3919061228b565b610c36565b005b6102d460048036038101906102cf91906120b8565b610db7565b6040516102e19190612bd2565b60405180910390f35b61030460048036038101906102ff9190612437565b610e62565b6040516103119190612bd2565b60405180910390f35b610322610e7f565b60405161032f9190612808565b60405180910390f35b610352600480360381019061034d9190612383565b610e97565b005b61035c610f30565b6040516103699190612808565b60405180910390f35b61038c600480360381019061038791906120e5565b610f36565b6040516103999190612975565b60405180910390f35b6103aa610fca565b6040516103b79190612975565b60405180910390f35b6103da60048036038101906103d591906121f4565b610fdd565b005b6103f660048036038101906103f191906120b8565b61107e565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610469576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610460906129f2565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058c57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061059c575061059b82611176565b5b9050919050565b6060600280546105b290612e9b565b80601f01602080910402602001604051908101604052809291908181526020018280546105de90612e9b565b801561062b5780601f106106005761010080835404028352916020019161062b565b820191906000526020600020905b81548152906001019060200180831161060e57829003601f168201915b50505050509050919050565b61063f6111e0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061068557506106848561067f6111e0565b610f36565b5b6106c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bb90612a92565b60405180910390fd5b6106d185858585856111e8565b5050505050565b6060815183511461071e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071590612b72565b60405180910390fd5b6000835167ffffffffffffffff81111561073b5761073a612fd4565b5b6040519080825280602002602001820160405280156107695781602001602082028036833780820191505090505b50905060005b84518110156107e6576107b685828151811061078e5761078d612fa5565b5b60200260200101518583815181106107a9576107a8612fa5565b5b60200260200101516103f8565b8282815181106107c9576107c8612fa5565b5b602002602001018181525050806107df90612efe565b905061076f565b508091505092915050565b6000806107fd83610e62565b119050919050565b61080d6111e0565b73ffffffffffffffffffffffffffffffffffffffff1661082b61088d565b73ffffffffffffffffffffffffffffffffffffffff1614610881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087890612b32565b60405180910390fd5b61088b60006114fc565b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b73bea8123277142de42571f1fac045225a1d34797781565b600460149054906101000a900460ff1661091e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091590612a52565b60405180910390fd5b611e618161092d600554610e62565b6109379190612d35565b1115610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f90612ab2565b60405180910390fd5b600073c13f4f0f865bac08f62654b57e38669ebc4747a373ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016109c79190612808565b60206040518083038186803b1580156109df57600080fd5b505afa1580156109f3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a179190612464565b90508082681043561a8829300000610a2f9190612d8b565b1115610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6790612af2565b60405180910390fd5b600073bea8123277142de42571f1fac045225a1d34797773ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610abf9190612808565b60206040518083038186803b158015610ad757600080fd5b505afa158015610aeb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0f9190612464565b905060008111610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b90612ad2565b60405180910390fd5b600083681043561a8829300000610b6b9190612d8b565b905073c13f4f0f865bac08f62654b57e38669ebc4747a373ffffffffffffffffffffffffffffffffffffffff166323b872dd3361dead846040518463ffffffff1660e01b8152600401610bc09392919061288b565b602060405180830381600087803b158015610bda57600080fd5b505af1158015610bee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1291906123b0565b50610c303360055486604051806020016040528060008152506115c2565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff16610c556111e0565b73ffffffffffffffffffffffffffffffffffffffff161415610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca390612b52565b60405180910390fd5b8060016000610cb96111e0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d666111e0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dab9190612975565b60405180910390a35050565b60008073c13f4f0f865bac08f62654b57e38669ebc4747a373ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401610e079190612808565b60206040518083038186803b158015610e1f57600080fd5b505afa158015610e33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e579190612464565b905080915050919050565b600060036000838152602001908152602001600020549050919050565b73c13f4f0f865bac08f62654b57e38669ebc4747a381565b610e9f6111e0565b73ffffffffffffffffffffffffffffffffffffffff16610ebd61088d565b73ffffffffffffffffffffffffffffffffffffffff1614610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90612b32565b60405180910390fd5b80600460146101000a81548160ff02191690831515021790555050565b61dead81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600460149054906101000a900460ff1681565b610fe56111e0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061102b575061102a856110256111e0565b610f36565b5b61106a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106190612a32565b60405180910390fd5b61107785858585856115fe565b5050505050565b6110866111e0565b73ffffffffffffffffffffffffffffffffffffffff166110a461088d565b73ffffffffffffffffffffffffffffffffffffffff16146110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190612b32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561116a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116190612a12565b60405180910390fd5b611173816114fc565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b815183511461122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390612b92565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390612a72565b60405180910390fd5b60006112a66111e0565b90506112b6818787878787611880565b60005b84518110156114675760008582815181106112d7576112d6612fa5565b5b6020026020010151905060008583815181106112f6576112f5612fa5565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e90612b12565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144c9190612d35565b925050819055505050508061146090612efe565b90506112b9565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516114de92919061293e565b60405180910390a46114f4818787878787611888565b505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6115ce84848484611a6f565b816003600085815260200190815260200160002060008282546115f19190612d35565b9250508190555050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590612a72565b60405180910390fd5b60006116786111e0565b905061169881878761168988611c05565b61169288611c05565b87611880565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561172f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172690612b12565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117e49190612d35565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611861929190612bed565b60405180910390a4611877828888888888611c7f565b50505050505050565b505050505050565b6118a78473ffffffffffffffffffffffffffffffffffffffff16611e66565b15611a67578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016118ed959493929190612823565b602060405180830381600087803b15801561190757600080fd5b505af192505050801561193857506040513d601f19601f82011682018060405250810190611935919061240a565b60015b6119de57611944613003565b806308c379a014156119a15750611959613529565b8061196457506119a3565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119989190612990565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d5906129b2565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c906129d2565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad690612bb2565b60405180910390fd5b6000611ae96111e0565b9050611b0a81600087611afb88611c05565b611b0488611c05565b87611880565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b699190612d35565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611be7929190612bed565b60405180910390a4611bfe81600087878787611c7f565b5050505050565b60606000600167ffffffffffffffff811115611c2457611c23612fd4565b5b604051908082528060200260200182016040528015611c525781602001602082028036833780820191505090505b5090508281600081518110611c6a57611c69612fa5565b5b60200260200101818152505080915050919050565b611c9e8473ffffffffffffffffffffffffffffffffffffffff16611e66565b15611e5e578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611ce49594939291906128c2565b602060405180830381600087803b158015611cfe57600080fd5b505af1925050508015611d2f57506040513d601f19601f82011682018060405250810190611d2c919061240a565b60015b611dd557611d3b613003565b806308c379a01415611d985750611d50613529565b80611d5b5750611d9a565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f9190612990565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc906129b2565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e53906129d2565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b6000611e8c611e8784612c3b565b612c16565b90508083825260208201905082856020860282011115611eaf57611eae61302a565b5b60005b85811015611edf5781611ec58882611f9b565b845260208401935060208301925050600181019050611eb2565b5050509392505050565b6000611efc611ef784612c67565b612c16565b90508083825260208201905082856020860282011115611f1f57611f1e61302a565b5b60005b85811015611f4f5781611f35888261208e565b845260208401935060208301925050600181019050611f22565b5050509392505050565b6000611f6c611f6784612c93565b612c16565b905082815260208101848484011115611f8857611f8761302f565b5b611f93848285612e59565b509392505050565b600081359050611faa816135bf565b92915050565b600082601f830112611fc557611fc4613025565b5b8135611fd5848260208601611e79565b91505092915050565b600082601f830112611ff357611ff2613025565b5b8135612003848260208601611ee9565b91505092915050565b60008135905061201b816135d6565b92915050565b600081519050612030816135d6565b92915050565b600081359050612045816135ed565b92915050565b60008151905061205a816135ed565b92915050565b600082601f83011261207557612074613025565b5b8135612085848260208601611f59565b91505092915050565b60008135905061209d81613604565b92915050565b6000815190506120b281613604565b92915050565b6000602082840312156120ce576120cd613039565b5b60006120dc84828501611f9b565b91505092915050565b600080604083850312156120fc576120fb613039565b5b600061210a85828601611f9b565b925050602061211b85828601611f9b565b9150509250929050565b600080600080600060a0868803121561214157612140613039565b5b600061214f88828901611f9b565b955050602061216088828901611f9b565b945050604086013567ffffffffffffffff81111561218157612180613034565b5b61218d88828901611fde565b935050606086013567ffffffffffffffff8111156121ae576121ad613034565b5b6121ba88828901611fde565b925050608086013567ffffffffffffffff8111156121db576121da613034565b5b6121e788828901612060565b9150509295509295909350565b600080600080600060a086880312156122105761220f613039565b5b600061221e88828901611f9b565b955050602061222f88828901611f9b565b94505060406122408882890161208e565b93505060606122518882890161208e565b925050608086013567ffffffffffffffff81111561227257612271613034565b5b61227e88828901612060565b9150509295509295909350565b600080604083850312156122a2576122a1613039565b5b60006122b085828601611f9b565b92505060206122c18582860161200c565b9150509250929050565b600080604083850312156122e2576122e1613039565b5b60006122f085828601611f9b565b92505060206123018582860161208e565b9150509250929050565b6000806040838503121561232257612321613039565b5b600083013567ffffffffffffffff8111156123405761233f613034565b5b61234c85828601611fb0565b925050602083013567ffffffffffffffff81111561236d5761236c613034565b5b61237985828601611fde565b9150509250929050565b60006020828403121561239957612398613039565b5b60006123a78482850161200c565b91505092915050565b6000602082840312156123c6576123c5613039565b5b60006123d484828501612021565b91505092915050565b6000602082840312156123f3576123f2613039565b5b600061240184828501612036565b91505092915050565b6000602082840312156124205761241f613039565b5b600061242e8482850161204b565b91505092915050565b60006020828403121561244d5761244c613039565b5b600061245b8482850161208e565b91505092915050565b60006020828403121561247a57612479613039565b5b6000612488848285016120a3565b91505092915050565b600061249d83836127ea565b60208301905092915050565b6124b281612de5565b82525050565b60006124c382612cd4565b6124cd8185612d02565b93506124d883612cc4565b8060005b838110156125095781516124f08882612491565b97506124fb83612cf5565b9250506001810190506124dc565b5085935050505092915050565b61251f81612df7565b82525050565b600061253082612cdf565b61253a8185612d13565b935061254a818560208601612e68565b6125538161303e565b840191505092915050565b600061256982612cea565b6125738185612d24565b9350612583818560208601612e68565b61258c8161303e565b840191505092915050565b60006125a4603483612d24565b91506125af8261305c565b604082019050919050565b60006125c7602883612d24565b91506125d2826130ab565b604082019050919050565b60006125ea602b83612d24565b91506125f5826130fa565b604082019050919050565b600061260d602683612d24565b915061261882613149565b604082019050919050565b6000612630602983612d24565b915061263b82613198565b604082019050919050565b6000612653602283612d24565b915061265e826131e7565b604082019050919050565b6000612676602583612d24565b915061268182613236565b604082019050919050565b6000612699603283612d24565b91506126a482613285565b604082019050919050565b60006126bc602a83612d24565b91506126c7826132d4565b604082019050919050565b60006126df601d83612d24565b91506126ea82613323565b602082019050919050565b6000612702601483612d24565b915061270d8261334c565b602082019050919050565b6000612725602a83612d24565b915061273082613375565b604082019050919050565b6000612748602083612d24565b9150612753826133c4565b602082019050919050565b600061276b602983612d24565b9150612776826133ed565b604082019050919050565b600061278e602983612d24565b91506127998261343c565b604082019050919050565b60006127b1602883612d24565b91506127bc8261348b565b604082019050919050565b60006127d4602183612d24565b91506127df826134da565b604082019050919050565b6127f381612e4f565b82525050565b61280281612e4f565b82525050565b600060208201905061281d60008301846124a9565b92915050565b600060a08201905061283860008301886124a9565b61284560208301876124a9565b818103604083015261285781866124b8565b9050818103606083015261286b81856124b8565b9050818103608083015261287f8184612525565b90509695505050505050565b60006060820190506128a060008301866124a9565b6128ad60208301856124a9565b6128ba60408301846127f9565b949350505050565b600060a0820190506128d760008301886124a9565b6128e460208301876124a9565b6128f160408301866127f9565b6128fe60608301856127f9565b81810360808301526129108184612525565b90509695505050505050565b6000602082019050818103600083015261293681846124b8565b905092915050565b6000604082019050818103600083015261295881856124b8565b9050818103602083015261296c81846124b8565b90509392505050565b600060208201905061298a6000830184612516565b92915050565b600060208201905081810360008301526129aa818461255e565b905092915050565b600060208201905081810360008301526129cb81612597565b9050919050565b600060208201905081810360008301526129eb816125ba565b9050919050565b60006020820190508181036000830152612a0b816125dd565b9050919050565b60006020820190508181036000830152612a2b81612600565b9050919050565b60006020820190508181036000830152612a4b81612623565b9050919050565b60006020820190508181036000830152612a6b81612646565b9050919050565b60006020820190508181036000830152612a8b81612669565b9050919050565b60006020820190508181036000830152612aab8161268c565b9050919050565b60006020820190508181036000830152612acb816126af565b9050919050565b60006020820190508181036000830152612aeb816126d2565b9050919050565b60006020820190508181036000830152612b0b816126f5565b9050919050565b60006020820190508181036000830152612b2b81612718565b9050919050565b60006020820190508181036000830152612b4b8161273b565b9050919050565b60006020820190508181036000830152612b6b8161275e565b9050919050565b60006020820190508181036000830152612b8b81612781565b9050919050565b60006020820190508181036000830152612bab816127a4565b9050919050565b60006020820190508181036000830152612bcb816127c7565b9050919050565b6000602082019050612be760008301846127f9565b92915050565b6000604082019050612c0260008301856127f9565b612c0f60208301846127f9565b9392505050565b6000612c20612c31565b9050612c2c8282612ecd565b919050565b6000604051905090565b600067ffffffffffffffff821115612c5657612c55612fd4565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612c8257612c81612fd4565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612cae57612cad612fd4565b5b612cb78261303e565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612d4082612e4f565b9150612d4b83612e4f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d8057612d7f612f47565b5b828201905092915050565b6000612d9682612e4f565b9150612da183612e4f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612dda57612dd9612f47565b5b828202905092915050565b6000612df082612e2f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e86578082015181840152602081019050612e6b565b83811115612e95576000848401525b50505050565b60006002820490506001821680612eb357607f821691505b60208210811415612ec757612ec6612f76565b5b50919050565b612ed68261303e565b810181811067ffffffffffffffff82111715612ef557612ef4612fd4565b5b80604052505050565b6000612f0982612e4f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f3c57612f3b612f47565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156130225760046000803e61301f60005161304f565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f56616c7565206f662070756e6b73206973206e6f7420636f7272656374000000600082015250565b7f56616c7565206973206e6f7420636f7272656374000000000000000000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613539576135bc565b613541612c31565b60043d036004823e80513d602482011167ffffffffffffffff821117156135695750506135bc565b808201805167ffffffffffffffff81111561358757505050506135bc565b80602083010160043d0385018111156135a45750505050506135bc565b6135b382602001850186612ecd565b82955050505050505b90565b6135c881612de5565b81146135d357600080fd5b50565b6135df81612df7565b81146135ea57600080fd5b50565b6135f681612e03565b811461360157600080fd5b50565b61360d81612e4f565b811461361857600080fd5b5056fea2646970667358221220a4365112d1a7a147f6a4407fb50ff8839a94012fb85a4b86195ebe857b9e737f64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5557506551316f4d62776b4b4341724c59745139327657737944487636775a70335a6673387a4a777364387000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : uri (string): https://gateway.pinata.cloud/ipfs/QmUWPeQ1oMbwkKCArLYtQ92vWsyDHv6wZp3Zfs8zJwsd8p

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d5557506551316f4d62776b4b4341724c597451393276577379444876
Arg [4] : 36775a70335a6673387a4a777364387000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.