ETH Price: $2,491.76 (+0.42%)
Gas: 4.78 Gwei

Token

RoyalBluffPass (RBP)
 

Overview

Max Total Supply

52 RBP

Holders

50

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
RoyalBluffPass

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : RoyalBluffPass.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;
import './ERC1155A.sol';

error AntiBot();
error SaleNotStarted();
error ExceedMaxPerTransaction();
error ExceedMaxPerWallet();
error ExceedMaxSupply();
error ValueTooLow();
error NotWhitelisted();
error NotTokenOwner();

contract RoyalBluffPass is ERC1155A {
    using Strings for uint256;

    uint256 public epoch;
    uint256 public saleStartTime;
    uint256 public mintPrice;
    uint256 public maxSupply;
    uint256 public maxPerTransaction;
    uint256 public maxPerWallet;
    mapping(address => uint256) walletTokens;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri,
        uint256 _epoch,
        uint256 _saleStartTime,
        uint256 _mintPrice,
        uint256 _maxSupply,
        uint256 _maxPerTransaction,
        uint256 _maxPerWallet
    ) ERC1155(_uri) {
        name = _name;
        symbol = _symbol;
        epoch = _epoch;
        saleStartTime = _saleStartTime;
        mintPrice = _mintPrice;
        maxSupply = _maxSupply;
        maxPerTransaction = _maxPerTransaction;
        maxPerWallet = _maxPerWallet;
    }

    /* Modifiers */
    modifier verifyMint(uint256 amount) {
        uint256 currentTime = block.timestamp;

        if (msg.sender != tx.origin) revert AntiBot();
        if (currentTime < saleStartTime) revert SaleNotStarted();
        if (totalSupply(epoch) + amount > maxSupply) revert ExceedMaxSupply();
        if (amount > maxPerTransaction) revert ExceedMaxPerTransaction();
        if (walletTokens[msg.sender] + amount > maxPerWallet) revert ExceedMaxPerWallet();
        if (msg.value < amount * mintPrice) revert ValueTooLow();
        _;
    }

    /* Setters */
    function setUri(string memory _uri) public onlyOwner {
        _setURI(_uri);
    }

    function setEpoch(uint256 _epoch) public onlyOwner {
        epoch = _epoch;
    }

    function setSaleStartTime(uint256 _saleStartTime) public onlyOwner {
        saleStartTime = _saleStartTime;
    }

    function setMintPrice(uint256 _mintPrice) public onlyOwner {
        mintPrice = _mintPrice;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setMapPerTransaction(uint256 _maxPerTransaction) public onlyOwner {
        maxPerTransaction = _maxPerTransaction;
    }

    function setMaxPerWallet(uint256 _maxPerWallet) public onlyOwner {
        maxPerWallet = _maxPerWallet;
    }

    /* Transactions */
    function mintToken(uint256 amount) external payable verifyMint(amount) {
        walletTokens[msg.sender] += amount;
        _mint(msg.sender, epoch, amount, '');
    }

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}('');
        require(success, 'Transfer failed.');
    }
}

File 2 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 3 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or 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: caller is not token owner or approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * 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 _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

        return array;
    }
}

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

pragma solidity ^0.8.0;

import "../ERC1155.sol";

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

File 7 of 15 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

File 9 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

File 13 of 15 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 14 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 15 of 15 : ERC1155A.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;

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

abstract contract ERC1155A is ERC1155Supply, Ownable, ReentrancyGuard {
    string public name;
    string public symbol;

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override(ERC1155Supply) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"uint256","name":"_epoch","type":"uint256"},{"internalType":"uint256","name":"_saleStartTime","type":"uint256"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxPerTransaction","type":"uint256"},{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AntiBot","type":"error"},{"inputs":[],"name":"ExceedMaxPerTransaction","type":"error"},{"inputs":[],"name":"ExceedMaxPerWallet","type":"error"},{"inputs":[],"name":"ExceedMaxSupply","type":"error"},{"inputs":[],"name":"SaleNotStarted","type":"error"},{"inputs":[],"name":"ValueTooLow","type":"error"},{"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":[],"name":"epoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_epoch","type":"uint256"}],"name":"setEpoch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTransaction","type":"uint256"}],"name":"setMapPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStartTime","type":"uint256"}],"name":"setSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200449138038062004491833981810160405281019062000037919062000380565b866200004981620000cf60201b60201c565b506200006a6200005e620000e460201b60201c565b620000ec60201b60201c565b60016005819055508860069081620000839190620006fd565b508760079081620000959190620006fd565b50856008819055508460098190555083600a8190555082600b8190555081600c8190555080600d81905550505050505050505050620007e4565b8060029081620000e09190620006fd565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200021b82620001d0565b810181811067ffffffffffffffff821117156200023d576200023c620001e1565b5b80604052505050565b600062000252620001b2565b905062000260828262000210565b919050565b600067ffffffffffffffff821115620002835762000282620001e1565b5b6200028e82620001d0565b9050602081019050919050565b60005b83811015620002bb5780820151818401526020810190506200029e565b60008484015250505050565b6000620002de620002d88462000265565b62000246565b905082815260208101848484011115620002fd57620002fc620001cb565b5b6200030a8482856200029b565b509392505050565b600082601f8301126200032a5762000329620001c6565b5b81516200033c848260208601620002c7565b91505092915050565b6000819050919050565b6200035a8162000345565b81146200036657600080fd5b50565b6000815190506200037a816200034f565b92915050565b60008060008060008060008060006101208a8c031215620003a657620003a5620001bc565b5b60008a015167ffffffffffffffff811115620003c757620003c6620001c1565b5b620003d58c828d0162000312565b99505060208a015167ffffffffffffffff811115620003f957620003f8620001c1565b5b620004078c828d0162000312565b98505060408a015167ffffffffffffffff8111156200042b576200042a620001c1565b5b620004398c828d0162000312565b97505060606200044c8c828d0162000369565b96505060806200045f8c828d0162000369565b95505060a0620004728c828d0162000369565b94505060c0620004858c828d0162000369565b93505060e0620004988c828d0162000369565b925050610100620004ac8c828d0162000369565b9150509295985092959850929598565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200050f57607f821691505b602082108103620005255762000524620004c7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200058f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000550565b6200059b868362000550565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620005de620005d8620005d28462000345565b620005b3565b62000345565b9050919050565b6000819050919050565b620005fa83620005bd565b620006126200060982620005e5565b8484546200055d565b825550505050565b600090565b620006296200061a565b62000636818484620005ef565b505050565b5b818110156200065e57620006526000826200061f565b6001810190506200063c565b5050565b601f821115620006ad5762000677816200052b565b620006828462000540565b8101602085101562000692578190505b620006aa620006a18562000540565b8301826200063b565b50505b505050565b600082821c905092915050565b6000620006d260001984600802620006b2565b1980831691505092915050565b6000620006ed8383620006bf565b9150826002028217905092915050565b6200070882620004bc565b67ffffffffffffffff811115620007245762000723620001e1565b5b620007308254620004f6565b6200073d82828562000662565b600060209050601f83116001811462000775576000841562000760578287015190505b6200076c8582620006df565b865550620007dc565b601f19841662000785866200052b565b60005b82811015620007af5784890151825560018201915060208501945060208101905062000788565b86831015620007cf5784890151620007cb601f891682620006bf565b8355505b6001600288020188555050505b505050505050565b613c9d80620007f46000396000f3fe6080604052600436106101cc5760003560e01c8063715018a6116100f7578063c4b6123911610095578063e985e9c511610064578063e985e9c514610654578063f242432a14610691578063f2fde38b146106ba578063f4a0a528146106e3576101cc565b8063c4b61239146105bb578063c634d032146105e4578063d5abeb0114610600578063e268e4d31461062b576101cc565b806395d89b41116100d157806395d89b41146105015780639b642de11461052c578063a22cb46514610555578063bd85b0391461057e576101cc565b8063715018a6146104945780638da5cb5b146104ab578063900cf0cf146104d6576101cc565b80633ccfd60b1161016f5780634f558e791161013e5780634f558e79146103da578063525f8a5c146104175780636817c76c146104405780636f8b44b01461046b576101cc565b80633ccfd60b14610330578063453c2310146103475780634b980d67146103725780634e1273f41461039d576101cc565b80630ceb2cef116101ab5780630ceb2cef146102765780630e89341c1461029f5780631cbaee2d146102dc5780632eb2c2d614610307576101cc565b8062fdd58e146101d157806301ffc9a71461020e57806306fdde031461024b575b600080fd5b3480156101dd57600080fd5b506101f860048036038101906101f39190612424565b61070c565b6040516102059190612473565b60405180910390f35b34801561021a57600080fd5b50610235600480360381019061023091906124e6565b6107d4565b604051610242919061252e565b60405180910390f35b34801561025757600080fd5b506102606108b6565b60405161026d91906125d9565b60405180910390f35b34801561028257600080fd5b5061029d600480360381019061029891906125fb565b610944565b005b3480156102ab57600080fd5b506102c660048036038101906102c191906125fb565b610956565b6040516102d391906125d9565b60405180910390f35b3480156102e857600080fd5b506102f16109ea565b6040516102fe9190612473565b60405180910390f35b34801561031357600080fd5b5061032e60048036038101906103299190612825565b6109f0565b005b34801561033c57600080fd5b50610345610a91565b005b34801561035357600080fd5b5061035c610b58565b6040516103699190612473565b60405180910390f35b34801561037e57600080fd5b50610387610b5e565b6040516103949190612473565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf91906129b7565b610b64565b6040516103d19190612aed565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc91906125fb565b610c7d565b60405161040e919061252e565b60405180910390f35b34801561042357600080fd5b5061043e600480360381019061043991906125fb565b610c91565b005b34801561044c57600080fd5b50610455610ca3565b6040516104629190612473565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d91906125fb565b610ca9565b005b3480156104a057600080fd5b506104a9610cbb565b005b3480156104b757600080fd5b506104c0610ccf565b6040516104cd9190612b1e565b60405180910390f35b3480156104e257600080fd5b506104eb610cf9565b6040516104f89190612473565b60405180910390f35b34801561050d57600080fd5b50610516610cff565b60405161052391906125d9565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190612bda565b610d8d565b005b34801561056157600080fd5b5061057c60048036038101906105779190612c4f565b610da1565b005b34801561058a57600080fd5b506105a560048036038101906105a091906125fb565b610db7565b6040516105b29190612473565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd91906125fb565b610dd4565b005b6105fe60048036038101906105f991906125fb565b610de6565b005b34801561060c57600080fd5b5061061561105f565b6040516106229190612473565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d91906125fb565b611065565b005b34801561066057600080fd5b5061067b60048036038101906106769190612c8f565b611077565b604051610688919061252e565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612ccf565b61110b565b005b3480156106c657600080fd5b506106e160048036038101906106dc9190612d66565b6111ac565b005b3480156106ef57600080fd5b5061070a600480360381019061070591906125fb565b61122f565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361077c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077390612e05565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089f57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108af57506108ae82611241565b5b9050919050565b600680546108c390612e54565b80601f01602080910402602001604051908101604052809291908181526020018280546108ef90612e54565b801561093c5780601f106109115761010080835404028352916020019161093c565b820191906000526020600020905b81548152906001019060200180831161091f57829003601f168201915b505050505081565b61094c6112ab565b8060088190555050565b60606002805461096590612e54565b80601f016020809104026020016040519081016040528092919081815260200182805461099190612e54565b80156109de5780601f106109b3576101008083540402835291602001916109de565b820191906000526020600020905b8154815290600101906020018083116109c157829003601f168201915b50505050509050919050565b60095481565b6109f8611329565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a3e5750610a3d85610a38611329565b611077565b5b610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7490612ef7565b60405180910390fd5b610a8a8585858585611331565b5050505050565b610a996112ab565b610aa1611652565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ac790612f48565b60006040518083038185875af1925050503d8060008114610b04576040519150601f19603f3d011682016040523d82523d6000602084013e610b09565b606091505b5050905080610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490612fa9565b60405180910390fd5b50610b566116a1565b565b600d5481565b600c5481565b60608151835114610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba19061303b565b60405180910390fd5b6000835167ffffffffffffffff811115610bc757610bc661262d565b5b604051908082528060200260200182016040528015610bf55781602001602082028036833780820191505090505b50905060005b8451811015610c7257610c42858281518110610c1a57610c1961305b565b5b6020026020010151858381518110610c3557610c3461305b565b5b602002602001015161070c565b828281518110610c5557610c5461305b565b5b60200260200101818152505080610c6b906130b9565b9050610bfb565b508091505092915050565b600080610c8983610db7565b119050919050565b610c996112ab565b8060098190555050565b600a5481565b610cb16112ab565b80600b8190555050565b610cc36112ab565b610ccd60006116ab565b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b60078054610d0c90612e54565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3890612e54565b8015610d855780601f10610d5a57610100808354040283529160200191610d85565b820191906000526020600020905b815481529060010190602001808311610d6857829003601f168201915b505050505081565b610d956112ab565b610d9e81611771565b50565b610db3610dac611329565b8383611784565b5050565b600060036000838152602001908152602001600020549050919050565b610ddc6112ab565b80600c8190555050565b8060004290503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e51576040517f629f2dce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600954811015610e8d576040517f2d0a346e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b5482610e9c600854610db7565b610ea69190613101565b1115610ede576040517f1e186f7200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54821115610f1a576040517f31f28f1b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d5482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f689190613101565b1115610fa0576040517fd900aa8a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5482610fae9190613135565b341015610fe7576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110369190613101565b9250508190555061105a3360085485604051806020016040528060008152506118f0565b505050565b600b5481565b61106d6112ab565b80600d8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611113611329565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611159575061115885611153611329565b611077565b5b611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90612ef7565b60405180910390fd5b6111a58585858585611aa0565b5050505050565b6111b46112ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a906131e9565b60405180910390fd5b61122c816116ab565b50565b6112376112ab565b80600a8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6112b3611329565b73ffffffffffffffffffffffffffffffffffffffff166112d1610ccf565b73ffffffffffffffffffffffffffffffffffffffff1614611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131e90613255565b60405180910390fd5b565b600033905090565b8151835114611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c906132e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90613379565b60405180910390fd5b60006113ee611329565b90506113fe818787878787611d3b565b60005b84518110156115af57600085828151811061141f5761141e61305b565b5b60200260200101519050600085838151811061143e5761143d61305b565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d69061340b565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115949190613101565b92505081905550505050806115a8906130b9565b9050611401565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161162692919061342b565b60405180910390a461163c818787878787611d51565b61164a818787878787611d59565b505050505050565b600260055403611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e906134ae565b60405180910390fd5b6002600581905550565b6001600581905550565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060029081611780919061367a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e9906137be565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118e3919061252e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690613850565b60405180910390fd5b6000611969611329565b9050600061197685611f30565b9050600061198385611f30565b905061199483600089858589611d3b565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f39190613101565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611a71929190613870565b60405180910390a4611a8883600089858589611d51565b611a9783600089898989611faa565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0690613379565b60405180910390fd5b6000611b19611329565b90506000611b2685611f30565b90506000611b3385611f30565b9050611b43838989858589611d3b565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd19061340b565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c8f9190613101565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611d0c929190613870565b60405180910390a4611d22848a8a86868a611d51565b611d30848a8a8a8a8a611faa565b505050505050505050565b611d49868686868686612181565b505050505050565b505050505050565b611d788473ffffffffffffffffffffffffffffffffffffffff16612351565b15611f28578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611dbe9594939291906138ee565b6020604051808303816000875af1925050508015611dfa57506040513d601f19601f82011682018060405250810190611df7919061396b565b60015b611e9f57611e066139a5565b806308c379a003611e625750611e1a6139c7565b80611e255750611e64565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5991906125d9565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690613ac9565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1d90613b5b565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611f4f57611f4e61262d565b5b604051908082528060200260200182016040528015611f7d5781602001602082028036833780820191505090505b5090508281600081518110611f9557611f9461305b565b5b60200260200101818152505080915050919050565b611fc98473ffffffffffffffffffffffffffffffffffffffff16612351565b15612179578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161200f959493929190613b7b565b6020604051808303816000875af192505050801561204b57506040513d601f19601f82011682018060405250810190612048919061396b565b60015b6120f0576120576139a5565b806308c379a0036120b3575061206b6139c7565b8061207657506120b5565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120aa91906125d9565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790613ac9565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216e90613b5b565b60405180910390fd5b505b505050505050565b61218f868686868686612374565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036122405760005b835181101561223e578281815181106121e2576121e161305b565b5b6020026020010151600360008684815181106122015761220061305b565b5b6020026020010151815260200190815260200160002060008282546122269190613101565b9250508190555080612237906130b9565b90506121c6565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036123495760005b83518110156123475760008482815181106122955761229461305b565b5b6020026020010151905060008483815181106122b4576122b361305b565b5b6020026020010151905060006003600084815260200190815260200160002054905081811015612319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231090613c47565b60405180910390fd5b818103600360008581526020019081526020016000208190555050505080612340906130b9565b9050612277565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123bb82612390565b9050919050565b6123cb816123b0565b81146123d657600080fd5b50565b6000813590506123e8816123c2565b92915050565b6000819050919050565b612401816123ee565b811461240c57600080fd5b50565b60008135905061241e816123f8565b92915050565b6000806040838503121561243b5761243a612386565b5b6000612449858286016123d9565b925050602061245a8582860161240f565b9150509250929050565b61246d816123ee565b82525050565b60006020820190506124886000830184612464565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124c38161248e565b81146124ce57600080fd5b50565b6000813590506124e0816124ba565b92915050565b6000602082840312156124fc576124fb612386565b5b600061250a848285016124d1565b91505092915050565b60008115159050919050565b61252881612513565b82525050565b6000602082019050612543600083018461251f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612583578082015181840152602081019050612568565b60008484015250505050565b6000601f19601f8301169050919050565b60006125ab82612549565b6125b58185612554565b93506125c5818560208601612565565b6125ce8161258f565b840191505092915050565b600060208201905081810360008301526125f381846125a0565b905092915050565b60006020828403121561261157612610612386565b5b600061261f8482850161240f565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126658261258f565b810181811067ffffffffffffffff821117156126845761268361262d565b5b80604052505050565b600061269761237c565b90506126a3828261265c565b919050565b600067ffffffffffffffff8211156126c3576126c261262d565b5b602082029050602081019050919050565b600080fd5b60006126ec6126e7846126a8565b61268d565b9050808382526020820190506020840283018581111561270f5761270e6126d4565b5b835b818110156127385780612724888261240f565b845260208401935050602081019050612711565b5050509392505050565b600082601f83011261275757612756612628565b5b81356127678482602086016126d9565b91505092915050565b600080fd5b600067ffffffffffffffff8211156127905761278f61262d565b5b6127998261258f565b9050602081019050919050565b82818337600083830152505050565b60006127c86127c384612775565b61268d565b9050828152602081018484840111156127e4576127e3612770565b5b6127ef8482856127a6565b509392505050565b600082601f83011261280c5761280b612628565b5b813561281c8482602086016127b5565b91505092915050565b600080600080600060a0868803121561284157612840612386565b5b600061284f888289016123d9565b9550506020612860888289016123d9565b945050604086013567ffffffffffffffff8111156128815761288061238b565b5b61288d88828901612742565b935050606086013567ffffffffffffffff8111156128ae576128ad61238b565b5b6128ba88828901612742565b925050608086013567ffffffffffffffff8111156128db576128da61238b565b5b6128e7888289016127f7565b9150509295509295909350565b600067ffffffffffffffff82111561290f5761290e61262d565b5b602082029050602081019050919050565b600061293361292e846128f4565b61268d565b90508083825260208201905060208402830185811115612956576129556126d4565b5b835b8181101561297f578061296b88826123d9565b845260208401935050602081019050612958565b5050509392505050565b600082601f83011261299e5761299d612628565b5b81356129ae848260208601612920565b91505092915050565b600080604083850312156129ce576129cd612386565b5b600083013567ffffffffffffffff8111156129ec576129eb61238b565b5b6129f885828601612989565b925050602083013567ffffffffffffffff811115612a1957612a1861238b565b5b612a2585828601612742565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612a64816123ee565b82525050565b6000612a768383612a5b565b60208301905092915050565b6000602082019050919050565b6000612a9a82612a2f565b612aa48185612a3a565b9350612aaf83612a4b565b8060005b83811015612ae0578151612ac78882612a6a565b9750612ad283612a82565b925050600181019050612ab3565b5085935050505092915050565b60006020820190508181036000830152612b078184612a8f565b905092915050565b612b18816123b0565b82525050565b6000602082019050612b336000830184612b0f565b92915050565b600067ffffffffffffffff821115612b5457612b5361262d565b5b612b5d8261258f565b9050602081019050919050565b6000612b7d612b7884612b39565b61268d565b905082815260208101848484011115612b9957612b98612770565b5b612ba48482856127a6565b509392505050565b600082601f830112612bc157612bc0612628565b5b8135612bd1848260208601612b6a565b91505092915050565b600060208284031215612bf057612bef612386565b5b600082013567ffffffffffffffff811115612c0e57612c0d61238b565b5b612c1a84828501612bac565b91505092915050565b612c2c81612513565b8114612c3757600080fd5b50565b600081359050612c4981612c23565b92915050565b60008060408385031215612c6657612c65612386565b5b6000612c74858286016123d9565b9250506020612c8585828601612c3a565b9150509250929050565b60008060408385031215612ca657612ca5612386565b5b6000612cb4858286016123d9565b9250506020612cc5858286016123d9565b9150509250929050565b600080600080600060a08688031215612ceb57612cea612386565b5b6000612cf9888289016123d9565b9550506020612d0a888289016123d9565b9450506040612d1b8882890161240f565b9350506060612d2c8882890161240f565b925050608086013567ffffffffffffffff811115612d4d57612d4c61238b565b5b612d59888289016127f7565b9150509295509295909350565b600060208284031215612d7c57612d7b612386565b5b6000612d8a848285016123d9565b91505092915050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000612def602a83612554565b9150612dfa82612d93565b604082019050919050565b60006020820190508181036000830152612e1e81612de2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e6c57607f821691505b602082108103612e7f57612e7e612e25565b5b50919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612ee1602e83612554565b9150612eec82612e85565b604082019050919050565b60006020820190508181036000830152612f1081612ed4565b9050919050565b600081905092915050565b50565b6000612f32600083612f17565b9150612f3d82612f22565b600082019050919050565b6000612f5382612f25565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612f93601083612554565b9150612f9e82612f5d565b602082019050919050565b60006020820190508181036000830152612fc281612f86565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613025602983612554565b915061303082612fc9565b604082019050919050565b6000602082019050818103600083015261305481613018565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130c4826123ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130f6576130f561308a565b5b600182019050919050565b600061310c826123ee565b9150613117836123ee565b925082820190508082111561312f5761312e61308a565b5b92915050565b6000613140826123ee565b915061314b836123ee565b9250828202613159816123ee565b915082820484148315176131705761316f61308a565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131d3602683612554565b91506131de82613177565b604082019050919050565b60006020820190508181036000830152613202816131c6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061323f602083612554565b915061324a82613209565b602082019050919050565b6000602082019050818103600083015261326e81613232565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006132d1602883612554565b91506132dc82613275565b604082019050919050565b60006020820190508181036000830152613300816132c4565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613363602583612554565b915061336e82613307565b604082019050919050565b6000602082019050818103600083015261339281613356565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006133f5602a83612554565b915061340082613399565b604082019050919050565b60006020820190508181036000830152613424816133e8565b9050919050565b600060408201905081810360008301526134458185612a8f565b905081810360208301526134598184612a8f565b90509392505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613498601f83612554565b91506134a382613462565b602082019050919050565b600060208201905081810360008301526134c78161348b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134f3565b61353a86836134f3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061357761357261356d846123ee565b613552565b6123ee565b9050919050565b6000819050919050565b6135918361355c565b6135a561359d8261357e565b848454613500565b825550505050565b600090565b6135ba6135ad565b6135c5818484613588565b505050565b5b818110156135e9576135de6000826135b2565b6001810190506135cb565b5050565b601f82111561362e576135ff816134ce565b613608846134e3565b81016020851015613617578190505b61362b613623856134e3565b8301826135ca565b50505b505050565b600082821c905092915050565b600061365160001984600802613633565b1980831691505092915050565b600061366a8383613640565b9150826002028217905092915050565b61368382612549565b67ffffffffffffffff81111561369c5761369b61262d565b5b6136a68254612e54565b6136b18282856135ed565b600060209050601f8311600181146136e457600084156136d2578287015190505b6136dc858261365e565b865550613744565b601f1984166136f2866134ce565b60005b8281101561371a578489015182556001820191506020850194506020810190506136f5565b868310156137375784890151613733601f891682613640565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006137a8602983612554565b91506137b38261374c565b604082019050919050565b600060208201905081810360008301526137d78161379b565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061383a602183612554565b9150613845826137de565b604082019050919050565b600060208201905081810360008301526138698161382d565b9050919050565b60006040820190506138856000830185612464565b6138926020830184612464565b9392505050565b600081519050919050565b600082825260208201905092915050565b60006138c082613899565b6138ca81856138a4565b93506138da818560208601612565565b6138e38161258f565b840191505092915050565b600060a0820190506139036000830188612b0f565b6139106020830187612b0f565b81810360408301526139228186612a8f565b905081810360608301526139368185612a8f565b9050818103608083015261394a81846138b5565b90509695505050505050565b600081519050613965816124ba565b92915050565b60006020828403121561398157613980612386565b5b600061398f84828501613956565b91505092915050565b60008160e01c9050919050565b600060033d11156139c45760046000803e6139c1600051613998565b90505b90565b600060443d10613a54576139d961237c565b60043d036004823e80513d602482011167ffffffffffffffff82111715613a01575050613a54565b808201805167ffffffffffffffff811115613a1f5750505050613a54565b80602083010160043d038501811115613a3c575050505050613a54565b613a4b8260200185018661265c565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613ab3603483612554565b9150613abe82613a57565b604082019050919050565b60006020820190508181036000830152613ae281613aa6565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000613b45602883612554565b9150613b5082613ae9565b604082019050919050565b60006020820190508181036000830152613b7481613b38565b9050919050565b600060a082019050613b906000830188612b0f565b613b9d6020830187612b0f565b613baa6040830186612464565b613bb76060830185612464565b8181036080830152613bc981846138b5565b90509695505050505050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b6000613c31602883612554565b9150613c3c82613bd5565b604082019050919050565b60006020820190508181036000830152613c6081613c24565b905091905056fea2646970667358221220fb25f38a6658a6c8ce3249805021ac1e75bdd3d2912088ed6d4c88787cf2dd7164736f6c634300081100330000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000063fe958000000000000000000000000000000000000000000000000002a303fe4b53000000000000000000000000000000000000000000000000000000000000000000de00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e526f79616c426c75666650617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000352425000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b72656961756c6e713577366d616a7077716f71697a637a366c6f70793237336b3778636b6f70633277716c6a676b376f7363326f617534000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cc5760003560e01c8063715018a6116100f7578063c4b6123911610095578063e985e9c511610064578063e985e9c514610654578063f242432a14610691578063f2fde38b146106ba578063f4a0a528146106e3576101cc565b8063c4b61239146105bb578063c634d032146105e4578063d5abeb0114610600578063e268e4d31461062b576101cc565b806395d89b41116100d157806395d89b41146105015780639b642de11461052c578063a22cb46514610555578063bd85b0391461057e576101cc565b8063715018a6146104945780638da5cb5b146104ab578063900cf0cf146104d6576101cc565b80633ccfd60b1161016f5780634f558e791161013e5780634f558e79146103da578063525f8a5c146104175780636817c76c146104405780636f8b44b01461046b576101cc565b80633ccfd60b14610330578063453c2310146103475780634b980d67146103725780634e1273f41461039d576101cc565b80630ceb2cef116101ab5780630ceb2cef146102765780630e89341c1461029f5780631cbaee2d146102dc5780632eb2c2d614610307576101cc565b8062fdd58e146101d157806301ffc9a71461020e57806306fdde031461024b575b600080fd5b3480156101dd57600080fd5b506101f860048036038101906101f39190612424565b61070c565b6040516102059190612473565b60405180910390f35b34801561021a57600080fd5b50610235600480360381019061023091906124e6565b6107d4565b604051610242919061252e565b60405180910390f35b34801561025757600080fd5b506102606108b6565b60405161026d91906125d9565b60405180910390f35b34801561028257600080fd5b5061029d600480360381019061029891906125fb565b610944565b005b3480156102ab57600080fd5b506102c660048036038101906102c191906125fb565b610956565b6040516102d391906125d9565b60405180910390f35b3480156102e857600080fd5b506102f16109ea565b6040516102fe9190612473565b60405180910390f35b34801561031357600080fd5b5061032e60048036038101906103299190612825565b6109f0565b005b34801561033c57600080fd5b50610345610a91565b005b34801561035357600080fd5b5061035c610b58565b6040516103699190612473565b60405180910390f35b34801561037e57600080fd5b50610387610b5e565b6040516103949190612473565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf91906129b7565b610b64565b6040516103d19190612aed565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc91906125fb565b610c7d565b60405161040e919061252e565b60405180910390f35b34801561042357600080fd5b5061043e600480360381019061043991906125fb565b610c91565b005b34801561044c57600080fd5b50610455610ca3565b6040516104629190612473565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d91906125fb565b610ca9565b005b3480156104a057600080fd5b506104a9610cbb565b005b3480156104b757600080fd5b506104c0610ccf565b6040516104cd9190612b1e565b60405180910390f35b3480156104e257600080fd5b506104eb610cf9565b6040516104f89190612473565b60405180910390f35b34801561050d57600080fd5b50610516610cff565b60405161052391906125d9565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190612bda565b610d8d565b005b34801561056157600080fd5b5061057c60048036038101906105779190612c4f565b610da1565b005b34801561058a57600080fd5b506105a560048036038101906105a091906125fb565b610db7565b6040516105b29190612473565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd91906125fb565b610dd4565b005b6105fe60048036038101906105f991906125fb565b610de6565b005b34801561060c57600080fd5b5061061561105f565b6040516106229190612473565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d91906125fb565b611065565b005b34801561066057600080fd5b5061067b60048036038101906106769190612c8f565b611077565b604051610688919061252e565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612ccf565b61110b565b005b3480156106c657600080fd5b506106e160048036038101906106dc9190612d66565b6111ac565b005b3480156106ef57600080fd5b5061070a600480360381019061070591906125fb565b61122f565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361077c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077390612e05565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089f57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108af57506108ae82611241565b5b9050919050565b600680546108c390612e54565b80601f01602080910402602001604051908101604052809291908181526020018280546108ef90612e54565b801561093c5780601f106109115761010080835404028352916020019161093c565b820191906000526020600020905b81548152906001019060200180831161091f57829003601f168201915b505050505081565b61094c6112ab565b8060088190555050565b60606002805461096590612e54565b80601f016020809104026020016040519081016040528092919081815260200182805461099190612e54565b80156109de5780601f106109b3576101008083540402835291602001916109de565b820191906000526020600020905b8154815290600101906020018083116109c157829003601f168201915b50505050509050919050565b60095481565b6109f8611329565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a3e5750610a3d85610a38611329565b611077565b5b610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7490612ef7565b60405180910390fd5b610a8a8585858585611331565b5050505050565b610a996112ab565b610aa1611652565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ac790612f48565b60006040518083038185875af1925050503d8060008114610b04576040519150601f19603f3d011682016040523d82523d6000602084013e610b09565b606091505b5050905080610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490612fa9565b60405180910390fd5b50610b566116a1565b565b600d5481565b600c5481565b60608151835114610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba19061303b565b60405180910390fd5b6000835167ffffffffffffffff811115610bc757610bc661262d565b5b604051908082528060200260200182016040528015610bf55781602001602082028036833780820191505090505b50905060005b8451811015610c7257610c42858281518110610c1a57610c1961305b565b5b6020026020010151858381518110610c3557610c3461305b565b5b602002602001015161070c565b828281518110610c5557610c5461305b565b5b60200260200101818152505080610c6b906130b9565b9050610bfb565b508091505092915050565b600080610c8983610db7565b119050919050565b610c996112ab565b8060098190555050565b600a5481565b610cb16112ab565b80600b8190555050565b610cc36112ab565b610ccd60006116ab565b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b60078054610d0c90612e54565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3890612e54565b8015610d855780601f10610d5a57610100808354040283529160200191610d85565b820191906000526020600020905b815481529060010190602001808311610d6857829003601f168201915b505050505081565b610d956112ab565b610d9e81611771565b50565b610db3610dac611329565b8383611784565b5050565b600060036000838152602001908152602001600020549050919050565b610ddc6112ab565b80600c8190555050565b8060004290503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e51576040517f629f2dce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600954811015610e8d576040517f2d0a346e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b5482610e9c600854610db7565b610ea69190613101565b1115610ede576040517f1e186f7200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54821115610f1a576040517f31f28f1b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d5482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f689190613101565b1115610fa0576040517fd900aa8a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5482610fae9190613135565b341015610fe7576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110369190613101565b9250508190555061105a3360085485604051806020016040528060008152506118f0565b505050565b600b5481565b61106d6112ab565b80600d8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611113611329565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611159575061115885611153611329565b611077565b5b611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90612ef7565b60405180910390fd5b6111a58585858585611aa0565b5050505050565b6111b46112ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a906131e9565b60405180910390fd5b61122c816116ab565b50565b6112376112ab565b80600a8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6112b3611329565b73ffffffffffffffffffffffffffffffffffffffff166112d1610ccf565b73ffffffffffffffffffffffffffffffffffffffff1614611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131e90613255565b60405180910390fd5b565b600033905090565b8151835114611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c906132e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90613379565b60405180910390fd5b60006113ee611329565b90506113fe818787878787611d3b565b60005b84518110156115af57600085828151811061141f5761141e61305b565b5b60200260200101519050600085838151811061143e5761143d61305b565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d69061340b565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115949190613101565b92505081905550505050806115a8906130b9565b9050611401565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161162692919061342b565b60405180910390a461163c818787878787611d51565b61164a818787878787611d59565b505050505050565b600260055403611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e906134ae565b60405180910390fd5b6002600581905550565b6001600581905550565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060029081611780919061367a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e9906137be565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118e3919061252e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690613850565b60405180910390fd5b6000611969611329565b9050600061197685611f30565b9050600061198385611f30565b905061199483600089858589611d3b565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f39190613101565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611a71929190613870565b60405180910390a4611a8883600089858589611d51565b611a9783600089898989611faa565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0690613379565b60405180910390fd5b6000611b19611329565b90506000611b2685611f30565b90506000611b3385611f30565b9050611b43838989858589611d3b565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd19061340b565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c8f9190613101565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611d0c929190613870565b60405180910390a4611d22848a8a86868a611d51565b611d30848a8a8a8a8a611faa565b505050505050505050565b611d49868686868686612181565b505050505050565b505050505050565b611d788473ffffffffffffffffffffffffffffffffffffffff16612351565b15611f28578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611dbe9594939291906138ee565b6020604051808303816000875af1925050508015611dfa57506040513d601f19601f82011682018060405250810190611df7919061396b565b60015b611e9f57611e066139a5565b806308c379a003611e625750611e1a6139c7565b80611e255750611e64565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5991906125d9565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690613ac9565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1d90613b5b565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611f4f57611f4e61262d565b5b604051908082528060200260200182016040528015611f7d5781602001602082028036833780820191505090505b5090508281600081518110611f9557611f9461305b565b5b60200260200101818152505080915050919050565b611fc98473ffffffffffffffffffffffffffffffffffffffff16612351565b15612179578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161200f959493929190613b7b565b6020604051808303816000875af192505050801561204b57506040513d601f19601f82011682018060405250810190612048919061396b565b60015b6120f0576120576139a5565b806308c379a0036120b3575061206b6139c7565b8061207657506120b5565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120aa91906125d9565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790613ac9565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216e90613b5b565b60405180910390fd5b505b505050505050565b61218f868686868686612374565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036122405760005b835181101561223e578281815181106121e2576121e161305b565b5b6020026020010151600360008684815181106122015761220061305b565b5b6020026020010151815260200190815260200160002060008282546122269190613101565b9250508190555080612237906130b9565b90506121c6565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036123495760005b83518110156123475760008482815181106122955761229461305b565b5b6020026020010151905060008483815181106122b4576122b361305b565b5b6020026020010151905060006003600084815260200190815260200160002054905081811015612319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231090613c47565b60405180910390fd5b818103600360008581526020019081526020016000208190555050505080612340906130b9565b9050612277565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123bb82612390565b9050919050565b6123cb816123b0565b81146123d657600080fd5b50565b6000813590506123e8816123c2565b92915050565b6000819050919050565b612401816123ee565b811461240c57600080fd5b50565b60008135905061241e816123f8565b92915050565b6000806040838503121561243b5761243a612386565b5b6000612449858286016123d9565b925050602061245a8582860161240f565b9150509250929050565b61246d816123ee565b82525050565b60006020820190506124886000830184612464565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124c38161248e565b81146124ce57600080fd5b50565b6000813590506124e0816124ba565b92915050565b6000602082840312156124fc576124fb612386565b5b600061250a848285016124d1565b91505092915050565b60008115159050919050565b61252881612513565b82525050565b6000602082019050612543600083018461251f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612583578082015181840152602081019050612568565b60008484015250505050565b6000601f19601f8301169050919050565b60006125ab82612549565b6125b58185612554565b93506125c5818560208601612565565b6125ce8161258f565b840191505092915050565b600060208201905081810360008301526125f381846125a0565b905092915050565b60006020828403121561261157612610612386565b5b600061261f8482850161240f565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126658261258f565b810181811067ffffffffffffffff821117156126845761268361262d565b5b80604052505050565b600061269761237c565b90506126a3828261265c565b919050565b600067ffffffffffffffff8211156126c3576126c261262d565b5b602082029050602081019050919050565b600080fd5b60006126ec6126e7846126a8565b61268d565b9050808382526020820190506020840283018581111561270f5761270e6126d4565b5b835b818110156127385780612724888261240f565b845260208401935050602081019050612711565b5050509392505050565b600082601f83011261275757612756612628565b5b81356127678482602086016126d9565b91505092915050565b600080fd5b600067ffffffffffffffff8211156127905761278f61262d565b5b6127998261258f565b9050602081019050919050565b82818337600083830152505050565b60006127c86127c384612775565b61268d565b9050828152602081018484840111156127e4576127e3612770565b5b6127ef8482856127a6565b509392505050565b600082601f83011261280c5761280b612628565b5b813561281c8482602086016127b5565b91505092915050565b600080600080600060a0868803121561284157612840612386565b5b600061284f888289016123d9565b9550506020612860888289016123d9565b945050604086013567ffffffffffffffff8111156128815761288061238b565b5b61288d88828901612742565b935050606086013567ffffffffffffffff8111156128ae576128ad61238b565b5b6128ba88828901612742565b925050608086013567ffffffffffffffff8111156128db576128da61238b565b5b6128e7888289016127f7565b9150509295509295909350565b600067ffffffffffffffff82111561290f5761290e61262d565b5b602082029050602081019050919050565b600061293361292e846128f4565b61268d565b90508083825260208201905060208402830185811115612956576129556126d4565b5b835b8181101561297f578061296b88826123d9565b845260208401935050602081019050612958565b5050509392505050565b600082601f83011261299e5761299d612628565b5b81356129ae848260208601612920565b91505092915050565b600080604083850312156129ce576129cd612386565b5b600083013567ffffffffffffffff8111156129ec576129eb61238b565b5b6129f885828601612989565b925050602083013567ffffffffffffffff811115612a1957612a1861238b565b5b612a2585828601612742565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612a64816123ee565b82525050565b6000612a768383612a5b565b60208301905092915050565b6000602082019050919050565b6000612a9a82612a2f565b612aa48185612a3a565b9350612aaf83612a4b565b8060005b83811015612ae0578151612ac78882612a6a565b9750612ad283612a82565b925050600181019050612ab3565b5085935050505092915050565b60006020820190508181036000830152612b078184612a8f565b905092915050565b612b18816123b0565b82525050565b6000602082019050612b336000830184612b0f565b92915050565b600067ffffffffffffffff821115612b5457612b5361262d565b5b612b5d8261258f565b9050602081019050919050565b6000612b7d612b7884612b39565b61268d565b905082815260208101848484011115612b9957612b98612770565b5b612ba48482856127a6565b509392505050565b600082601f830112612bc157612bc0612628565b5b8135612bd1848260208601612b6a565b91505092915050565b600060208284031215612bf057612bef612386565b5b600082013567ffffffffffffffff811115612c0e57612c0d61238b565b5b612c1a84828501612bac565b91505092915050565b612c2c81612513565b8114612c3757600080fd5b50565b600081359050612c4981612c23565b92915050565b60008060408385031215612c6657612c65612386565b5b6000612c74858286016123d9565b9250506020612c8585828601612c3a565b9150509250929050565b60008060408385031215612ca657612ca5612386565b5b6000612cb4858286016123d9565b9250506020612cc5858286016123d9565b9150509250929050565b600080600080600060a08688031215612ceb57612cea612386565b5b6000612cf9888289016123d9565b9550506020612d0a888289016123d9565b9450506040612d1b8882890161240f565b9350506060612d2c8882890161240f565b925050608086013567ffffffffffffffff811115612d4d57612d4c61238b565b5b612d59888289016127f7565b9150509295509295909350565b600060208284031215612d7c57612d7b612386565b5b6000612d8a848285016123d9565b91505092915050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000612def602a83612554565b9150612dfa82612d93565b604082019050919050565b60006020820190508181036000830152612e1e81612de2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e6c57607f821691505b602082108103612e7f57612e7e612e25565b5b50919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612ee1602e83612554565b9150612eec82612e85565b604082019050919050565b60006020820190508181036000830152612f1081612ed4565b9050919050565b600081905092915050565b50565b6000612f32600083612f17565b9150612f3d82612f22565b600082019050919050565b6000612f5382612f25565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612f93601083612554565b9150612f9e82612f5d565b602082019050919050565b60006020820190508181036000830152612fc281612f86565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613025602983612554565b915061303082612fc9565b604082019050919050565b6000602082019050818103600083015261305481613018565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130c4826123ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130f6576130f561308a565b5b600182019050919050565b600061310c826123ee565b9150613117836123ee565b925082820190508082111561312f5761312e61308a565b5b92915050565b6000613140826123ee565b915061314b836123ee565b9250828202613159816123ee565b915082820484148315176131705761316f61308a565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131d3602683612554565b91506131de82613177565b604082019050919050565b60006020820190508181036000830152613202816131c6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061323f602083612554565b915061324a82613209565b602082019050919050565b6000602082019050818103600083015261326e81613232565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006132d1602883612554565b91506132dc82613275565b604082019050919050565b60006020820190508181036000830152613300816132c4565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613363602583612554565b915061336e82613307565b604082019050919050565b6000602082019050818103600083015261339281613356565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006133f5602a83612554565b915061340082613399565b604082019050919050565b60006020820190508181036000830152613424816133e8565b9050919050565b600060408201905081810360008301526134458185612a8f565b905081810360208301526134598184612a8f565b90509392505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613498601f83612554565b91506134a382613462565b602082019050919050565b600060208201905081810360008301526134c78161348b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134f3565b61353a86836134f3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061357761357261356d846123ee565b613552565b6123ee565b9050919050565b6000819050919050565b6135918361355c565b6135a561359d8261357e565b848454613500565b825550505050565b600090565b6135ba6135ad565b6135c5818484613588565b505050565b5b818110156135e9576135de6000826135b2565b6001810190506135cb565b5050565b601f82111561362e576135ff816134ce565b613608846134e3565b81016020851015613617578190505b61362b613623856134e3565b8301826135ca565b50505b505050565b600082821c905092915050565b600061365160001984600802613633565b1980831691505092915050565b600061366a8383613640565b9150826002028217905092915050565b61368382612549565b67ffffffffffffffff81111561369c5761369b61262d565b5b6136a68254612e54565b6136b18282856135ed565b600060209050601f8311600181146136e457600084156136d2578287015190505b6136dc858261365e565b865550613744565b601f1984166136f2866134ce565b60005b8281101561371a578489015182556001820191506020850194506020810190506136f5565b868310156137375784890151613733601f891682613640565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006137a8602983612554565b91506137b38261374c565b604082019050919050565b600060208201905081810360008301526137d78161379b565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061383a602183612554565b9150613845826137de565b604082019050919050565b600060208201905081810360008301526138698161382d565b9050919050565b60006040820190506138856000830185612464565b6138926020830184612464565b9392505050565b600081519050919050565b600082825260208201905092915050565b60006138c082613899565b6138ca81856138a4565b93506138da818560208601612565565b6138e38161258f565b840191505092915050565b600060a0820190506139036000830188612b0f565b6139106020830187612b0f565b81810360408301526139228186612a8f565b905081810360608301526139368185612a8f565b9050818103608083015261394a81846138b5565b90509695505050505050565b600081519050613965816124ba565b92915050565b60006020828403121561398157613980612386565b5b600061398f84828501613956565b91505092915050565b60008160e01c9050919050565b600060033d11156139c45760046000803e6139c1600051613998565b90505b90565b600060443d10613a54576139d961237c565b60043d036004823e80513d602482011167ffffffffffffffff82111715613a01575050613a54565b808201805167ffffffffffffffff811115613a1f5750505050613a54565b80602083010160043d038501811115613a3c575050505050613a54565b613a4b8260200185018661265c565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613ab3603483612554565b9150613abe82613a57565b604082019050919050565b60006020820190508181036000830152613ae281613aa6565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000613b45602883612554565b9150613b5082613ae9565b604082019050919050565b60006020820190508181036000830152613b7481613b38565b9050919050565b600060a082019050613b906000830188612b0f565b613b9d6020830187612b0f565b613baa6040830186612464565b613bb76060830185612464565b8181036080830152613bc981846138b5565b90509695505050505050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b6000613c31602883612554565b9150613c3c82613bd5565b604082019050919050565b60006020820190508181036000830152613c6081613c24565b905091905056fea2646970667358221220fb25f38a6658a6c8ce3249805021ac1e75bdd3d2912088ed6d4c88787cf2dd7164736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000063fe958000000000000000000000000000000000000000000000000002a303fe4b53000000000000000000000000000000000000000000000000000000000000000000de00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e526f79616c426c75666650617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000352425000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b72656961756c6e713577366d616a7077716f71697a637a366c6f70793237336b3778636b6f70633277716c6a676b376f7363326f617534000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): RoyalBluffPass
Arg [1] : _symbol (string): RBP
Arg [2] : _uri (string): ipfs://bafkreiaulnq5w6majpwqoqizcz6lopy273k7xckopc2wqljgk7osc2oau4
Arg [3] : _epoch (uint256): 1
Arg [4] : _saleStartTime (uint256): 1677628800
Arg [5] : _mintPrice (uint256): 190000000000000000
Arg [6] : _maxSupply (uint256): 222
Arg [7] : _maxPerTransaction (uint256): 1
Arg [8] : _maxPerWallet (uint256): 2

-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000000000000000000000000000000000000063fe9580
Arg [5] : 00000000000000000000000000000000000000000000000002a303fe4b530000
Arg [6] : 00000000000000000000000000000000000000000000000000000000000000de
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [10] : 526f79616c426c75666650617373000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [12] : 5242500000000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [14] : 697066733a2f2f6261666b72656961756c6e713577366d616a7077716f71697a
Arg [15] : 637a366c6f70793237336b3778636b6f70633277716c6a676b376f7363326f61
Arg [16] : 7534000000000000000000000000000000000000000000000000000000000000


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

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