ETH Price: $3,483.34 (+3.48%)
Gas: 2 Gwei

Token

OSYC KEYS (OSYCK)
 

Overview

Max Total Supply

0 OSYCK

Holders

234

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
osyc-vault.eth
0x20f82d67d0c766f35b8c6b46d7a626b33b940b7d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OSYCKEY

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

/***************************************************************************
          ___        __         _     __           __   __ ___
        / __ \      / /_  _____(_)___/ /____       \ \ / /  _ \
       / / / /_  __/ __/ / ___/ / __  / __  )       \ / /| |
      / /_/ / /_/ / /_  (__  ) / /_/ / ____/         | | | |_
      \____/\____/\__/ /____/_/\__,_/\____/          |_|  \___/
                                       
****************************************************************************/

pragma solidity ^0.8.0;

import "./ERC1155.sol";
import "./Ownable.sol";

contract OSYCKEY is Ownable, ERC1155 {
    string private name_;
    string private symbol_;

    mapping(uint8 => uint16) public MAX_SUPPLY;
    mapping(uint8 => uint16) public mintedCount;
    mapping(uint8 => address) public allowedAddress;
    mapping(uint8 => uint256) public price;

    constructor(string memory _name, string memory _symbol) {
        name_ = _name;
        symbol_ = _symbol;
    }

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

    function symbol() public view virtual returns (string memory) {
        return symbol_;
    }

    function setBaseURI(string memory _baseURI) external onlyOwner {
        _setURI(_baseURI);
    }

    function setConfig(
        uint8 keyId,
        uint16 _max_supply,
        address _allowedAddress
    ) external onlyOwner {
        MAX_SUPPLY[keyId] = _max_supply;
        allowedAddress[keyId] = _allowedAddress;
    }

    function setMintPrice(uint8 keyId, uint256 _price) external onlyOwner {
        price[keyId] = _price;
    }

    function mintKey(
        address account,
        uint8 keyId,
        uint8 amount
    ) external {
        require(msg.sender == allowedAddress[keyId], "Not allowed to Mint");
        require(
            mintedCount[keyId] + amount < MAX_SUPPLY[keyId],
            "Max Limit To Sale"
        );

        _mint(account, keyId, amount, "");
        mintedCount[keyId] = mintedCount[keyId] + amount;
    }

    function burn(
        address from,
        uint256 id,
        uint256 amount
    ) public virtual {
        require(
            _msgSender() == owner() || isApprovedForAll(from, _msgSender()),
            "ERC1155Burnable: caller is not owner nor approved"
        );
        _burn(from, id, amount);
    }

    function buy(uint8 keyId, uint8 amount) external payable {
        require(tx.origin == msg.sender, "Only EOA");
        require(price[keyId] > 0, "No opened sale.");
        require(
            price[keyId] * amount <= msg.value,
            "Insufficient value To Mint"
        );

        _mint(msg.sender, keyId, amount, "");
    }

    function reserveKey(
        address[] memory accounts,
        uint8 keyId,
        uint8 amount
    ) external onlyOwner {
        require(
            mintedCount[keyId] + amount * accounts.length < MAX_SUPPLY[keyId],
            "Max Limit To Sale"
        );
        for (uint8 i = 0; i < accounts.length; i++) {
            _mint(accounts[i], keyId, amount, "");
        }
        mintedCount[keyId] =
            mintedCount[keyId] +
            uint16(amount * accounts.length);
    }

    function withdrawAll() external onlyOwner {
        uint256 totalBalance = address(this).balance;
        payable(msg.sender).transfer(totalBalance);
    }
}

File 1 of 11: Address.sol
// SPDX-License-Identifier: MIT

/***************************************************************************
          ___        __         _     __           __   __ ___
        / __ \      / /_  _____(_)___/ /____       \ \ / /  _ \
       / / / /_  __/ __/ / ___/ / __  / __  )       \ / /| |
      / /_/ / /_/ / /_  (__  ) / /_/ / ____/         | | | |_
      \____/\____/\__/ /____/_/\__,_/\____/          |_|  \___/
                                       
****************************************************************************/

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/***************************************************************************
          ___        __         _     __           __   __ ___
        / __ \      / /_  _____(_)___/ /____       \ \ / /  _ \
       / / / /_  __/ __/ / ___/ / __  / __  )       \ / /| |
      / /_/ / /_/ / /_  (__  ) / /_/ / ____/         | | | |_
      \____/\____/\__/ /____/_/\__,_/\____/          |_|  \___/
                                       
****************************************************************************/

pragma solidity ^0.8.0;

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

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

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

/***************************************************************************
          ___        __         _     __           __   __ ___
        / __ \      / /_  _____(_)___/ /____       \ \ / /  _ \
       / / / /_  __/ __/ / ___/ / __  / __  )       \ / /| |
      / /_/ / /_/ / /_  (__  ) / /_/ / ____/         | | | |_
      \____/\____/\__/ /____/_/\__,_/\____/          |_|  \___/
                                       
****************************************************************************/

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./IERC1155MetadataURI.sol";
import "./Address.sol";
import "./Context.sol";
import "./ERC165.sol";
import "./Strings.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 Strings for uint256;
    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() {
    }

    /**
     * @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 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        return string(abi.encodePacked(_uri, tokenId.toString()));
    }

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

        address operator = _msgSender();

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

/***************************************************************************
          ___        __         _     __           __   __ ___
        / __ \      / /_  _____(_)___/ /____       \ \ / /  _ \
       / / / /_  __/ __/ / ___/ / __  / __  )       \ / /| |
      / /_/ / /_/ / /_  (__  ) / /_/ / ____/         | | | |_
      \____/\____/\__/ /____/_/\__,_/\____/          |_|  \___/
                                       
****************************************************************************/

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

/***************************************************************************
          ___        __         _     __           __   __ ___
        / __ \      / /_  _____(_)___/ /____       \ \ / /  _ \
       / / / /_  __/ __/ / ___/ / __  / __  )       \ / /| |
      / /_/ / /_/ / /_  (__  ) / /_/ / ____/         | | | |_
      \____/\____/\__/ /____/_/\__,_/\____/          |_|  \___/
                                       
****************************************************************************/

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

File 6 of 11: 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 7 of 11: IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

/***************************************************************************
          ___        __         _     __           __   __ ___
        / __ \      / /_  _____(_)___/ /____       \ \ / /  _ \
       / / / /_  __/ __/ / ___/ / __  / __  )       \ / /| |
      / /_/ / /_/ / /_  (__  ) / /_/ / ____/         | | | |_
      \____/\____/\__/ /____/_/\__,_/\____/          |_|  \___/
                                       
****************************************************************************/

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

/***************************************************************************
          ___        __         _     __           __   __ ___
        / __ \      / /_  _____(_)___/ /____       \ \ / /  _ \
       / / / /_  __/ __/ / ___/ / __  / __  )       \ / /| |
      / /_/ / /_/ / /_  (__  ) / /_/ / ____/         | | | |_
      \____/\____/\__/ /____/_/\__,_/\____/          |_|  \___/
                                       
****************************************************************************/

pragma solidity ^0.8.0;

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

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

/***************************************************************************
          ___        __         _     __           __   __ ___
        / __ \      / /_  _____(_)___/ /____       \ \ / /  _ \
       / / / /_  __/ __/ / ___/ / __  / __  )       \ / /| |
      / /_/ / /_/ / /_  (__  ) / /_/ / ____/         | | | |_
      \____/\____/\__/ /____/_/\__,_/\____/          |_|  \___/
                                       
****************************************************************************/

pragma solidity ^0.8.0;

import "./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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 11 of 11: 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"allowedAddress","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":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"keyId","type":"uint8"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint8","name":"keyId","type":"uint8"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mintKey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"mintedCount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint8","name":"keyId","type":"uint8"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"reserveKey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"keyId","type":"uint8"},{"internalType":"uint16","name":"_max_supply","type":"uint16"},{"internalType":"address","name":"_allowedAddress","type":"address"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"keyId","type":"uint8"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200295538038062002955833981016040819052620000349162000206565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200008a906004906020850190620000a9565b508051620000a0906005906020840190620000a9565b505050620002c3565b828054620000b79062000270565b90600052602060002090601f016020900481019282620000db576000855562000126565b82601f10620000f657805160ff191683800117855562000126565b8280016001018555821562000126579182015b828111156200012657825182559160200191906001019062000109565b506200013492915062000138565b5090565b5b8082111562000134576000815560010162000139565b600082601f8301126200016157600080fd5b81516001600160401b03808211156200017e576200017e620002ad565b604051601f8301601f19908116603f01168101908282118183101715620001a957620001a9620002ad565b81604052838152602092508683858801011115620001c657600080fd5b600091505b83821015620001ea5785820183015181830184015290820190620001cb565b83821115620001fc5760008385830101525b9695505050505050565b600080604083850312156200021a57600080fd5b82516001600160401b03808211156200023257600080fd5b62000240868387016200014f565b935060208501519150808211156200025757600080fd5b5062000266858286016200014f565b9150509250929050565b600181811c908216806200028557607f821691505b60208210811415620002a757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61268280620002d36000396000f3fe6080604052600436106101655760003560e01c806378ec4f9b116100d1578063a22cb4651161008a578063e985e9c511610064578063e985e9c51461047e578063f242432a146104c7578063f2fde38b146104e7578063f5298aca1461050757600080fd5b8063a22cb46514610400578063b7fafcd714610420578063d406d4531461044d57600080fd5b806378ec4f9b146103585780637b2183ae14610378578063853828b6146103985780638cdc315b146103ad5780638da5cb5b146103cd57806395d89b41146103eb57600080fd5b80632eb2c2d6116101235780632eb2c2d6146102a15780632fcdb11b146102c35780634ac89714146102e35780634e1273f4146102f657806355f804b314610323578063715018a61461034357600080fd5b8062fdd58e1461016a57806301ffc9a71461019d57806306fdde03146101cd5780630e89341c146101ef57806319dd167a1461020f5780631b58fb8814610253575b600080fd5b34801561017657600080fd5b5061018a610185366004611df6565b610527565b6040519081526020015b60405180910390f35b3480156101a957600080fd5b506101bd6101b8366004611f41565b6105c0565b6040519015158152602001610194565b3480156101d957600080fd5b506101e2610612565b6040516101949190612286565b3480156101fb57600080fd5b506101e261020a366004611fc4565b6106a4565b34801561021b57600080fd5b5061024061022a366004611fdd565b60066020526000908152604090205461ffff1681565b60405161ffff9091168152602001610194565b34801561025f57600080fd5b5061028961026e366004611fdd565b6008602052600090815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610194565b3480156102ad57600080fd5b506102c16102bc366004611cab565b6106d8565b005b3480156102cf57600080fd5b506102c16102de366004611efa565b61076f565b6102c16102f1366004612057565b6108df565b34801561030257600080fd5b50610316610311366004611e96565b610a00565b604051610194919061224e565b34801561032f57600080fd5b506102c161033e366004611f7b565b610b2a565b34801561034f57600080fd5b506102c1610b60565b34801561036457600080fd5b506102c161037336600461203b565b610bd4565b34801561038457600080fd5b506102c1610393366004611ff8565b610c14565b3480156103a457600080fd5b506102c1610c8e565b3480156103b957600080fd5b506102c16103c8366004611e53565b610ce7565b3480156103d957600080fd5b506000546001600160a01b0316610289565b3480156103f757600080fd5b506101e2610e06565b34801561040c57600080fd5b506102c161041b366004611dba565b610e15565b34801561042c57600080fd5b5061018a61043b366004611fdd565b60096020526000908152604090205481565b34801561045957600080fd5b50610240610468366004611fdd565b60076020526000908152604090205461ffff1681565b34801561048a57600080fd5b506101bd610499366004611c78565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b3480156104d357600080fd5b506102c16104e2366004611d55565b610e20565b3480156104f357600080fd5b506102c1610502366004611c5d565b610ea7565b34801561051357600080fd5b506102c1610522366004611e20565b610f91565b60006001600160a01b0383166105985760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806105f157506001600160e01b031982166303a24d0760e21b145b8061060c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606004805461062190612481565b80601f016020809104026020016040519081016040528092919081815260200182805461064d90612481565b801561069a5780601f1061066f5761010080835404028352916020019161069a565b820191906000526020600020905b81548152906001019060200180831161067d57829003601f168201915b5050505050905090565b606060036106b183611025565b6040516020016106c2929190612104565b6040516020818303038152906040529050919050565b6001600160a01b0385163314806106f457506106f48533610499565b61075b5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161058f565b610768858585858561112b565b5050505050565b6000546001600160a01b031633146107995760405162461bcd60e51b815260040161058f90612370565b60ff808316600090815260066020526040902054845161ffff909116916107c29190841661241b565b60ff84166000908152600760205260409020546107e3919061ffff166123ef565b106108245760405162461bcd60e51b81526020600482015260116024820152704d6178204c696d697420546f2053616c6560781b604482015260640161058f565b60005b83518160ff16101561088257610870848260ff168151811061084b5761084b612564565b60200260200101518460ff168460ff166040518060200160405280600081525061130b565b8061087a81612504565b915050610827565b5082516108929060ff831661241b565b60ff83166000908152600760205260409020546108b3919061ffff166123c9565b60ff929092166000908152600760205260409020805461ffff191661ffff909316929092179091555050565b3233146109195760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b604482015260640161058f565b60ff821660009081526009602052604090205461096a5760405162461bcd60e51b815260206004820152600f60248201526e27379037b832b732b21039b0b6329760891b604482015260640161058f565b60ff828116600090815260096020526040902054349161098d919084169061241b565b11156109db5760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742076616c756520546f204d696e74000000000000604482015260640161058f565b6109fc338360ff168360ff166040518060200160405280600081525061130b565b5050565b60608151835114610a655760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161058f565b6000835167ffffffffffffffff811115610a8157610a8161257a565b604051908082528060200260200182016040528015610aaa578160200160208202803683370190505b50905060005b8451811015610b2257610af5858281518110610ace57610ace612564565b6020026020010151858381518110610ae857610ae8612564565b6020026020010151610527565b828281518110610b0757610b07612564565b6020908102919091010152610b1b816124e9565b9050610ab0565b509392505050565b6000546001600160a01b03163314610b545760405162461bcd60e51b815260040161058f90612370565b610b5d81611417565b50565b6000546001600160a01b03163314610b8a5760405162461bcd60e51b815260040161058f90612370565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610bfe5760405162461bcd60e51b815260040161058f90612370565b60ff909116600090815260096020526040902055565b6000546001600160a01b03163314610c3e5760405162461bcd60e51b815260040161058f90612370565b60ff929092166000908152600660209081526040808320805461ffff191661ffff9590951694909417909355600890522080546001600160a01b0319166001600160a01b03909216919091179055565b6000546001600160a01b03163314610cb85760405162461bcd60e51b815260040161058f90612370565b6040514790339082156108fc029083906000818181858888f193505050501580156109fc573d6000803e3d6000fd5b60ff82166000908152600860205260409020546001600160a01b03163314610d475760405162461bcd60e51b8152602060048201526013602482015272139bdd08185b1b1bddd959081d1bc8135a5b9d606a1b604482015260640161058f565b60ff80831660009081526006602090815260408083205460079092529091205461ffff91821692610d7c9290851691166123c9565b61ffff1610610dc15760405162461bcd60e51b81526020600482015260116024820152704d6178204c696d697420546f2053616c6560781b604482015260640161058f565b610de2838360ff168360ff166040518060200160405280600081525061130b565b60ff8281166000908152600760205260409020546108b39183169061ffff166123c9565b60606005805461062190612481565b6109fc33838361142a565b6001600160a01b038516331480610e3c5750610e3c8533610499565b610e9a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161058f565b610768858585858561150b565b6000546001600160a01b03163314610ed15760405162461bcd60e51b815260040161058f90612370565b6001600160a01b038116610f365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161058f565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331480610faf5750610faf8333610499565b6110155760405162461bcd60e51b815260206004820152603160248201527f455243313135354275726e61626c653a2063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606482015260840161058f565b61102083838361162c565b505050565b6060816110495750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611073578061105d816124e9565b915061106c9050600a83612407565b915061104d565b60008167ffffffffffffffff81111561108e5761108e61257a565b6040519080825280601f01601f1916602001820160405280156110b8576020820181803683370190505b5090505b8415611123576110cd60018361243a565b91506110da600a86612524565b6110e59060306123ef565b60f81b8183815181106110fa576110fa612564565b60200101906001600160f81b031916908160001a90535061111c600a86612407565b94506110bc565b949350505050565b815183511461118d5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161058f565b6001600160a01b0384166111b35760405162461bcd60e51b815260040161058f906122e1565b3360005b845181101561129d5760008582815181106111d4576111d4612564565b6020026020010151905060008583815181106111f2576111f2612564565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156112435760405162461bcd60e51b815260040161058f90612326565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906112829084906123ef565b9250508190555050505080611296906124e9565b90506111b7565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112ed929190612261565b60405180910390a46113038187878787876117aa565b505050505050565b6001600160a01b03841661136b5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161058f565b336113858160008761137c88611915565b61076888611915565b60008481526001602090815260408083206001600160a01b0389168452909152812080548592906113b79084906123ef565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461076881600087878787611960565b80516109fc906003906020840190611a2a565b816001600160a01b0316836001600160a01b0316141561149e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161058f565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166115315760405162461bcd60e51b815260040161058f906122e1565b3361154181878761137c88611915565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156115845760405162461bcd60e51b815260040161058f90612326565b60008581526001602090815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906115c39084906123ef565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611623828888888888611960565b50505050505050565b6001600160a01b03831661168e5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b606482015260840161058f565b336116be8185600061169f87611915565b6116a887611915565b5050604080516020810190915260009052505050565b60008381526001602090815260408083206001600160a01b03881684529091529020548281101561173d5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b606482015260840161058f565b60008481526001602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6001600160a01b0384163b156113035760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906117ee90899089908890889088906004016121ab565b602060405180830381600087803b15801561180857600080fd5b505af1925050508015611838575060408051601f3d908101601f1916820190925261183591810190611f5e565b60015b6118e557611844612590565b806308c379a0141561187e57506118596125ac565b806118645750611880565b8060405162461bcd60e51b815260040161058f9190612286565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161058f565b6001600160e01b0319811663bc197c8160e01b146116235760405162461bcd60e51b815260040161058f90612299565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061194f5761194f612564565b602090810291909101015292915050565b6001600160a01b0384163b156113035760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906119a49089908990889088908890600401612209565b602060405180830381600087803b1580156119be57600080fd5b505af19250505080156119ee575060408051601f3d908101601f191682019092526119eb91810190611f5e565b60015b6119fa57611844612590565b6001600160e01b0319811663f23a6e6160e01b146116235760405162461bcd60e51b815260040161058f90612299565b828054611a3690612481565b90600052602060002090601f016020900481019282611a585760008555611a9e565b82601f10611a7157805160ff1916838001178555611a9e565b82800160010185558215611a9e579182015b82811115611a9e578251825591602001919060010190611a83565b50611aaa929150611aae565b5090565b5b80821115611aaa5760008155600101611aaf565b600067ffffffffffffffff831115611add57611add61257a565b604051611af4601f8501601f1916602001826124bc565b809150838152848484011115611b0957600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114611b3857600080fd5b919050565b600082601f830112611b4e57600080fd5b81356020611b5b826123a5565b604051611b6882826124bc565b8381528281019150858301600585901b87018401881015611b8857600080fd5b60005b85811015611bae57611b9c82611b21565b84529284019290840190600101611b8b565b5090979650505050505050565b600082601f830112611bcc57600080fd5b81356020611bd9826123a5565b604051611be682826124bc565b8381528281019150858301600585901b87018401881015611c0657600080fd5b60005b85811015611bae57813584529284019290840190600101611c09565b600082601f830112611c3657600080fd5b611c4583833560208501611ac3565b9392505050565b803560ff81168114611b3857600080fd5b600060208284031215611c6f57600080fd5b611c4582611b21565b60008060408385031215611c8b57600080fd5b611c9483611b21565b9150611ca260208401611b21565b90509250929050565b600080600080600060a08688031215611cc357600080fd5b611ccc86611b21565b9450611cda60208701611b21565b9350604086013567ffffffffffffffff80821115611cf757600080fd5b611d0389838a01611bbb565b94506060880135915080821115611d1957600080fd5b611d2589838a01611bbb565b93506080880135915080821115611d3b57600080fd5b50611d4888828901611c25565b9150509295509295909350565b600080600080600060a08688031215611d6d57600080fd5b611d7686611b21565b9450611d8460208701611b21565b93506040860135925060608601359150608086013567ffffffffffffffff811115611dae57600080fd5b611d4888828901611c25565b60008060408385031215611dcd57600080fd5b611dd683611b21565b915060208301358015158114611deb57600080fd5b809150509250929050565b60008060408385031215611e0957600080fd5b611e1283611b21565b946020939093013593505050565b600080600060608486031215611e3557600080fd5b611e3e84611b21565b95602085013595506040909401359392505050565b600080600060608486031215611e6857600080fd5b611e7184611b21565b9250611e7f60208501611c4c565b9150611e8d60408501611c4c565b90509250925092565b60008060408385031215611ea957600080fd5b823567ffffffffffffffff80821115611ec157600080fd5b611ecd86838701611b3d565b93506020850135915080821115611ee357600080fd5b50611ef085828601611bbb565b9150509250929050565b600080600060608486031215611f0f57600080fd5b833567ffffffffffffffff811115611f2657600080fd5b611f3286828701611b3d565b935050611e7f60208501611c4c565b600060208284031215611f5357600080fd5b8135611c4581612636565b600060208284031215611f7057600080fd5b8151611c4581612636565b600060208284031215611f8d57600080fd5b813567ffffffffffffffff811115611fa457600080fd5b8201601f81018413611fb557600080fd5b61112384823560208401611ac3565b600060208284031215611fd657600080fd5b5035919050565b600060208284031215611fef57600080fd5b611c4582611c4c565b60008060006060848603121561200d57600080fd5b61201684611c4c565b9250602084013561ffff8116811461202d57600080fd5b9150611e8d60408501611b21565b6000806040838503121561204e57600080fd5b611e1283611c4c565b6000806040838503121561206a57600080fd5b61207383611c4c565b9150611ca260208401611c4c565b600081518084526020808501945080840160005b838110156120b157815187529582019590820190600101612095565b509495945050505050565b600081518084526120d4816020860160208601612451565b601f01601f19169290920160200192915050565b600081516120fa818560208601612451565b9290920192915050565b600080845481600182811c91508083168061212057607f831692505b602080841082141561214057634e487b7160e01b86526022600452602486fd5b818015612154576001811461216557612192565b60ff19861689528489019650612192565b60008b81526020902060005b8681101561218a5781548b820152908501908301612171565b505084890196505b5050505050506121a281856120e8565b95945050505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906121d790830186612081565b82810360608401526121e98186612081565b905082810360808401526121fd81856120bc565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612243908301846120bc565b979650505050505050565b602081526000611c456020830184612081565b6040815260006122746040830185612081565b82810360208401526121a28185612081565b602081526000611c4560208301846120bc565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156123bf576123bf61257a565b5060051b60200190565b600061ffff8083168185168083038211156123e6576123e6612538565b01949350505050565b6000821982111561240257612402612538565b500190565b6000826124165761241661254e565b500490565b600081600019048311821515161561243557612435612538565b500290565b60008282101561244c5761244c612538565b500390565b60005b8381101561246c578181015183820152602001612454565b8381111561247b576000848401525b50505050565b600181811c9082168061249557607f821691505b602082108114156124b657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156124e2576124e261257a565b6040525050565b60006000198214156124fd576124fd612538565b5060010190565b600060ff821660ff81141561251b5761251b612538565b60010192915050565b6000826125335761253361254e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156125a95760046000803e5060005160e01c5b90565b600060443d10156125ba5790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156125ea57505050505090565b82850191508151818111156126025750505050505090565b843d870101602082850101111561261c5750505050505090565b61262b602082860101876124bc565b509095945050505050565b6001600160e01b031981168114610b5d57600080fdfea2646970667358221220c463a0b6b0a92d4ae532b29657fb1f8f9c8df294d2cb8bc5f2c986b6fb6222ed64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000094f535943204b455953000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054f5359434b000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101655760003560e01c806378ec4f9b116100d1578063a22cb4651161008a578063e985e9c511610064578063e985e9c51461047e578063f242432a146104c7578063f2fde38b146104e7578063f5298aca1461050757600080fd5b8063a22cb46514610400578063b7fafcd714610420578063d406d4531461044d57600080fd5b806378ec4f9b146103585780637b2183ae14610378578063853828b6146103985780638cdc315b146103ad5780638da5cb5b146103cd57806395d89b41146103eb57600080fd5b80632eb2c2d6116101235780632eb2c2d6146102a15780632fcdb11b146102c35780634ac89714146102e35780634e1273f4146102f657806355f804b314610323578063715018a61461034357600080fd5b8062fdd58e1461016a57806301ffc9a71461019d57806306fdde03146101cd5780630e89341c146101ef57806319dd167a1461020f5780631b58fb8814610253575b600080fd5b34801561017657600080fd5b5061018a610185366004611df6565b610527565b6040519081526020015b60405180910390f35b3480156101a957600080fd5b506101bd6101b8366004611f41565b6105c0565b6040519015158152602001610194565b3480156101d957600080fd5b506101e2610612565b6040516101949190612286565b3480156101fb57600080fd5b506101e261020a366004611fc4565b6106a4565b34801561021b57600080fd5b5061024061022a366004611fdd565b60066020526000908152604090205461ffff1681565b60405161ffff9091168152602001610194565b34801561025f57600080fd5b5061028961026e366004611fdd565b6008602052600090815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610194565b3480156102ad57600080fd5b506102c16102bc366004611cab565b6106d8565b005b3480156102cf57600080fd5b506102c16102de366004611efa565b61076f565b6102c16102f1366004612057565b6108df565b34801561030257600080fd5b50610316610311366004611e96565b610a00565b604051610194919061224e565b34801561032f57600080fd5b506102c161033e366004611f7b565b610b2a565b34801561034f57600080fd5b506102c1610b60565b34801561036457600080fd5b506102c161037336600461203b565b610bd4565b34801561038457600080fd5b506102c1610393366004611ff8565b610c14565b3480156103a457600080fd5b506102c1610c8e565b3480156103b957600080fd5b506102c16103c8366004611e53565b610ce7565b3480156103d957600080fd5b506000546001600160a01b0316610289565b3480156103f757600080fd5b506101e2610e06565b34801561040c57600080fd5b506102c161041b366004611dba565b610e15565b34801561042c57600080fd5b5061018a61043b366004611fdd565b60096020526000908152604090205481565b34801561045957600080fd5b50610240610468366004611fdd565b60076020526000908152604090205461ffff1681565b34801561048a57600080fd5b506101bd610499366004611c78565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b3480156104d357600080fd5b506102c16104e2366004611d55565b610e20565b3480156104f357600080fd5b506102c1610502366004611c5d565b610ea7565b34801561051357600080fd5b506102c1610522366004611e20565b610f91565b60006001600160a01b0383166105985760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806105f157506001600160e01b031982166303a24d0760e21b145b8061060c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606004805461062190612481565b80601f016020809104026020016040519081016040528092919081815260200182805461064d90612481565b801561069a5780601f1061066f5761010080835404028352916020019161069a565b820191906000526020600020905b81548152906001019060200180831161067d57829003601f168201915b5050505050905090565b606060036106b183611025565b6040516020016106c2929190612104565b6040516020818303038152906040529050919050565b6001600160a01b0385163314806106f457506106f48533610499565b61075b5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161058f565b610768858585858561112b565b5050505050565b6000546001600160a01b031633146107995760405162461bcd60e51b815260040161058f90612370565b60ff808316600090815260066020526040902054845161ffff909116916107c29190841661241b565b60ff84166000908152600760205260409020546107e3919061ffff166123ef565b106108245760405162461bcd60e51b81526020600482015260116024820152704d6178204c696d697420546f2053616c6560781b604482015260640161058f565b60005b83518160ff16101561088257610870848260ff168151811061084b5761084b612564565b60200260200101518460ff168460ff166040518060200160405280600081525061130b565b8061087a81612504565b915050610827565b5082516108929060ff831661241b565b60ff83166000908152600760205260409020546108b3919061ffff166123c9565b60ff929092166000908152600760205260409020805461ffff191661ffff909316929092179091555050565b3233146109195760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b604482015260640161058f565b60ff821660009081526009602052604090205461096a5760405162461bcd60e51b815260206004820152600f60248201526e27379037b832b732b21039b0b6329760891b604482015260640161058f565b60ff828116600090815260096020526040902054349161098d919084169061241b565b11156109db5760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742076616c756520546f204d696e74000000000000604482015260640161058f565b6109fc338360ff168360ff166040518060200160405280600081525061130b565b5050565b60608151835114610a655760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161058f565b6000835167ffffffffffffffff811115610a8157610a8161257a565b604051908082528060200260200182016040528015610aaa578160200160208202803683370190505b50905060005b8451811015610b2257610af5858281518110610ace57610ace612564565b6020026020010151858381518110610ae857610ae8612564565b6020026020010151610527565b828281518110610b0757610b07612564565b6020908102919091010152610b1b816124e9565b9050610ab0565b509392505050565b6000546001600160a01b03163314610b545760405162461bcd60e51b815260040161058f90612370565b610b5d81611417565b50565b6000546001600160a01b03163314610b8a5760405162461bcd60e51b815260040161058f90612370565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610bfe5760405162461bcd60e51b815260040161058f90612370565b60ff909116600090815260096020526040902055565b6000546001600160a01b03163314610c3e5760405162461bcd60e51b815260040161058f90612370565b60ff929092166000908152600660209081526040808320805461ffff191661ffff9590951694909417909355600890522080546001600160a01b0319166001600160a01b03909216919091179055565b6000546001600160a01b03163314610cb85760405162461bcd60e51b815260040161058f90612370565b6040514790339082156108fc029083906000818181858888f193505050501580156109fc573d6000803e3d6000fd5b60ff82166000908152600860205260409020546001600160a01b03163314610d475760405162461bcd60e51b8152602060048201526013602482015272139bdd08185b1b1bddd959081d1bc8135a5b9d606a1b604482015260640161058f565b60ff80831660009081526006602090815260408083205460079092529091205461ffff91821692610d7c9290851691166123c9565b61ffff1610610dc15760405162461bcd60e51b81526020600482015260116024820152704d6178204c696d697420546f2053616c6560781b604482015260640161058f565b610de2838360ff168360ff166040518060200160405280600081525061130b565b60ff8281166000908152600760205260409020546108b39183169061ffff166123c9565b60606005805461062190612481565b6109fc33838361142a565b6001600160a01b038516331480610e3c5750610e3c8533610499565b610e9a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161058f565b610768858585858561150b565b6000546001600160a01b03163314610ed15760405162461bcd60e51b815260040161058f90612370565b6001600160a01b038116610f365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161058f565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331480610faf5750610faf8333610499565b6110155760405162461bcd60e51b815260206004820152603160248201527f455243313135354275726e61626c653a2063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606482015260840161058f565b61102083838361162c565b505050565b6060816110495750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611073578061105d816124e9565b915061106c9050600a83612407565b915061104d565b60008167ffffffffffffffff81111561108e5761108e61257a565b6040519080825280601f01601f1916602001820160405280156110b8576020820181803683370190505b5090505b8415611123576110cd60018361243a565b91506110da600a86612524565b6110e59060306123ef565b60f81b8183815181106110fa576110fa612564565b60200101906001600160f81b031916908160001a90535061111c600a86612407565b94506110bc565b949350505050565b815183511461118d5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161058f565b6001600160a01b0384166111b35760405162461bcd60e51b815260040161058f906122e1565b3360005b845181101561129d5760008582815181106111d4576111d4612564565b6020026020010151905060008583815181106111f2576111f2612564565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156112435760405162461bcd60e51b815260040161058f90612326565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906112829084906123ef565b9250508190555050505080611296906124e9565b90506111b7565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112ed929190612261565b60405180910390a46113038187878787876117aa565b505050505050565b6001600160a01b03841661136b5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161058f565b336113858160008761137c88611915565b61076888611915565b60008481526001602090815260408083206001600160a01b0389168452909152812080548592906113b79084906123ef565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461076881600087878787611960565b80516109fc906003906020840190611a2a565b816001600160a01b0316836001600160a01b0316141561149e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161058f565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166115315760405162461bcd60e51b815260040161058f906122e1565b3361154181878761137c88611915565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156115845760405162461bcd60e51b815260040161058f90612326565b60008581526001602090815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906115c39084906123ef565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611623828888888888611960565b50505050505050565b6001600160a01b03831661168e5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b606482015260840161058f565b336116be8185600061169f87611915565b6116a887611915565b5050604080516020810190915260009052505050565b60008381526001602090815260408083206001600160a01b03881684529091529020548281101561173d5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b606482015260840161058f565b60008481526001602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6001600160a01b0384163b156113035760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906117ee90899089908890889088906004016121ab565b602060405180830381600087803b15801561180857600080fd5b505af1925050508015611838575060408051601f3d908101601f1916820190925261183591810190611f5e565b60015b6118e557611844612590565b806308c379a0141561187e57506118596125ac565b806118645750611880565b8060405162461bcd60e51b815260040161058f9190612286565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161058f565b6001600160e01b0319811663bc197c8160e01b146116235760405162461bcd60e51b815260040161058f90612299565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061194f5761194f612564565b602090810291909101015292915050565b6001600160a01b0384163b156113035760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906119a49089908990889088908890600401612209565b602060405180830381600087803b1580156119be57600080fd5b505af19250505080156119ee575060408051601f3d908101601f191682019092526119eb91810190611f5e565b60015b6119fa57611844612590565b6001600160e01b0319811663f23a6e6160e01b146116235760405162461bcd60e51b815260040161058f90612299565b828054611a3690612481565b90600052602060002090601f016020900481019282611a585760008555611a9e565b82601f10611a7157805160ff1916838001178555611a9e565b82800160010185558215611a9e579182015b82811115611a9e578251825591602001919060010190611a83565b50611aaa929150611aae565b5090565b5b80821115611aaa5760008155600101611aaf565b600067ffffffffffffffff831115611add57611add61257a565b604051611af4601f8501601f1916602001826124bc565b809150838152848484011115611b0957600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114611b3857600080fd5b919050565b600082601f830112611b4e57600080fd5b81356020611b5b826123a5565b604051611b6882826124bc565b8381528281019150858301600585901b87018401881015611b8857600080fd5b60005b85811015611bae57611b9c82611b21565b84529284019290840190600101611b8b565b5090979650505050505050565b600082601f830112611bcc57600080fd5b81356020611bd9826123a5565b604051611be682826124bc565b8381528281019150858301600585901b87018401881015611c0657600080fd5b60005b85811015611bae57813584529284019290840190600101611c09565b600082601f830112611c3657600080fd5b611c4583833560208501611ac3565b9392505050565b803560ff81168114611b3857600080fd5b600060208284031215611c6f57600080fd5b611c4582611b21565b60008060408385031215611c8b57600080fd5b611c9483611b21565b9150611ca260208401611b21565b90509250929050565b600080600080600060a08688031215611cc357600080fd5b611ccc86611b21565b9450611cda60208701611b21565b9350604086013567ffffffffffffffff80821115611cf757600080fd5b611d0389838a01611bbb565b94506060880135915080821115611d1957600080fd5b611d2589838a01611bbb565b93506080880135915080821115611d3b57600080fd5b50611d4888828901611c25565b9150509295509295909350565b600080600080600060a08688031215611d6d57600080fd5b611d7686611b21565b9450611d8460208701611b21565b93506040860135925060608601359150608086013567ffffffffffffffff811115611dae57600080fd5b611d4888828901611c25565b60008060408385031215611dcd57600080fd5b611dd683611b21565b915060208301358015158114611deb57600080fd5b809150509250929050565b60008060408385031215611e0957600080fd5b611e1283611b21565b946020939093013593505050565b600080600060608486031215611e3557600080fd5b611e3e84611b21565b95602085013595506040909401359392505050565b600080600060608486031215611e6857600080fd5b611e7184611b21565b9250611e7f60208501611c4c565b9150611e8d60408501611c4c565b90509250925092565b60008060408385031215611ea957600080fd5b823567ffffffffffffffff80821115611ec157600080fd5b611ecd86838701611b3d565b93506020850135915080821115611ee357600080fd5b50611ef085828601611bbb565b9150509250929050565b600080600060608486031215611f0f57600080fd5b833567ffffffffffffffff811115611f2657600080fd5b611f3286828701611b3d565b935050611e7f60208501611c4c565b600060208284031215611f5357600080fd5b8135611c4581612636565b600060208284031215611f7057600080fd5b8151611c4581612636565b600060208284031215611f8d57600080fd5b813567ffffffffffffffff811115611fa457600080fd5b8201601f81018413611fb557600080fd5b61112384823560208401611ac3565b600060208284031215611fd657600080fd5b5035919050565b600060208284031215611fef57600080fd5b611c4582611c4c565b60008060006060848603121561200d57600080fd5b61201684611c4c565b9250602084013561ffff8116811461202d57600080fd5b9150611e8d60408501611b21565b6000806040838503121561204e57600080fd5b611e1283611c4c565b6000806040838503121561206a57600080fd5b61207383611c4c565b9150611ca260208401611c4c565b600081518084526020808501945080840160005b838110156120b157815187529582019590820190600101612095565b509495945050505050565b600081518084526120d4816020860160208601612451565b601f01601f19169290920160200192915050565b600081516120fa818560208601612451565b9290920192915050565b600080845481600182811c91508083168061212057607f831692505b602080841082141561214057634e487b7160e01b86526022600452602486fd5b818015612154576001811461216557612192565b60ff19861689528489019650612192565b60008b81526020902060005b8681101561218a5781548b820152908501908301612171565b505084890196505b5050505050506121a281856120e8565b95945050505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906121d790830186612081565b82810360608401526121e98186612081565b905082810360808401526121fd81856120bc565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612243908301846120bc565b979650505050505050565b602081526000611c456020830184612081565b6040815260006122746040830185612081565b82810360208401526121a28185612081565b602081526000611c4560208301846120bc565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156123bf576123bf61257a565b5060051b60200190565b600061ffff8083168185168083038211156123e6576123e6612538565b01949350505050565b6000821982111561240257612402612538565b500190565b6000826124165761241661254e565b500490565b600081600019048311821515161561243557612435612538565b500290565b60008282101561244c5761244c612538565b500390565b60005b8381101561246c578181015183820152602001612454565b8381111561247b576000848401525b50505050565b600181811c9082168061249557607f821691505b602082108114156124b657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156124e2576124e261257a565b6040525050565b60006000198214156124fd576124fd612538565b5060010190565b600060ff821660ff81141561251b5761251b612538565b60010192915050565b6000826125335761253361254e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156125a95760046000803e5060005160e01c5b90565b600060443d10156125ba5790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156125ea57505050505090565b82850191508151818111156126025750505050505090565b843d870101602082850101111561261c5750505050505090565b61262b602082860101876124bc565b509095945050505050565b6001600160e01b031981168114610b5d57600080fdfea2646970667358221220c463a0b6b0a92d4ae532b29657fb1f8f9c8df294d2cb8bc5f2c986b6fb6222ed64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000094f535943204b455953000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054f5359434b000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): OSYC KEYS
Arg [1] : _symbol (string): OSYCK

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 4f535943204b4559530000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4f5359434b000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

617:2778:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2720:306:2;;;;;;;;;;-1:-1:-1;2720:306:2;;;;;:::i;:::-;;:::i;:::-;;;22587:25:11;;;22575:2;22560:18;2720:306:2;;;;;;;;1629:349;;;;;;;;;;-1:-1:-1;1629:349:2;;;;;:::i;:::-;;:::i;:::-;;;13754:14:11;;13747:22;13729:41;;13717:2;13702:18;1629:349:2;13589:187:11;1029:89:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2377:201:2:-;;;;;;;;;;-1:-1:-1;2377:201:2;;;;;:::i;:::-;;:::i;715:42:8:-;;;;;;;;;;-1:-1:-1;715:42:8;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22422:6:11;22410:19;;;22392:38;;22380:2;22365:18;715:42:8;22248:188:11;812:47:8;;;;;;;;;;-1:-1:-1;812:47:8;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;812:47:8;;;;;;-1:-1:-1;;;;;11413:32:11;;;11395:51;;11383:2;11368:18;812:47:8;11249:203:11;4779:430:2;;;;;;;;;;-1:-1:-1;4779:430:2;;;;;:::i;:::-;;:::i;:::-;;2740:492:8;;;;;;;;;;-1:-1:-1;2740:492:8;;;;;:::i;:::-;;:::i;2398:336::-;;;;;;:::i;:::-;;:::i;3183:542:2:-;;;;;;;;;;-1:-1:-1;3183:542:2;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1223:97:8:-;;;;;;;;;;-1:-1:-1;1223:97:8;;;;;:::i;:::-;;:::i;2225:145:9:-;;;;;;;;;;;;;:::i;1555:108:8:-;;;;;;;;;;-1:-1:-1;1555:108:8;;;;;:::i;:::-;;:::i;1326:223::-;;;;;;;;;;-1:-1:-1;1326:223:8;;;;;:::i;:::-;;:::i;3238:155::-;;;;;;;;;;;;;:::i;1669:407::-;;;;;;;;;;-1:-1:-1;1669:407:8;;;;;:::i;:::-;;:::i;1593:85:9:-;;;;;;;;;;-1:-1:-1;1639:7:9;1665:6;-1:-1:-1;;;;;1665:6:9;1593:85;;1124:93:8;;;;;;;;;;;;;:::i;3793:181:2:-;;;;;;;;;;-1:-1:-1;3793:181:2;;;;;:::i;:::-;;:::i;865:38:8:-;;;;;;;;;;-1:-1:-1;865:38:8;;;;;:::i;:::-;;;;;;;;;;;;;;763:43;;;;;;;;;;-1:-1:-1;763:43:8;;;;;:::i;:::-;;;;;;;;;;;;;;;;4041:210:2;;;;;;;;;;-1:-1:-1;4041:210:2;;;;;:::i;:::-;-1:-1:-1;;;;;4207:27:2;;;4180:4;4207:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;4041:210;4318:389;;;;;;;;;;-1:-1:-1;4318:389:2;;;;;:::i;:::-;;:::i;2519:274:9:-;;;;;;;;;;-1:-1:-1;2519:274:9;;;;;:::i;:::-;;:::i;2082:310:8:-;;;;;;;;;;-1:-1:-1;2082:310:8;;;;;:::i;:::-;;:::i;2720:306:2:-;2846:7;-1:-1:-1;;;;;2890:21:2;;2869:111;;;;-1:-1:-1;;;2869:111:2;;15392:2:11;2869:111:2;;;15374:21:11;15431:2;15411:18;;;15404:30;15470:34;15450:18;;;15443:62;-1:-1:-1;;;15521:18:11;;;15514:41;15572:19;;2869:111:2;;;;;;;;;-1:-1:-1;2997:13:2;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;2997:22:2;;;;;;;;;;;;2720:306::o;1629:349::-;1771:4;-1:-1:-1;;;;;;1810:41:2;;-1:-1:-1;;;1810:41:2;;:109;;-1:-1:-1;;;;;;;1867:52:2;;-1:-1:-1;;;1867:52:2;1810:109;:161;;;-1:-1:-1;;;;;;;;;;1425:40:3;;;1935:36:2;1791:180;1629:349;-1:-1:-1;;1629:349:2:o;1029:89:8:-;1074:13;1106:5;1099:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1029:89;:::o;2377:201:2:-;2485:13;2545:4;2551:18;:7;:16;:18::i;:::-;2528:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2514:57;;2377:201;;;:::o;4779:430::-;-1:-1:-1;;;;;5004:20:2;;1176:10:1;5004:20:2;;:60;;-1:-1:-1;5028:36:2;5045:4;1176:10:1;4041:210:2;:::i;5028:36::-;4983:157;;;;-1:-1:-1;;;4983:157:2;;18530:2:11;4983:157:2;;;18512:21:11;18569:2;18549:18;;;18542:30;18608:34;18588:18;;;18581:62;-1:-1:-1;;;18659:18:11;;;18652:48;18717:19;;4983:157:2;18328:414:11;4983:157:2;5150:52;5173:4;5179:2;5183:3;5188:7;5197:4;5150:22;:52::i;:::-;4779:430;;;;;:::o;2740:492:8:-;1639:7:9;1665:6;-1:-1:-1;;;;;1665:6:9;1176:10:1;1805:23:9;1797:68;;;;-1:-1:-1;;;1797:68:9;;;;;;;:::i;:::-;2942:17:8::1;::::0;;::::1;;::::0;;;:10:::1;:17;::::0;;;;;2924:15;;2942:17:::1;::::0;;::::1;::::0;2915:24:::1;::::0;2924:15;2915:24;::::1;;:::i;:::-;2894:18;::::0;::::1;;::::0;;;:11:::1;:18;::::0;;;;;:45:::1;::::0;;:18:::1;;:45;:::i;:::-;:65;2873:129;;;::::0;-1:-1:-1;;;2873:129:8;;20125:2:11;2873:129:8::1;::::0;::::1;20107:21:11::0;20164:2;20144:18;;;20137:30;-1:-1:-1;;;20183:18:11;;;20176:47;20240:18;;2873:129:8::1;19923:341:11::0;2873:129:8::1;3017:7;3012:106;3034:8;:15;3030:1;:19;;;3012:106;;;3070:37;3076:8;3085:1;3076:11;;;;;;;;;;:::i;:::-;;;;;;;3089:5;3070:37;;3096:6;3070:37;;;;;;;;;;;;;::::0;:5:::1;:37::i;:::-;3051:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3012:106;;;-1:-1:-1::0;3209:15:8;;3200:24:::1;::::0;::::1;::::0;::::1;;:::i;:::-;3160:18;::::0;::::1;;::::0;;;:11:::1;:18;::::0;;;;;:65:::1;::::0;;:18:::1;;:65;:::i;:::-;3127:18;::::0;;;::::1;;::::0;;;:11:::1;:18;::::0;;;;:98;;-1:-1:-1;;3127:98:8::1;;::::0;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;2740:492:8:o;2398:336::-;2473:9;2486:10;2473:23;2465:44;;;;-1:-1:-1;;;2465:44:8;;16616:2:11;2465:44:8;;;16598:21:11;16655:1;16635:18;;;16628:29;-1:-1:-1;;;16673:18:11;;;16666:38;16721:18;;2465:44:8;16414:331:11;2465:44:8;2527:12;;;2542:1;2527:12;;;:5;:12;;;;;;2519:44;;;;-1:-1:-1;;;2519:44:8;;17780:2:11;2519:44:8;;;17762:21:11;17819:2;17799:18;;;17792:30;-1:-1:-1;;;17838:18:11;;;17831:45;17893:18;;2519:44:8;17578:339:11;2519:44:8;2594:21;:12;;;;;;;:5;:12;;;;;;2619:9;;2594:21;;;;;;;:::i;:::-;:34;;2573:107;;;;-1:-1:-1;;;2573:107:8;;14628:2:11;2573:107:8;;;14610:21:11;14667:2;14647:18;;;14640:30;14706:28;14686:18;;;14679:56;14752:18;;2573:107:8;14426:350:11;2573:107:8;2691:36;2697:10;2709:5;2691:36;;2716:6;2691:36;;;;;;;;;;;;;;:5;:36::i;:::-;2398:336;;:::o;3183:542:2:-;3334:16;3406:3;:10;3387:8;:15;:29;3366:117;;;;-1:-1:-1;;;3366:117:2;;20881:2:11;3366:117:2;;;20863:21:11;20920:2;20900:18;;;20893:30;20959:34;20939:18;;;20932:62;-1:-1:-1;;;21010:18:11;;;21003:39;21059:19;;3366:117:2;20679:405:11;3366:117:2;3494:30;3541:8;:15;3527:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3527:30:2;;3494:63;;3573:9;3568:120;3592:8;:15;3588:1;:19;3568:120;;;3647:30;3657:8;3666:1;3657:11;;;;;;;;:::i;:::-;;;;;;;3670:3;3674:1;3670:6;;;;;;;;:::i;:::-;;;;;;;3647:9;:30::i;:::-;3628:13;3642:1;3628:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;3609:3;;;:::i;:::-;;;3568:120;;;-1:-1:-1;3705:13:2;3183:542;-1:-1:-1;;;3183:542:2:o;1223:97:8:-;1639:7:9;1665:6;-1:-1:-1;;;;;1665:6:9;1176:10:1;1805:23:9;1797:68;;;;-1:-1:-1;;;1797:68:9;;;;;;;:::i;:::-;1296:17:8::1;1304:8;1296:7;:17::i;:::-;1223:97:::0;:::o;2225:145:9:-;1639:7;1665:6;-1:-1:-1;;;;;1665:6:9;1176:10:1;1805:23:9;1797:68;;;;-1:-1:-1;;;1797:68:9;;;;;;;:::i;:::-;2331:1:::1;2315:6:::0;;2294:40:::1;::::0;-1:-1:-1;;;;;2315:6:9;;::::1;::::0;2294:40:::1;::::0;2331:1;;2294:40:::1;2361:1;2344:19:::0;;-1:-1:-1;;;;;;2344:19:9::1;::::0;;2225:145::o;1555:108:8:-;1639:7:9;1665:6;-1:-1:-1;;;;;1665:6:9;1176:10:1;1805:23:9;1797:68;;;;-1:-1:-1;;;1797:68:9;;;;;;;:::i;:::-;1635:12:8::1;::::0;;::::1;;::::0;;;:5:::1;:12;::::0;;;;:21;1555:108::o;1326:223::-;1639:7:9;1665:6;-1:-1:-1;;;;;1665:6:9;1176:10:1;1805:23:9;1797:68;;;;-1:-1:-1;;;1797:68:9;;;;;;;:::i;:::-;1462:17:8::1;::::0;;;::::1;;::::0;;;:10:::1;:17;::::0;;;;;;;:31;;-1:-1:-1;;1462:31:8::1;;::::0;;;::::1;::::0;;;::::1;::::0;;;1503:14:::1;:21:::0;;;:39;;-1:-1:-1;;;;;;1503:39:8::1;-1:-1:-1::0;;;;;1503:39:8;;::::1;::::0;;;::::1;::::0;;1326:223::o;3238:155::-;1639:7:9;1665:6;-1:-1:-1;;;;;1665:6:9;1176:10:1;1805:23:9;1797:68;;;;-1:-1:-1;;;1797:68:9;;;;;;;:::i;:::-;3344:42:8::1;::::0;3313:21:::1;::::0;3352:10:::1;::::0;3344:42;::::1;;;::::0;3313:21;;3290:20:::1;3344:42:::0;3290:20;3344:42;3313:21;3352:10;3344:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;1669:407:::0;1801:21;;;;;;;:14;:21;;;;;;-1:-1:-1;;;;;1801:21:8;1787:10;:35;1779:67;;;;-1:-1:-1;;;1779:67:8;;22102:2:11;1779:67:8;;;22084:21:11;22141:2;22121:18;;;22114:30;-1:-1:-1;;;22160:18:11;;;22153:49;22219:18;;1779:67:8;21900:343:11;1779:67:8;1907:17;;;;;;;;:10;:17;;;;;;;;;1877:11;:18;;;;;;;1907:17;;;;;1877:27;;;;;;:18;:27;:::i;:::-;:47;;;1856:111;;;;-1:-1:-1;;;1856:111:8;;20125:2:11;1856:111:8;;;20107:21:11;20164:2;20144:18;;;20137:30;-1:-1:-1;;;20183:18:11;;;20176:47;20240:18;;1856:111:8;19923:341:11;1856:111:8;1978:33;1984:7;1993:5;1978:33;;2000:6;1978:33;;;;;;;;;;;;;;:5;:33::i;:::-;2042:27;:18;;;;;;;:11;:18;;;;;;:27;;;;;:18;;:27;:::i;1124:93::-;1171:13;1203:7;1196:14;;;;;:::i;3793:181:2:-;3915:52;1176:10:1;3948:8:2;3958;3915:18;:52::i;4318:389::-;-1:-1:-1;;;;;4518:20:2;;1176:10:1;4518:20:2;;:60;;-1:-1:-1;4542:36:2;4559:4;1176:10:1;4041:210:2;:::i;4542:36::-;4497:148;;;;-1:-1:-1;;;4497:148:2;;16952:2:11;4497:148:2;;;16934:21:11;16991:2;16971:18;;;16964:30;17030:34;17010:18;;;17003:62;-1:-1:-1;;;17081:18:11;;;17074:39;17130:19;;4497:148:2;16750:405:11;4497:148:2;4655:45;4673:4;4679:2;4683;4687:6;4695:4;4655:17;:45::i;2519:274:9:-;1639:7;1665:6;-1:-1:-1;;;;;1665:6:9;1176:10:1;1805:23:9;1797:68;;;;-1:-1:-1;;;1797:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;2620:22:9;::::1;2599:107;;;::::0;-1:-1:-1;;;2599:107:9;;15804:2:11;2599:107:9::1;::::0;::::1;15786:21:11::0;15843:2;15823:18;;;15816:30;15882:34;15862:18;;;15855:62;-1:-1:-1;;;15933:18:11;;;15926:36;15979:19;;2599:107:9::1;15602:402:11::0;2599:107:9::1;2742:6;::::0;;2721:38:::1;::::0;-1:-1:-1;;;;;2721:38:9;;::::1;::::0;2742:6;::::1;::::0;2721:38:::1;::::0;::::1;2769:6;:17:::0;;-1:-1:-1;;;;;;2769:17:9::1;-1:-1:-1::0;;;;;2769:17:9;;;::::1;::::0;;;::::1;::::0;;2519:274::o;2082:310:8:-;1639:7:9;1665:6;-1:-1:-1;;;;;1665:6:9;1176:10:1;2214:23:8;;:63;;-1:-1:-1;2241:36:8;2258:4;1176:10:1;4041:210:2;:::i;2241:36:8:-;2193:159;;;;-1:-1:-1;;;2193:159:8;;17362:2:11;2193:159:8;;;17344:21:11;17401:2;17381:18;;;17374:30;17440:34;17420:18;;;17413:62;-1:-1:-1;;;17491:18:11;;;17484:47;17548:19;;2193:159:8;17160:413:11;2193:159:8;2362:23;2368:4;2374:2;2378:6;2362:5;:23::i;:::-;2082:310;;;:::o;785:703:10:-;841:13;1058:10;1054:51;;-1:-1:-1;;1084:10:10;;;;;;;;;;;;-1:-1:-1;;;1084:10:10;;;;;785:703::o;1054:51::-;1129:5;1114:12;1168:75;1175:9;;1168:75;;1200:8;;;;:::i;:::-;;-1:-1:-1;1222:10:10;;-1:-1:-1;1230:2:10;1222:10;;:::i;:::-;;;1168:75;;;1252:19;1284:6;1274:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1274:17:10;;1252:39;;1301:150;1308:10;;1301:150;;1334:11;1344:1;1334:11;;:::i;:::-;;-1:-1:-1;1402:10:10;1410:2;1402:5;:10;:::i;:::-;1389:24;;:2;:24;:::i;:::-;1376:39;;1359:6;1366;1359:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1359:56:10;;;;;;;;-1:-1:-1;1429:11:10;1438:2;1429:11;;:::i;:::-;;;1301:150;;;1474:6;785:703;-1:-1:-1;;;;785:703:10:o;6918:1207:2:-;7151:7;:14;7137:3;:10;:28;7116:115;;;;-1:-1:-1;;;7116:115:2;;21291:2:11;7116:115:2;;;21273:21:11;21330:2;21310:18;;;21303:30;21369:34;21349:18;;;21342:62;-1:-1:-1;;;21420:18:11;;;21413:38;21468:19;;7116:115:2;21089:404:11;7116:115:2;-1:-1:-1;;;;;7249:16:2;;7241:66;;;;-1:-1:-1;;;7241:66:2;;;;;;;:::i;:::-;1176:10:1;7318:16:2;7431:457;7455:3;:10;7451:1;:14;7431:457;;;7486:10;7499:3;7503:1;7499:6;;;;;;;;:::i;:::-;;;;;;;7486:19;;7519:14;7536:7;7544:1;7536:10;;;;;;;;:::i;:::-;;;;;;;;;;;;7561:19;7583:13;;;:9;:13;;;;;;-1:-1:-1;;;;;7583:19:2;;;;;;;;;;;;7536:10;;-1:-1:-1;7641:21:2;;;;7616:122;;;;-1:-1:-1;;;7616:122:2;;;;;;;:::i;:::-;7780:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;7780:19:2;;;;;;;;;;7802:20;;;7780:42;;7850:17;;;;;;;:27;;7802:20;;7780:13;7850:27;;7802:20;;7850:27;:::i;:::-;;;;;;;;7472:416;;;7467:3;;;;:::i;:::-;;;7431:457;;;;7933:2;-1:-1:-1;;;;;7903:47:2;7927:4;-1:-1:-1;;;;;7903:47:2;7917:8;-1:-1:-1;;;;;7903:47:2;;7937:3;7942:7;7903:47;;;;;;;:::i;:::-;;;;;;;;7961:157;8010:8;8032:4;8050:2;8066:3;8083:7;8104:4;7961:35;:157::i;:::-;7106:1019;6918:1207;;;;;:::o;9407:717::-;-1:-1:-1;;;;;9554:16:2;;9546:62;;;;-1:-1:-1;;;9546:62:2;;21700:2:11;9546:62:2;;;21682:21:11;21739:2;21719:18;;;21712:30;21778:34;21758:18;;;21751:62;-1:-1:-1;;;21829:18:11;;;21822:31;21870:19;;9546:62:2;21498:397:11;9546:62:2;1176:10:1;9661:184:2;1176:10:1;9619:16:2;9741:2;9757:21;9775:2;9757:17;:21::i;:::-;9792:25;9810:6;9792:17;:25::i;9661:184::-;9856:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;9856:17:2;;;;;;;;;:27;;9877:6;;9856:13;:27;;9877:6;;9856:27;:::i;:::-;;;;-1:-1:-1;;9898:52:2;;;22797:25:11;;;22853:2;22838:18;;22831:34;;;-1:-1:-1;;;;;9898:52:2;;;;9931:1;;9898:52;;;;;;22770:18:11;9898:52:2;;;;;;;9961:156;10005:8;10035:1;10051:2;10067;10083:6;10103:4;9961:30;:156::i;8948:86::-;9014:13;;;;:4;;:13;;;;;:::i;13528:323::-;13678:8;-1:-1:-1;;;;;13669:17:2;:5;-1:-1:-1;;;;;13669:17:2;;;13661:71;;;;-1:-1:-1;;;13661:71:2;;20471:2:11;13661:71:2;;;20453:21:11;20510:2;20490:18;;;20483:30;20549:34;20529:18;;;20522:62;-1:-1:-1;;;20600:18:11;;;20593:39;20649:19;;13661:71:2;20269:405:11;13661:71:2;-1:-1:-1;;;;;13742:25:2;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;13742:46:2;;;;;;;;;;13803:41;;13729::11;;;13803::2;;13702:18:11;13803:41:2;;;;;;;13528:323;;;:::o;5659:913::-;-1:-1:-1;;;;;5840:16:2;;5832:66;;;;-1:-1:-1;;;5832:66:2;;;;;;;:::i;:::-;1176:10:1;5951:178:2;1176:10:1;6007:4:2;6025:2;6041:21;6059:2;6041:17;:21::i;5951:178::-;6140:19;6162:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;6162:19:2;;;;;;;;;;6212:21;;;;6191:110;;;;-1:-1:-1;;;6191:110:2;;;;;;;:::i;:::-;6335:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;6335:19:2;;;;;;;;;;6357:20;;;6335:42;;6397:17;;;;;;;:27;;6357:20;;6335:13;6397:27;;6357:20;;6397:27;:::i;:::-;;;;-1:-1:-1;;6440:46:2;;;22797:25:11;;;22853:2;22838:18;;22831:34;;;-1:-1:-1;;;;;6440:46:2;;;;;;;;;;;;;;22770:18:11;6440:46:2;;;;;;;6497:68;6528:8;6538:4;6544:2;6548;6552:6;6560:4;6497:30;:68::i;:::-;5822:750;;5659:913;;;;;:::o;11540:712::-;-1:-1:-1;;;;;11662:18:2;;11654:66;;;;-1:-1:-1;;;11654:66:2;;18949:2:11;11654:66:2;;;18931:21:11;18988:2;18968:18;;;18961:30;19027:34;19007:18;;;19000:62;-1:-1:-1;;;19078:18:11;;;19071:33;19121:19;;11654:66:2;18747:399:11;11654:66:2;1176:10:1;11773:184:2;1176:10:1;11829:4:2;11731:16;11871:21;11889:2;11871:17;:21::i;:::-;11906:25;11924:6;11906:17;:25::i;:::-;-1:-1:-1;;11773:184:2;;;;;;;;;-1:-1:-1;11773:184:2;;-1:-1:-1;;;6918:1207:2;11773:184;11968:19;11990:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;11990:19:2;;;;;;;;;;12027:21;;;;12019:70;;;;-1:-1:-1;;;12019:70:2;;16211:2:11;12019:70:2;;;16193:21:11;16250:2;16230:18;;;16223:30;16289:34;16269:18;;;16262:62;-1:-1:-1;;;16340:18:11;;;16333:34;16384:19;;12019:70:2;16009:400:11;12019:70:2;12123:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;12123:19:2;;;;;;;;;;;;12145:20;;;12123:42;;12191:54;;22797:25:11;;;22838:18;;;22831:34;;;12123:19:2;;12191:54;;;;;;22770:18:11;12191:54:2;;;;;;;11644:608;;11540:712;;;:::o;15882:946::-;-1:-1:-1;;;;;16114:13:2;;1544:20:0;1590:8;16110:712:2;;16165:197;;-1:-1:-1;;;16165:197:2;;-1:-1:-1;;;;;16165:43:2;;;;;:197;;16230:8;;16260:4;;16286:3;;16311:7;;16340:4;;16165:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16165:197:2;;;;;;;;-1:-1:-1;;16165:197:2;;;;;;;;;;;;:::i;:::-;;;16145:667;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;16688:6;16681:14;;-1:-1:-1;;;16681:14:2;;;;;;;;:::i;16145:667::-;;;16735:62;;-1:-1:-1;;;16735:62:2;;14207:2:11;16735:62:2;;;14189:21:11;14246:2;14226:18;;;14219:30;14285:34;14265:18;;;14258:62;-1:-1:-1;;;14336:18:11;;;14329:50;14396:19;;16735:62:2;14005:416:11;16145:667:2;-1:-1:-1;;;;;;16444:60:2;;-1:-1:-1;;;16444:60:2;16419:195;;16545:50;;-1:-1:-1;;;16545:50:2;;;;;;;:::i;16834:221::-;16981:16;;;16995:1;16981:16;;;;;;;;;16924;;16956:22;;16981:16;;;;;;;;;;;;-1:-1:-1;16981:16:2;16956:41;;17018:7;17007:5;17013:1;17007:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;17043:5;16834:221;-1:-1:-1;;16834:221:2:o;15005:871::-;-1:-1:-1;;;;;15212:13:2;;1544:20:0;1590:8;15208:662:2;;15263:190;;-1:-1:-1;;;15263:190:2;;-1:-1:-1;;;;;15263:38:2;;;;;:190;;15323:8;;15353:4;;15379:2;;15403:6;;15431:4;;15263:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15263:190:2;;;;;;;;-1:-1:-1;;15263:190:2;;;;;;;;;;;;:::i;:::-;;;15243:617;;;;:::i;:::-;-1:-1:-1;;;;;;15514:55:2;;-1:-1:-1;;;15514:55:2;15510:152;;15593:50;;-1:-1:-1;;;15593:50:2;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:11;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:11;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:11;;594:42;;584:70;;650:1;647;640:12;584:70;487:173;;;:::o;665:741::-;719:5;772:3;765:4;757:6;753:17;749:27;739:55;;790:1;787;780:12;739:55;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:11;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:61:11;;;1175:1;1172;1165:12;1118:61;1197:1;1207:169;1221:2;1218:1;1215:9;1207:169;;;1278:23;1297:3;1278:23;:::i;:::-;1266:36;;1322:12;;;;1354;;;;1239:1;1232:9;1207:169;;;-1:-1:-1;1394:6:11;;665:741;-1:-1:-1;;;;;;;665:741:11:o;1411:735::-;1465:5;1518:3;1511:4;1503:6;1499:17;1495:27;1485:55;;1536:1;1533;1526:12;1485:55;1572:6;1559:20;1598:4;1621:43;1661:2;1621:43;:::i;:::-;1693:2;1687:9;1705:31;1733:2;1725:6;1705:31;:::i;:::-;1771:18;;;1805:15;;;;-1:-1:-1;1840:15:11;;;1890:1;1886:10;;;1874:23;;1870:32;;1867:41;-1:-1:-1;1864:61:11;;;1921:1;1918;1911:12;1864:61;1943:1;1953:163;1967:2;1964:1;1961:9;1953:163;;;2024:17;;2012:30;;2062:12;;;;2094;;;;1985:1;1978:9;1953:163;;2151:220;2193:5;2246:3;2239:4;2231:6;2227:17;2223:27;2213:55;;2264:1;2261;2254:12;2213:55;2286:79;2361:3;2352:6;2339:20;2332:4;2324:6;2320:17;2286:79;:::i;:::-;2277:88;2151:220;-1:-1:-1;;;2151:220:11:o;2376:156::-;2442:20;;2502:4;2491:16;;2481:27;;2471:55;;2522:1;2519;2512:12;2537:186;2596:6;2649:2;2637:9;2628:7;2624:23;2620:32;2617:52;;;2665:1;2662;2655:12;2617:52;2688:29;2707:9;2688:29;:::i;2728:260::-;2796:6;2804;2857:2;2845:9;2836:7;2832:23;2828:32;2825:52;;;2873:1;2870;2863:12;2825:52;2896:29;2915:9;2896:29;:::i;:::-;2886:39;;2944:38;2978:2;2967:9;2963:18;2944:38;:::i;:::-;2934:48;;2728:260;;;;;:::o;2993:943::-;3147:6;3155;3163;3171;3179;3232:3;3220:9;3211:7;3207:23;3203:33;3200:53;;;3249:1;3246;3239:12;3200:53;3272:29;3291:9;3272:29;:::i;:::-;3262:39;;3320:38;3354:2;3343:9;3339:18;3320:38;:::i;:::-;3310:48;;3409:2;3398:9;3394:18;3381:32;3432:18;3473:2;3465:6;3462:14;3459:34;;;3489:1;3486;3479:12;3459:34;3512:61;3565:7;3556:6;3545:9;3541:22;3512:61;:::i;:::-;3502:71;;3626:2;3615:9;3611:18;3598:32;3582:48;;3655:2;3645:8;3642:16;3639:36;;;3671:1;3668;3661:12;3639:36;3694:63;3749:7;3738:8;3727:9;3723:24;3694:63;:::i;:::-;3684:73;;3810:3;3799:9;3795:19;3782:33;3766:49;;3840:2;3830:8;3827:16;3824:36;;;3856:1;3853;3846:12;3824:36;;3879:51;3922:7;3911:8;3900:9;3896:24;3879:51;:::i;:::-;3869:61;;;2993:943;;;;;;;;:::o;3941:606::-;4045:6;4053;4061;4069;4077;4130:3;4118:9;4109:7;4105:23;4101:33;4098:53;;;4147:1;4144;4137:12;4098:53;4170:29;4189:9;4170:29;:::i;:::-;4160:39;;4218:38;4252:2;4241:9;4237:18;4218:38;:::i;:::-;4208:48;;4303:2;4292:9;4288:18;4275:32;4265:42;;4354:2;4343:9;4339:18;4326:32;4316:42;;4409:3;4398:9;4394:19;4381:33;4437:18;4429:6;4426:30;4423:50;;;4469:1;4466;4459:12;4423:50;4492:49;4533:7;4524:6;4513:9;4509:22;4492:49;:::i;4552:347::-;4617:6;4625;4678:2;4666:9;4657:7;4653:23;4649:32;4646:52;;;4694:1;4691;4684:12;4646:52;4717:29;4736:9;4717:29;:::i;:::-;4707:39;;4796:2;4785:9;4781:18;4768:32;4843:5;4836:13;4829:21;4822:5;4819:32;4809:60;;4865:1;4862;4855:12;4809:60;4888:5;4878:15;;;4552:347;;;;;:::o;4904:254::-;4972:6;4980;5033:2;5021:9;5012:7;5008:23;5004:32;5001:52;;;5049:1;5046;5039:12;5001:52;5072:29;5091:9;5072:29;:::i;:::-;5062:39;5148:2;5133:18;;;;5120:32;;-1:-1:-1;;;4904:254:11:o;5163:322::-;5240:6;5248;5256;5309:2;5297:9;5288:7;5284:23;5280:32;5277:52;;;5325:1;5322;5315:12;5277:52;5348:29;5367:9;5348:29;:::i;:::-;5338:39;5424:2;5409:18;;5396:32;;-1:-1:-1;5475:2:11;5460:18;;;5447:32;;5163:322;-1:-1:-1;;;5163:322:11:o;5490:326::-;5563:6;5571;5579;5632:2;5620:9;5611:7;5607:23;5603:32;5600:52;;;5648:1;5645;5638:12;5600:52;5671:29;5690:9;5671:29;:::i;:::-;5661:39;;5719:36;5751:2;5740:9;5736:18;5719:36;:::i;:::-;5709:46;;5774:36;5806:2;5795:9;5791:18;5774:36;:::i;:::-;5764:46;;5490:326;;;;;:::o;5821:595::-;5939:6;5947;6000:2;5988:9;5979:7;5975:23;5971:32;5968:52;;;6016:1;6013;6006:12;5968:52;6056:9;6043:23;6085:18;6126:2;6118:6;6115:14;6112:34;;;6142:1;6139;6132:12;6112:34;6165:61;6218:7;6209:6;6198:9;6194:22;6165:61;:::i;:::-;6155:71;;6279:2;6268:9;6264:18;6251:32;6235:48;;6308:2;6298:8;6295:16;6292:36;;;6324:1;6321;6314:12;6292:36;;6347:63;6402:7;6391:8;6380:9;6376:24;6347:63;:::i;:::-;6337:73;;;5821:595;;;;;:::o;6421:488::-;6519:6;6527;6535;6588:2;6576:9;6567:7;6563:23;6559:32;6556:52;;;6604:1;6601;6594:12;6556:52;6644:9;6631:23;6677:18;6669:6;6666:30;6663:50;;;6709:1;6706;6699:12;6663:50;6732:61;6785:7;6776:6;6765:9;6761:22;6732:61;:::i;:::-;6722:71;;;6812:36;6844:2;6833:9;6829:18;6812:36;:::i;6914:245::-;6972:6;7025:2;7013:9;7004:7;7000:23;6996:32;6993:52;;;7041:1;7038;7031:12;6993:52;7080:9;7067:23;7099:30;7123:5;7099:30;:::i;7164:249::-;7233:6;7286:2;7274:9;7265:7;7261:23;7257:32;7254:52;;;7302:1;7299;7292:12;7254:52;7334:9;7328:16;7353:30;7377:5;7353:30;:::i;7418:450::-;7487:6;7540:2;7528:9;7519:7;7515:23;7511:32;7508:52;;;7556:1;7553;7546:12;7508:52;7596:9;7583:23;7629:18;7621:6;7618:30;7615:50;;;7661:1;7658;7651:12;7615:50;7684:22;;7737:4;7729:13;;7725:27;-1:-1:-1;7715:55:11;;7766:1;7763;7756:12;7715:55;7789:73;7854:7;7849:2;7836:16;7831:2;7827;7823:11;7789:73;:::i;7873:180::-;7932:6;7985:2;7973:9;7964:7;7960:23;7956:32;7953:52;;;8001:1;7998;7991:12;7953:52;-1:-1:-1;8024:23:11;;7873:180;-1:-1:-1;7873:180:11:o;8058:182::-;8115:6;8168:2;8156:9;8147:7;8143:23;8139:32;8136:52;;;8184:1;8181;8174:12;8136:52;8207:27;8224:9;8207:27;:::i;8245:416::-;8319:6;8327;8335;8388:2;8376:9;8367:7;8363:23;8359:32;8356:52;;;8404:1;8401;8394:12;8356:52;8427:27;8444:9;8427:27;:::i;:::-;8417:37;;8504:2;8493:9;8489:18;8476:32;8548:6;8541:5;8537:18;8530:5;8527:29;8517:57;;8570:1;8567;8560:12;8517:57;8593:5;-1:-1:-1;8617:38:11;8651:2;8636:18;;8617:38;:::i;8666:250::-;8732:6;8740;8793:2;8781:9;8772:7;8768:23;8764:32;8761:52;;;8809:1;8806;8799:12;8761:52;8832:27;8849:9;8832:27;:::i;8921:252::-;8985:6;8993;9046:2;9034:9;9025:7;9021:23;9017:32;9014:52;;;9062:1;9059;9052:12;9014:52;9085:27;9102:9;9085:27;:::i;:::-;9075:37;;9131:36;9163:2;9152:9;9148:18;9131:36;:::i;9178:435::-;9231:3;9269:5;9263:12;9296:6;9291:3;9284:19;9322:4;9351:2;9346:3;9342:12;9335:19;;9388:2;9381:5;9377:14;9409:1;9419:169;9433:6;9430:1;9427:13;9419:169;;;9494:13;;9482:26;;9528:12;;;;9563:15;;;;9455:1;9448:9;9419:169;;;-1:-1:-1;9604:3:11;;9178:435;-1:-1:-1;;;;;9178:435:11:o;9618:257::-;9659:3;9697:5;9691:12;9724:6;9719:3;9712:19;9740:63;9796:6;9789:4;9784:3;9780:14;9773:4;9766:5;9762:16;9740:63;:::i;:::-;9857:2;9836:15;-1:-1:-1;;9832:29:11;9823:39;;;;9864:4;9819:50;;9618:257;-1:-1:-1;;9618:257:11:o;9880:185::-;9922:3;9960:5;9954:12;9975:52;10020:6;10015:3;10008:4;10001:5;9997:16;9975:52;:::i;:::-;10043:16;;;;;9880:185;-1:-1:-1;;9880:185:11:o;10070:1174::-;10246:3;10275:1;10308:6;10302:13;10338:3;10360:1;10388:9;10384:2;10380:18;10370:28;;10448:2;10437:9;10433:18;10470;10460:61;;10514:4;10506:6;10502:17;10492:27;;10460:61;10540:2;10588;10580:6;10577:14;10557:18;10554:38;10551:165;;;-1:-1:-1;;;10615:33:11;;10671:4;10668:1;10661:15;10701:4;10622:3;10689:17;10551:165;10732:18;10759:104;;;;10877:1;10872:320;;;;10725:467;;10759:104;-1:-1:-1;;10792:24:11;;10780:37;;10837:16;;;;-1:-1:-1;10759:104:11;;10872:320;23137:1;23130:14;;;23174:4;23161:18;;10967:1;10981:165;10995:6;10992:1;10989:13;10981:165;;;11073:14;;11060:11;;;11053:35;11116:16;;;;11010:10;;10981:165;;;10985:3;;11175:6;11170:3;11166:16;11159:23;;10725:467;;;;;;;11208:30;11234:3;11226:6;11208:30;:::i;:::-;11201:37;10070:1174;-1:-1:-1;;;;;10070:1174:11:o;11457:826::-;-1:-1:-1;;;;;11854:15:11;;;11836:34;;11906:15;;11901:2;11886:18;;11879:43;11816:3;11953:2;11938:18;;11931:31;;;11779:4;;11985:57;;12022:19;;12014:6;11985:57;:::i;:::-;12090:9;12082:6;12078:22;12073:2;12062:9;12058:18;12051:50;12124:44;12161:6;12153;12124:44;:::i;:::-;12110:58;;12217:9;12209:6;12205:22;12199:3;12188:9;12184:19;12177:51;12245:32;12270:6;12262;12245:32;:::i;:::-;12237:40;11457:826;-1:-1:-1;;;;;;;;11457:826:11:o;12288:560::-;-1:-1:-1;;;;;12585:15:11;;;12567:34;;12637:15;;12632:2;12617:18;;12610:43;12684:2;12669:18;;12662:34;;;12727:2;12712:18;;12705:34;;;12547:3;12770;12755:19;;12748:32;;;12510:4;;12797:45;;12822:19;;12814:6;12797:45;:::i;:::-;12789:53;12288:560;-1:-1:-1;;;;;;;12288:560:11:o;12853:261::-;13032:2;13021:9;13014:21;12995:4;13052:56;13104:2;13093:9;13089:18;13081:6;13052:56;:::i;13119:465::-;13376:2;13365:9;13358:21;13339:4;13402:56;13454:2;13443:9;13439:18;13431:6;13402:56;:::i;:::-;13506:9;13498:6;13494:22;13489:2;13478:9;13474:18;13467:50;13534:44;13571:6;13563;13534:44;:::i;13781:219::-;13930:2;13919:9;13912:21;13893:4;13950:44;13990:2;13979:9;13975:18;13967:6;13950:44;:::i;14781:404::-;14983:2;14965:21;;;15022:2;15002:18;;;14995:30;15061:34;15056:2;15041:18;;15034:62;-1:-1:-1;;;15127:2:11;15112:18;;15105:38;15175:3;15160:19;;14781:404::o;17922:401::-;18124:2;18106:21;;;18163:2;18143:18;;;18136:30;18202:34;18197:2;18182:18;;18175:62;-1:-1:-1;;;18268:2:11;18253:18;;18246:35;18313:3;18298:19;;17922:401::o;19151:406::-;19353:2;19335:21;;;19392:2;19372:18;;;19365:30;19431:34;19426:2;19411:18;;19404:62;-1:-1:-1;;;19497:2:11;19482:18;;19475:40;19547:3;19532:19;;19151:406::o;19562:356::-;19764:2;19746:21;;;19783:18;;;19776:30;19842:34;19837:2;19822:18;;19815:62;19909:2;19894:18;;19562:356::o;22876:183::-;22936:4;22969:18;22961:6;22958:30;22955:56;;;22991:18;;:::i;:::-;-1:-1:-1;23036:1:11;23032:14;23048:4;23028:25;;22876:183::o;23190:224::-;23229:3;23257:6;23290:2;23287:1;23283:10;23320:2;23317:1;23313:10;23351:3;23347:2;23343:12;23338:3;23335:21;23332:47;;;23359:18;;:::i;:::-;23395:13;;23190:224;-1:-1:-1;;;;23190:224:11:o;23419:128::-;23459:3;23490:1;23486:6;23483:1;23480:13;23477:39;;;23496:18;;:::i;:::-;-1:-1:-1;23532:9:11;;23419:128::o;23552:120::-;23592:1;23618;23608:35;;23623:18;;:::i;:::-;-1:-1:-1;23657:9:11;;23552:120::o;23677:168::-;23717:7;23783:1;23779;23775:6;23771:14;23768:1;23765:21;23760:1;23753:9;23746:17;23742:45;23739:71;;;23790:18;;:::i;:::-;-1:-1:-1;23830:9:11;;23677:168::o;23850:125::-;23890:4;23918:1;23915;23912:8;23909:34;;;23923:18;;:::i;:::-;-1:-1:-1;23960:9:11;;23850:125::o;23980:258::-;24052:1;24062:113;24076:6;24073:1;24070:13;24062:113;;;24152:11;;;24146:18;24133:11;;;24126:39;24098:2;24091:10;24062:113;;;24193:6;24190:1;24187:13;24184:48;;;24228:1;24219:6;24214:3;24210:16;24203:27;24184:48;;23980:258;;;:::o;24243:380::-;24322:1;24318:12;;;;24365;;;24386:61;;24440:4;24432:6;24428:17;24418:27;;24386:61;24493:2;24485:6;24482:14;24462:18;24459:38;24456:161;;;24539:10;24534:3;24530:20;24527:1;24520:31;24574:4;24571:1;24564:15;24602:4;24599:1;24592:15;24456:161;;24243:380;;;:::o;24628:249::-;24738:2;24719:13;;-1:-1:-1;;24715:27:11;24703:40;;24773:18;24758:34;;24794:22;;;24755:62;24752:88;;;24820:18;;:::i;:::-;24856:2;24849:22;-1:-1:-1;;24628:249:11:o;24882:135::-;24921:3;-1:-1:-1;;24942:17:11;;24939:43;;;24962:18;;:::i;:::-;-1:-1:-1;25009:1:11;24998:13;;24882:135::o;25022:175::-;25059:3;25103:4;25096:5;25092:16;25132:4;25123:7;25120:17;25117:43;;;25140:18;;:::i;:::-;25189:1;25176:15;;25022:175;-1:-1:-1;;25022:175:11:o;25202:112::-;25234:1;25260;25250:35;;25265:18;;:::i;:::-;-1:-1:-1;25299:9:11;;25202:112::o;25319:127::-;25380:10;25375:3;25371:20;25368:1;25361:31;25411:4;25408:1;25401:15;25435:4;25432:1;25425:15;25451:127;25512:10;25507:3;25503:20;25500:1;25493:31;25543:4;25540:1;25533:15;25567:4;25564:1;25557:15;25583:127;25644:10;25639:3;25635:20;25632:1;25625:31;25675:4;25672:1;25665:15;25699:4;25696:1;25689:15;25715:127;25776:10;25771:3;25767:20;25764:1;25757:31;25807:4;25804:1;25797:15;25831:4;25828:1;25821:15;25847:179;25882:3;25924:1;25906:16;25903:23;25900:120;;;25970:1;25967;25964;25949:23;-1:-1:-1;26007:1:11;26001:8;25996:3;25992:18;25900:120;25847:179;:::o;26031:671::-;26070:3;26112:4;26094:16;26091:26;26088:39;;;26031:671;:::o;26088:39::-;26154:2;26148:9;-1:-1:-1;;26219:16:11;26215:25;;26212:1;26148:9;26191:50;26270:4;26264:11;26294:16;26329:18;26400:2;26393:4;26385:6;26381:17;26378:25;26373:2;26365:6;26362:14;26359:45;26356:58;;;26407:5;;;;;26031:671;:::o;26356:58::-;26444:6;26438:4;26434:17;26423:28;;26480:3;26474:10;26507:2;26499:6;26496:14;26493:27;;;26513:5;;;;;;26031:671;:::o;26493:27::-;26597:2;26578:16;26572:4;26568:27;26564:36;26557:4;26548:6;26543:3;26539:16;26535:27;26532:69;26529:82;;;26604:5;;;;;;26031:671;:::o;26529:82::-;26620:57;26671:4;26662:6;26654;26650:19;26646:30;26640:4;26620:57;:::i;:::-;-1:-1:-1;26693:3:11;;26031:671;-1:-1:-1;;;;;26031:671:11:o;26707:131::-;-1:-1:-1;;;;;;26781:32:11;;26771:43;;26761:71;;26828:1;26825;26818:12

Swarm Source

ipfs://c463a0b6b0a92d4ae532b29657fb1f8f9c8df294d2cb8bc5f2c986b6fb6222ed
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.