ETH Price: $2,262.34 (-5.10%)

Mintopoly Cards (MC)
 

Overview

TokenID

278

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Mintopoly! is a blockchain simulation game powered by NFT Mintopoly! Cards with free airdrops of Mintopoly Money (MM) – our in-game currency that can be used to mint new Mintopoly Cards – to top players in each round.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MintopolyCards

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : MintopolyCards.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.5;

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

// both for OpenSea Proxy addresses
contract OwnableDelegateProxy { }

contract ProxyRegistry {
  mapping(address => OwnableDelegateProxy) public proxies;
}

contract MintopolyCards is ERC1155, Ownable {
    
    address proxyRegistryAddress;
    
    uint256 private BASE_CARD_SUPPLY_CAP = 12000;
    uint256 private BONUS_CARD_SUPPLY_CAP = 4000;
    uint256 private MAX_SUPPLY_PER_BASE_ID = 30;
    uint256 private MAX_SUPPLY_PER_BONUS_ID = 1000;

    uint256 public totalMintedBaseCards;
    uint256 public totalMintedBonusCards;

    mapping(uint256 => uint256) public mintedCards;
    
    
    constructor() ERC1155("https://mintopoly.io/cards_api/{id}.json") {
        proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    }

    
    function mintCards(uint256[] memory _ids, uint256[] memory _amounts) public onlyOwner {
        bool idAlreadyExists = false;
        uint totalNewBaseCards;
        uint totalNewBonusCards;
        uint highestBaseCardSupply;
        uint highestBonusCardSupply;
        
        for(uint i = 0; i < _amounts.length; i++) {
            if(mintedCards[_ids[i]] > 0) { 
                idAlreadyExists = true;
            }
            if(_ids[i] == 1) { // ID 1 is the unique mintopolist card – supply of 50 – exempt from 30 per card limit
                totalNewBaseCards += _amounts[i];
            } else if (_ids[i] <= 750) { // base cards have IDs < 750
                totalNewBaseCards += _amounts[i];
                if (_amounts[i] > highestBaseCardSupply) {
                    highestBaseCardSupply = _amounts[i];
                }
            } else { // bonus cards have IDs 9XX, so anything above 750
                totalNewBonusCards += _amounts[i];
                if (_amounts[i] > highestBonusCardSupply) {
                    highestBonusCardSupply = _amounts[i];
                }
            }
        }
        
        require(!idAlreadyExists, "ID Already Exists");
        require(totalMintedBaseCards + totalNewBaseCards <= BASE_CARD_SUPPLY_CAP, "12,000 base cards have already been minted");
        require(totalMintedBonusCards + totalNewBonusCards <= BONUS_CARD_SUPPLY_CAP, "4,000 bonus cards have already been minted");
        require(highestBaseCardSupply <= MAX_SUPPLY_PER_BASE_ID, "max supply for base cards is 30");
        require(highestBonusCardSupply <= MAX_SUPPLY_PER_BONUS_ID, "max supply for bonus cards is 1000");

        for(uint i = 0; i < _amounts.length; i++) {
            mintedCards[_ids[i]] = _amounts[i];
        }
        
        totalMintedBaseCards += totalNewBaseCards;
        totalMintedBonusCards += totalNewBonusCards;

         _mintBatch(msg.sender, _ids, _amounts, "");
    }
    
    
    
    /**
     * Override renounceOwnership to prevent disaster
     */
    function renounceOwnership() override public pure {
        revert("renounceOwnership cannot be called");
    }
    
    
    
    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address _owner, address _operator) public override view returns (bool) {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == _operator) {
          return true;
        }
        return ERC1155.isApprovedForAll(_owner, _operator);
      }

    
}

File 2 of 10 : ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

        return array;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 10 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

File 5 of 10 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 8 of 10 : 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 9 of 10 : 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 10 of 10 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"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":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"mintCards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintedCards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"pure","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMintedBaseCards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMintedBonusCards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

6080604052612ee0600555610fa0600655601e6007556103e86008553480156200002857600080fd5b506040518060600160405280602881526020016200395f602891396200005481620000d060201b60201c565b506200007562000069620000ec60201b60201c565b620000f460201b60201c565b73a5409ec958c83c3f309868babaca7c86dcb077c1600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002cf565b8060029080519060200190620000e8929190620001ba565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c8906200026a565b90600052602060002090601f016020900481019282620001ec576000855562000238565b82601f106200020757805160ff191683800117855562000238565b8280016001018555821562000238579182015b82811115620002375782518255916020019190600101906200021a565b5b5090506200024791906200024b565b5090565b5b80821115620002665760008160009055506001016200024c565b5090565b600060028204905060018216806200028357607f821691505b602082108114156200029a5762000299620002a0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61368080620002df6000396000f3fe608060405234801561001057600080fd5b50600436106100f45760003560e01c80634e1273f411610097578063e47ac77611610066578063e47ac77614610283578063e985e9c5146102a1578063f242432a146102d1578063f2fde38b146102ed576100f4565b80634e1273f41461020f578063715018a61461023f5780638da5cb5b14610249578063a22cb46514610267576100f4565b80630e89341c116100d35780630e89341c146101775780632eb2c2d6146101a75780633b29f7a3146101c35780633d1cabd1146101df576100f4565b8062fdd58e146100f957806301ffc9a7146101295780630d4f1eee14610159575b600080fd5b610113600480360381019061010e9190612220565b610309565b6040516101209190612b94565b60405180910390f35b610143600480360381019061013e9190612350565b6103d2565b60405161015091906128f7565b60405180910390f35b6101616104b4565b60405161016e9190612b94565b60405180910390f35b610191600480360381019061018c91906123d7565b6104ba565b60405161019e9190612912565b60405180910390f35b6101c160048036038101906101bc919061207a565b61054e565b005b6101dd60048036038101906101d891906122d8565b6105ef565b005b6101f960048036038101906101f491906123d7565b610a48565b6040516102069190612b94565b60405180910390f35b61022960048036038101906102249190612260565b610a60565b604051610236919061289e565b60405180910390f35b610247610b79565b005b610251610bb4565b60405161025e91906127c1565b60405180910390f35b610281600480360381019061027c91906121e0565b610bde565b005b61028b610d5f565b6040516102989190612b94565b60405180910390f35b6102bb60048036038101906102b6919061203a565b610d65565b6040516102c891906128f7565b60405180910390f35b6102eb60048036038101906102e69190612149565b610e67565b005b6103076004803603810190610302919061200d565b610f08565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561037a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610371906129b4565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061049d57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104ad57506104ac82611000565b5b9050919050565b60095481565b6060600280546104c990612e15565b80601f01602080910402602001604051908101604052809291908181526020018280546104f590612e15565b80156105425780601f1061051757610100808354040283529160200191610542565b820191906000526020600020905b81548152906001019060200180831161052557829003601f168201915b50505050509050919050565b61055661106a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061059c575061059b8561059661106a565b610d65565b5b6105db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d290612a54565b60405180910390fd5b6105e88585858585611072565b5050505050565b6105f761106a565b73ffffffffffffffffffffffffffffffffffffffff16610615610bb4565b73ffffffffffffffffffffffffffffffffffffffff161461066b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066290612a94565b60405180910390fd5b6000808060008060005b8651811015610816576000600b60008a848151811061069757610696612f1f565b5b602002602001015181526020019081526020016000205411156106b957600195505b60018882815181106106ce576106cd612f1f565b5b60200260200101511415610709578681815181106106ef576106ee612f1f565b5b6020026020010151856107029190612cf7565b9450610803565b6102ee88828151811061071f5761071e612f1f565b5b6020026020010151116107995786818151811061073f5761073e612f1f565b5b6020026020010151856107529190612cf7565b94508287828151811061076857610767612f1f565b5b602002602001015111156107945786818151811061078957610788612f1f565b5b602002602001015192505b610802565b8681815181106107ac576107ab612f1f565b5b6020026020010151846107bf9190612cf7565b9350818782815181106107d5576107d4612f1f565b5b60200260200101511115610801578681815181106107f6576107f5612f1f565b5b602002602001015191505b5b5b808061080e90612e78565b915050610675565b508415610858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084f90612b74565b60405180910390fd5b600554846009546108699190612cf7565b11156108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a190612974565b60405180910390fd5b60065483600a546108bb9190612cf7565b11156108fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f390612b54565b60405180910390fd5b600754821115610941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093890612a14565b60405180910390fd5b600854811115610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d90612994565b60405180910390fd5b60005b86518110156109f1578681815181106109a5576109a4612f1f565b5b6020026020010151600b60008a84815181106109c4576109c3612f1f565b5b602002602001015181526020019081526020016000208190555080806109e990612e78565b915050610989565b508360096000828254610a049190612cf7565b9250508190555082600a6000828254610a1d9190612cf7565b92505081905550610a3f33888860405180602001604052806000815250611386565b50505050505050565b600b6020528060005260406000206000915090505481565b60608151835114610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d90612ad4565b60405180910390fd5b6000835167ffffffffffffffff811115610ac357610ac2612f4e565b5b604051908082528060200260200182016040528015610af15781602001602082028036833780820191505090505b50905060005b8451811015610b6e57610b3e858281518110610b1657610b15612f1f565b5b6020026020010151858381518110610b3157610b30612f1f565b5b6020026020010151610309565b828281518110610b5157610b50612f1f565b5b60200260200101818152505080610b6790612e78565b9050610af7565b508091505092915050565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab90612b14565b60405180910390fd5b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff16610bfd61106a565b73ffffffffffffffffffffffffffffffffffffffff161415610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90612ab4565b60405180910390fd5b8060016000610c6161106a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d0e61106a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d5391906128f7565b60405180910390a35050565b600a5481565b600080600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401610ddd91906127c1565b60206040518083038186803b158015610df557600080fd5b505afa158015610e09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2d91906123aa565b73ffffffffffffffffffffffffffffffffffffffff161415610e53576001915050610e61565b610e5d84846115a4565b9150505b92915050565b610e6f61106a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610eb55750610eb485610eaf61106a565b610d65565b5b610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb906129f4565b60405180910390fd5b610f018585858585611638565b5050505050565b610f1061106a565b73ffffffffffffffffffffffffffffffffffffffff16610f2e610bb4565b73ffffffffffffffffffffffffffffffffffffffff1614610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b90612a94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb906129d4565b60405180910390fd5b610ffd816118ba565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b81518351146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90612af4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90612a34565b60405180910390fd5b600061113061106a565b9050611140818787878787611980565b60005b84518110156112f157600085828151811061116157611160612f1f565b5b6020026020010151905060008583815181106111805761117f612f1f565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890612a74565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112d69190612cf7565b92505081905550505050806112ea90612e78565b9050611143565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516113689291906128c0565b60405180910390a461137e818787878787611988565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed90612b34565b60405180910390fd5b815183511461143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190612af4565b60405180910390fd5b600061144461106a565b905061145581600087878787611980565b60005b845181101561150e5783818151811061147457611473612f1f565b5b602002602001015160008087848151811061149257611491612f1f565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114f49190612cf7565b92505081905550808061150690612e78565b915050611458565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516115869291906128c0565b60405180910390a461159d81600087878787611988565b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f90612a34565b60405180910390fd5b60006116b261106a565b90506116d28187876116c388611b6f565b6116cc88611b6f565b87611980565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090612a74565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461181e9190612cf7565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161189b929190612baf565b60405180910390a46118b1828888888888611be9565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050505050565b6119a78473ffffffffffffffffffffffffffffffffffffffff16611dd0565b15611b67578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016119ed9594939291906127dc565b602060405180830381600087803b158015611a0757600080fd5b505af1925050508015611a3857506040513d601f19601f82011682018060405250810190611a35919061237d565b60015b611ade57611a44612f7d565b806308c379a01415611aa15750611a59613541565b80611a645750611aa3565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a989190612912565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad590612934565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90612954565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611b8e57611b8d612f4e565b5b604051908082528060200260200182016040528015611bbc5781602001602082028036833780820191505090505b5090508281600081518110611bd457611bd3612f1f565b5b60200260200101818152505080915050919050565b611c088473ffffffffffffffffffffffffffffffffffffffff16611dd0565b15611dc8578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611c4e959493929190612844565b602060405180830381600087803b158015611c6857600080fd5b505af1925050508015611c9957506040513d601f19601f82011682018060405250810190611c96919061237d565b60015b611d3f57611ca5612f7d565b806308c379a01415611d025750611cba613541565b80611cc55750611d04565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf99190612912565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690612934565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd90612954565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b6000611df6611df184612bfd565b612bd8565b90508083825260208201905082856020860282011115611e1957611e18612fa4565b5b60005b85811015611e495781611e2f8882611f05565b845260208401935060208301925050600181019050611e1c565b5050509392505050565b6000611e66611e6184612c29565b612bd8565b90508083825260208201905082856020860282011115611e8957611e88612fa4565b5b60005b85811015611eb95781611e9f8882611ff8565b845260208401935060208301925050600181019050611e8c565b5050509392505050565b6000611ed6611ed184612c55565b612bd8565b905082815260208101848484011115611ef257611ef1612fa9565b5b611efd848285612dd3565b509392505050565b600081359050611f14816135d7565b92915050565b600082601f830112611f2f57611f2e612f9f565b5b8135611f3f848260208601611de3565b91505092915050565b600082601f830112611f5d57611f5c612f9f565b5b8135611f6d848260208601611e53565b91505092915050565b600081359050611f85816135ee565b92915050565b600081359050611f9a81613605565b92915050565b600081519050611faf81613605565b92915050565b600082601f830112611fca57611fc9612f9f565b5b8135611fda848260208601611ec3565b91505092915050565b600081519050611ff28161361c565b92915050565b60008135905061200781613633565b92915050565b60006020828403121561202357612022612fb3565b5b600061203184828501611f05565b91505092915050565b6000806040838503121561205157612050612fb3565b5b600061205f85828601611f05565b925050602061207085828601611f05565b9150509250929050565b600080600080600060a0868803121561209657612095612fb3565b5b60006120a488828901611f05565b95505060206120b588828901611f05565b945050604086013567ffffffffffffffff8111156120d6576120d5612fae565b5b6120e288828901611f48565b935050606086013567ffffffffffffffff81111561210357612102612fae565b5b61210f88828901611f48565b925050608086013567ffffffffffffffff8111156121305761212f612fae565b5b61213c88828901611fb5565b9150509295509295909350565b600080600080600060a0868803121561216557612164612fb3565b5b600061217388828901611f05565b955050602061218488828901611f05565b945050604061219588828901611ff8565b93505060606121a688828901611ff8565b925050608086013567ffffffffffffffff8111156121c7576121c6612fae565b5b6121d388828901611fb5565b9150509295509295909350565b600080604083850312156121f7576121f6612fb3565b5b600061220585828601611f05565b925050602061221685828601611f76565b9150509250929050565b6000806040838503121561223757612236612fb3565b5b600061224585828601611f05565b925050602061225685828601611ff8565b9150509250929050565b6000806040838503121561227757612276612fb3565b5b600083013567ffffffffffffffff81111561229557612294612fae565b5b6122a185828601611f1a565b925050602083013567ffffffffffffffff8111156122c2576122c1612fae565b5b6122ce85828601611f48565b9150509250929050565b600080604083850312156122ef576122ee612fb3565b5b600083013567ffffffffffffffff81111561230d5761230c612fae565b5b61231985828601611f48565b925050602083013567ffffffffffffffff81111561233a57612339612fae565b5b61234685828601611f48565b9150509250929050565b60006020828403121561236657612365612fb3565b5b600061237484828501611f8b565b91505092915050565b60006020828403121561239357612392612fb3565b5b60006123a184828501611fa0565b91505092915050565b6000602082840312156123c0576123bf612fb3565b5b60006123ce84828501611fe3565b91505092915050565b6000602082840312156123ed576123ec612fb3565b5b60006123fb84828501611ff8565b91505092915050565b600061241083836127a3565b60208301905092915050565b61242581612d4d565b82525050565b600061243682612c96565b6124408185612cc4565b935061244b83612c86565b8060005b8381101561247c5781516124638882612404565b975061246e83612cb7565b92505060018101905061244f565b5085935050505092915050565b61249281612d5f565b82525050565b60006124a382612ca1565b6124ad8185612cd5565b93506124bd818560208601612de2565b6124c681612fb8565b840191505092915050565b60006124dc82612cac565b6124e68185612ce6565b93506124f6818560208601612de2565b6124ff81612fb8565b840191505092915050565b6000612517603483612ce6565b915061252282612fd6565b604082019050919050565b600061253a602883612ce6565b915061254582613025565b604082019050919050565b600061255d602a83612ce6565b915061256882613074565b604082019050919050565b6000612580602283612ce6565b915061258b826130c3565b604082019050919050565b60006125a3602b83612ce6565b91506125ae82613112565b604082019050919050565b60006125c6602683612ce6565b91506125d182613161565b604082019050919050565b60006125e9602983612ce6565b91506125f4826131b0565b604082019050919050565b600061260c601f83612ce6565b9150612617826131ff565b602082019050919050565b600061262f602583612ce6565b915061263a82613228565b604082019050919050565b6000612652603283612ce6565b915061265d82613277565b604082019050919050565b6000612675602a83612ce6565b9150612680826132c6565b604082019050919050565b6000612698602083612ce6565b91506126a382613315565b602082019050919050565b60006126bb602983612ce6565b91506126c68261333e565b604082019050919050565b60006126de602983612ce6565b91506126e98261338d565b604082019050919050565b6000612701602883612ce6565b915061270c826133dc565b604082019050919050565b6000612724602283612ce6565b915061272f8261342b565b604082019050919050565b6000612747602183612ce6565b91506127528261347a565b604082019050919050565b600061276a602a83612ce6565b9150612775826134c9565b604082019050919050565b600061278d601183612ce6565b915061279882613518565b602082019050919050565b6127ac81612dc9565b82525050565b6127bb81612dc9565b82525050565b60006020820190506127d6600083018461241c565b92915050565b600060a0820190506127f1600083018861241c565b6127fe602083018761241c565b8181036040830152612810818661242b565b90508181036060830152612824818561242b565b905081810360808301526128388184612498565b90509695505050505050565b600060a082019050612859600083018861241c565b612866602083018761241c565b61287360408301866127b2565b61288060608301856127b2565b81810360808301526128928184612498565b90509695505050505050565b600060208201905081810360008301526128b8818461242b565b905092915050565b600060408201905081810360008301526128da818561242b565b905081810360208301526128ee818461242b565b90509392505050565b600060208201905061290c6000830184612489565b92915050565b6000602082019050818103600083015261292c81846124d1565b905092915050565b6000602082019050818103600083015261294d8161250a565b9050919050565b6000602082019050818103600083015261296d8161252d565b9050919050565b6000602082019050818103600083015261298d81612550565b9050919050565b600060208201905081810360008301526129ad81612573565b9050919050565b600060208201905081810360008301526129cd81612596565b9050919050565b600060208201905081810360008301526129ed816125b9565b9050919050565b60006020820190508181036000830152612a0d816125dc565b9050919050565b60006020820190508181036000830152612a2d816125ff565b9050919050565b60006020820190508181036000830152612a4d81612622565b9050919050565b60006020820190508181036000830152612a6d81612645565b9050919050565b60006020820190508181036000830152612a8d81612668565b9050919050565b60006020820190508181036000830152612aad8161268b565b9050919050565b60006020820190508181036000830152612acd816126ae565b9050919050565b60006020820190508181036000830152612aed816126d1565b9050919050565b60006020820190508181036000830152612b0d816126f4565b9050919050565b60006020820190508181036000830152612b2d81612717565b9050919050565b60006020820190508181036000830152612b4d8161273a565b9050919050565b60006020820190508181036000830152612b6d8161275d565b9050919050565b60006020820190508181036000830152612b8d81612780565b9050919050565b6000602082019050612ba960008301846127b2565b92915050565b6000604082019050612bc460008301856127b2565b612bd160208301846127b2565b9392505050565b6000612be2612bf3565b9050612bee8282612e47565b919050565b6000604051905090565b600067ffffffffffffffff821115612c1857612c17612f4e565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612c4457612c43612f4e565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612c7057612c6f612f4e565b5b612c7982612fb8565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612d0282612dc9565b9150612d0d83612dc9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d4257612d41612ec1565b5b828201905092915050565b6000612d5882612da9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000612da282612d4d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e00578082015181840152602081019050612de5565b83811115612e0f576000848401525b50505050565b60006002820490506001821680612e2d57607f821691505b60208210811415612e4157612e40612ef0565b5b50919050565b612e5082612fb8565b810181811067ffffffffffffffff82111715612e6f57612e6e612f4e565b5b80604052505050565b6000612e8382612dc9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612eb657612eb5612ec1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115612f9c5760046000803e612f99600051612fc9565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f31322c3030302062617365206361726473206861766520616c7265616479206260008201527f65656e206d696e74656400000000000000000000000000000000000000000000602082015250565b7f6d617820737570706c7920666f7220626f6e757320636172647320697320313060008201527f3030000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f6d617820737570706c7920666f72206261736520636172647320697320333000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f72656e6f756e63654f776e6572736869702063616e6e6f742062652063616c6c60008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f342c30303020626f6e7573206361726473206861766520616c7265616479206260008201527f65656e206d696e74656400000000000000000000000000000000000000000000602082015250565b7f494420416c726561647920457869737473000000000000000000000000000000600082015250565b600060443d1015613551576135d4565b613559612bf3565b60043d036004823e80513d602482011167ffffffffffffffff821117156135815750506135d4565b808201805167ffffffffffffffff81111561359f57505050506135d4565b80602083010160043d0385018111156135bc5750505050506135d4565b6135cb82602001850186612e47565b82955050505050505b90565b6135e081612d4d565b81146135eb57600080fd5b50565b6135f781612d5f565b811461360257600080fd5b50565b61360e81612d6b565b811461361957600080fd5b50565b61362581612d97565b811461363057600080fd5b50565b61363c81612dc9565b811461364757600080fd5b5056fea2646970667358221220c9bea72423089a60b191603ddd0e65dec7ec590c7d51a1b405d5edfb5fca9b0c64736f6c6343000806003368747470733a2f2f6d696e746f706f6c792e696f2f63617264735f6170692f7b69647d2e6a736f6e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f45760003560e01c80634e1273f411610097578063e47ac77611610066578063e47ac77614610283578063e985e9c5146102a1578063f242432a146102d1578063f2fde38b146102ed576100f4565b80634e1273f41461020f578063715018a61461023f5780638da5cb5b14610249578063a22cb46514610267576100f4565b80630e89341c116100d35780630e89341c146101775780632eb2c2d6146101a75780633b29f7a3146101c35780633d1cabd1146101df576100f4565b8062fdd58e146100f957806301ffc9a7146101295780630d4f1eee14610159575b600080fd5b610113600480360381019061010e9190612220565b610309565b6040516101209190612b94565b60405180910390f35b610143600480360381019061013e9190612350565b6103d2565b60405161015091906128f7565b60405180910390f35b6101616104b4565b60405161016e9190612b94565b60405180910390f35b610191600480360381019061018c91906123d7565b6104ba565b60405161019e9190612912565b60405180910390f35b6101c160048036038101906101bc919061207a565b61054e565b005b6101dd60048036038101906101d891906122d8565b6105ef565b005b6101f960048036038101906101f491906123d7565b610a48565b6040516102069190612b94565b60405180910390f35b61022960048036038101906102249190612260565b610a60565b604051610236919061289e565b60405180910390f35b610247610b79565b005b610251610bb4565b60405161025e91906127c1565b60405180910390f35b610281600480360381019061027c91906121e0565b610bde565b005b61028b610d5f565b6040516102989190612b94565b60405180910390f35b6102bb60048036038101906102b6919061203a565b610d65565b6040516102c891906128f7565b60405180910390f35b6102eb60048036038101906102e69190612149565b610e67565b005b6103076004803603810190610302919061200d565b610f08565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561037a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610371906129b4565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061049d57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104ad57506104ac82611000565b5b9050919050565b60095481565b6060600280546104c990612e15565b80601f01602080910402602001604051908101604052809291908181526020018280546104f590612e15565b80156105425780601f1061051757610100808354040283529160200191610542565b820191906000526020600020905b81548152906001019060200180831161052557829003601f168201915b50505050509050919050565b61055661106a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061059c575061059b8561059661106a565b610d65565b5b6105db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d290612a54565b60405180910390fd5b6105e88585858585611072565b5050505050565b6105f761106a565b73ffffffffffffffffffffffffffffffffffffffff16610615610bb4565b73ffffffffffffffffffffffffffffffffffffffff161461066b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066290612a94565b60405180910390fd5b6000808060008060005b8651811015610816576000600b60008a848151811061069757610696612f1f565b5b602002602001015181526020019081526020016000205411156106b957600195505b60018882815181106106ce576106cd612f1f565b5b60200260200101511415610709578681815181106106ef576106ee612f1f565b5b6020026020010151856107029190612cf7565b9450610803565b6102ee88828151811061071f5761071e612f1f565b5b6020026020010151116107995786818151811061073f5761073e612f1f565b5b6020026020010151856107529190612cf7565b94508287828151811061076857610767612f1f565b5b602002602001015111156107945786818151811061078957610788612f1f565b5b602002602001015192505b610802565b8681815181106107ac576107ab612f1f565b5b6020026020010151846107bf9190612cf7565b9350818782815181106107d5576107d4612f1f565b5b60200260200101511115610801578681815181106107f6576107f5612f1f565b5b602002602001015191505b5b5b808061080e90612e78565b915050610675565b508415610858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084f90612b74565b60405180910390fd5b600554846009546108699190612cf7565b11156108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a190612974565b60405180910390fd5b60065483600a546108bb9190612cf7565b11156108fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f390612b54565b60405180910390fd5b600754821115610941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093890612a14565b60405180910390fd5b600854811115610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d90612994565b60405180910390fd5b60005b86518110156109f1578681815181106109a5576109a4612f1f565b5b6020026020010151600b60008a84815181106109c4576109c3612f1f565b5b602002602001015181526020019081526020016000208190555080806109e990612e78565b915050610989565b508360096000828254610a049190612cf7565b9250508190555082600a6000828254610a1d9190612cf7565b92505081905550610a3f33888860405180602001604052806000815250611386565b50505050505050565b600b6020528060005260406000206000915090505481565b60608151835114610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d90612ad4565b60405180910390fd5b6000835167ffffffffffffffff811115610ac357610ac2612f4e565b5b604051908082528060200260200182016040528015610af15781602001602082028036833780820191505090505b50905060005b8451811015610b6e57610b3e858281518110610b1657610b15612f1f565b5b6020026020010151858381518110610b3157610b30612f1f565b5b6020026020010151610309565b828281518110610b5157610b50612f1f565b5b60200260200101818152505080610b6790612e78565b9050610af7565b508091505092915050565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab90612b14565b60405180910390fd5b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff16610bfd61106a565b73ffffffffffffffffffffffffffffffffffffffff161415610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90612ab4565b60405180910390fd5b8060016000610c6161106a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d0e61106a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d5391906128f7565b60405180910390a35050565b600a5481565b600080600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401610ddd91906127c1565b60206040518083038186803b158015610df557600080fd5b505afa158015610e09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2d91906123aa565b73ffffffffffffffffffffffffffffffffffffffff161415610e53576001915050610e61565b610e5d84846115a4565b9150505b92915050565b610e6f61106a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610eb55750610eb485610eaf61106a565b610d65565b5b610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb906129f4565b60405180910390fd5b610f018585858585611638565b5050505050565b610f1061106a565b73ffffffffffffffffffffffffffffffffffffffff16610f2e610bb4565b73ffffffffffffffffffffffffffffffffffffffff1614610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b90612a94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb906129d4565b60405180910390fd5b610ffd816118ba565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b81518351146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90612af4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90612a34565b60405180910390fd5b600061113061106a565b9050611140818787878787611980565b60005b84518110156112f157600085828151811061116157611160612f1f565b5b6020026020010151905060008583815181106111805761117f612f1f565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890612a74565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112d69190612cf7565b92505081905550505050806112ea90612e78565b9050611143565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516113689291906128c0565b60405180910390a461137e818787878787611988565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed90612b34565b60405180910390fd5b815183511461143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190612af4565b60405180910390fd5b600061144461106a565b905061145581600087878787611980565b60005b845181101561150e5783818151811061147457611473612f1f565b5b602002602001015160008087848151811061149257611491612f1f565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114f49190612cf7565b92505081905550808061150690612e78565b915050611458565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516115869291906128c0565b60405180910390a461159d81600087878787611988565b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f90612a34565b60405180910390fd5b60006116b261106a565b90506116d28187876116c388611b6f565b6116cc88611b6f565b87611980565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090612a74565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461181e9190612cf7565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161189b929190612baf565b60405180910390a46118b1828888888888611be9565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050505050565b6119a78473ffffffffffffffffffffffffffffffffffffffff16611dd0565b15611b67578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016119ed9594939291906127dc565b602060405180830381600087803b158015611a0757600080fd5b505af1925050508015611a3857506040513d601f19601f82011682018060405250810190611a35919061237d565b60015b611ade57611a44612f7d565b806308c379a01415611aa15750611a59613541565b80611a645750611aa3565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a989190612912565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad590612934565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90612954565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611b8e57611b8d612f4e565b5b604051908082528060200260200182016040528015611bbc5781602001602082028036833780820191505090505b5090508281600081518110611bd457611bd3612f1f565b5b60200260200101818152505080915050919050565b611c088473ffffffffffffffffffffffffffffffffffffffff16611dd0565b15611dc8578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611c4e959493929190612844565b602060405180830381600087803b158015611c6857600080fd5b505af1925050508015611c9957506040513d601f19601f82011682018060405250810190611c96919061237d565b60015b611d3f57611ca5612f7d565b806308c379a01415611d025750611cba613541565b80611cc55750611d04565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf99190612912565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690612934565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd90612954565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b6000611df6611df184612bfd565b612bd8565b90508083825260208201905082856020860282011115611e1957611e18612fa4565b5b60005b85811015611e495781611e2f8882611f05565b845260208401935060208301925050600181019050611e1c565b5050509392505050565b6000611e66611e6184612c29565b612bd8565b90508083825260208201905082856020860282011115611e8957611e88612fa4565b5b60005b85811015611eb95781611e9f8882611ff8565b845260208401935060208301925050600181019050611e8c565b5050509392505050565b6000611ed6611ed184612c55565b612bd8565b905082815260208101848484011115611ef257611ef1612fa9565b5b611efd848285612dd3565b509392505050565b600081359050611f14816135d7565b92915050565b600082601f830112611f2f57611f2e612f9f565b5b8135611f3f848260208601611de3565b91505092915050565b600082601f830112611f5d57611f5c612f9f565b5b8135611f6d848260208601611e53565b91505092915050565b600081359050611f85816135ee565b92915050565b600081359050611f9a81613605565b92915050565b600081519050611faf81613605565b92915050565b600082601f830112611fca57611fc9612f9f565b5b8135611fda848260208601611ec3565b91505092915050565b600081519050611ff28161361c565b92915050565b60008135905061200781613633565b92915050565b60006020828403121561202357612022612fb3565b5b600061203184828501611f05565b91505092915050565b6000806040838503121561205157612050612fb3565b5b600061205f85828601611f05565b925050602061207085828601611f05565b9150509250929050565b600080600080600060a0868803121561209657612095612fb3565b5b60006120a488828901611f05565b95505060206120b588828901611f05565b945050604086013567ffffffffffffffff8111156120d6576120d5612fae565b5b6120e288828901611f48565b935050606086013567ffffffffffffffff81111561210357612102612fae565b5b61210f88828901611f48565b925050608086013567ffffffffffffffff8111156121305761212f612fae565b5b61213c88828901611fb5565b9150509295509295909350565b600080600080600060a0868803121561216557612164612fb3565b5b600061217388828901611f05565b955050602061218488828901611f05565b945050604061219588828901611ff8565b93505060606121a688828901611ff8565b925050608086013567ffffffffffffffff8111156121c7576121c6612fae565b5b6121d388828901611fb5565b9150509295509295909350565b600080604083850312156121f7576121f6612fb3565b5b600061220585828601611f05565b925050602061221685828601611f76565b9150509250929050565b6000806040838503121561223757612236612fb3565b5b600061224585828601611f05565b925050602061225685828601611ff8565b9150509250929050565b6000806040838503121561227757612276612fb3565b5b600083013567ffffffffffffffff81111561229557612294612fae565b5b6122a185828601611f1a565b925050602083013567ffffffffffffffff8111156122c2576122c1612fae565b5b6122ce85828601611f48565b9150509250929050565b600080604083850312156122ef576122ee612fb3565b5b600083013567ffffffffffffffff81111561230d5761230c612fae565b5b61231985828601611f48565b925050602083013567ffffffffffffffff81111561233a57612339612fae565b5b61234685828601611f48565b9150509250929050565b60006020828403121561236657612365612fb3565b5b600061237484828501611f8b565b91505092915050565b60006020828403121561239357612392612fb3565b5b60006123a184828501611fa0565b91505092915050565b6000602082840312156123c0576123bf612fb3565b5b60006123ce84828501611fe3565b91505092915050565b6000602082840312156123ed576123ec612fb3565b5b60006123fb84828501611ff8565b91505092915050565b600061241083836127a3565b60208301905092915050565b61242581612d4d565b82525050565b600061243682612c96565b6124408185612cc4565b935061244b83612c86565b8060005b8381101561247c5781516124638882612404565b975061246e83612cb7565b92505060018101905061244f565b5085935050505092915050565b61249281612d5f565b82525050565b60006124a382612ca1565b6124ad8185612cd5565b93506124bd818560208601612de2565b6124c681612fb8565b840191505092915050565b60006124dc82612cac565b6124e68185612ce6565b93506124f6818560208601612de2565b6124ff81612fb8565b840191505092915050565b6000612517603483612ce6565b915061252282612fd6565b604082019050919050565b600061253a602883612ce6565b915061254582613025565b604082019050919050565b600061255d602a83612ce6565b915061256882613074565b604082019050919050565b6000612580602283612ce6565b915061258b826130c3565b604082019050919050565b60006125a3602b83612ce6565b91506125ae82613112565b604082019050919050565b60006125c6602683612ce6565b91506125d182613161565b604082019050919050565b60006125e9602983612ce6565b91506125f4826131b0565b604082019050919050565b600061260c601f83612ce6565b9150612617826131ff565b602082019050919050565b600061262f602583612ce6565b915061263a82613228565b604082019050919050565b6000612652603283612ce6565b915061265d82613277565b604082019050919050565b6000612675602a83612ce6565b9150612680826132c6565b604082019050919050565b6000612698602083612ce6565b91506126a382613315565b602082019050919050565b60006126bb602983612ce6565b91506126c68261333e565b604082019050919050565b60006126de602983612ce6565b91506126e98261338d565b604082019050919050565b6000612701602883612ce6565b915061270c826133dc565b604082019050919050565b6000612724602283612ce6565b915061272f8261342b565b604082019050919050565b6000612747602183612ce6565b91506127528261347a565b604082019050919050565b600061276a602a83612ce6565b9150612775826134c9565b604082019050919050565b600061278d601183612ce6565b915061279882613518565b602082019050919050565b6127ac81612dc9565b82525050565b6127bb81612dc9565b82525050565b60006020820190506127d6600083018461241c565b92915050565b600060a0820190506127f1600083018861241c565b6127fe602083018761241c565b8181036040830152612810818661242b565b90508181036060830152612824818561242b565b905081810360808301526128388184612498565b90509695505050505050565b600060a082019050612859600083018861241c565b612866602083018761241c565b61287360408301866127b2565b61288060608301856127b2565b81810360808301526128928184612498565b90509695505050505050565b600060208201905081810360008301526128b8818461242b565b905092915050565b600060408201905081810360008301526128da818561242b565b905081810360208301526128ee818461242b565b90509392505050565b600060208201905061290c6000830184612489565b92915050565b6000602082019050818103600083015261292c81846124d1565b905092915050565b6000602082019050818103600083015261294d8161250a565b9050919050565b6000602082019050818103600083015261296d8161252d565b9050919050565b6000602082019050818103600083015261298d81612550565b9050919050565b600060208201905081810360008301526129ad81612573565b9050919050565b600060208201905081810360008301526129cd81612596565b9050919050565b600060208201905081810360008301526129ed816125b9565b9050919050565b60006020820190508181036000830152612a0d816125dc565b9050919050565b60006020820190508181036000830152612a2d816125ff565b9050919050565b60006020820190508181036000830152612a4d81612622565b9050919050565b60006020820190508181036000830152612a6d81612645565b9050919050565b60006020820190508181036000830152612a8d81612668565b9050919050565b60006020820190508181036000830152612aad8161268b565b9050919050565b60006020820190508181036000830152612acd816126ae565b9050919050565b60006020820190508181036000830152612aed816126d1565b9050919050565b60006020820190508181036000830152612b0d816126f4565b9050919050565b60006020820190508181036000830152612b2d81612717565b9050919050565b60006020820190508181036000830152612b4d8161273a565b9050919050565b60006020820190508181036000830152612b6d8161275d565b9050919050565b60006020820190508181036000830152612b8d81612780565b9050919050565b6000602082019050612ba960008301846127b2565b92915050565b6000604082019050612bc460008301856127b2565b612bd160208301846127b2565b9392505050565b6000612be2612bf3565b9050612bee8282612e47565b919050565b6000604051905090565b600067ffffffffffffffff821115612c1857612c17612f4e565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612c4457612c43612f4e565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612c7057612c6f612f4e565b5b612c7982612fb8565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612d0282612dc9565b9150612d0d83612dc9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d4257612d41612ec1565b5b828201905092915050565b6000612d5882612da9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000612da282612d4d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e00578082015181840152602081019050612de5565b83811115612e0f576000848401525b50505050565b60006002820490506001821680612e2d57607f821691505b60208210811415612e4157612e40612ef0565b5b50919050565b612e5082612fb8565b810181811067ffffffffffffffff82111715612e6f57612e6e612f4e565b5b80604052505050565b6000612e8382612dc9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612eb657612eb5612ec1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115612f9c5760046000803e612f99600051612fc9565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f31322c3030302062617365206361726473206861766520616c7265616479206260008201527f65656e206d696e74656400000000000000000000000000000000000000000000602082015250565b7f6d617820737570706c7920666f7220626f6e757320636172647320697320313060008201527f3030000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f6d617820737570706c7920666f72206261736520636172647320697320333000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f72656e6f756e63654f776e6572736869702063616e6e6f742062652063616c6c60008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f342c30303020626f6e7573206361726473206861766520616c7265616479206260008201527f65656e206d696e74656400000000000000000000000000000000000000000000602082015250565b7f494420416c726561647920457869737473000000000000000000000000000000600082015250565b600060443d1015613551576135d4565b613559612bf3565b60043d036004823e80513d602482011167ffffffffffffffff821117156135815750506135d4565b808201805167ffffffffffffffff81111561359f57505050506135d4565b80602083010160043d0385018111156135bc5750505050506135d4565b6135cb82602001850186612e47565b82955050505050505b90565b6135e081612d4d565b81146135eb57600080fd5b50565b6135f781612d5f565b811461360257600080fd5b50565b61360e81612d6b565b811461361957600080fd5b50565b61362581612d97565b811461363057600080fd5b50565b61363c81612dc9565b811461364757600080fd5b5056fea2646970667358221220c9bea72423089a60b191603ddd0e65dec7ec590c7d51a1b405d5edfb5fca9b0c64736f6c63430008060033

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

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