ETH Price: $2,635.71 (+6.14%)
Gas: 3 Gwei

Token

Treasury of Pizazz (PPTP)
 

Overview

Max Total Supply

0 PPTP

Holders

148

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jimmie2times.eth
0x8c889274481e864db796fe43c1dd70efc44e9b8d
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:
PeculiarPugsRewards

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-01
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.17;

/**
 * @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);
}


/**
 * @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;
    }
}




/**
 * @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;
    }
}





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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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







/**
 * @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);
}




/**
 * @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);
}










/**
 * @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 owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

        return array;
    }
}

contract PeculiarPugsRewards is ERC1155, Ownable {
    using Strings for uint256;
    
    mapping(uint256 => string) private rewardURI;
    mapping(uint256 => bool) private validRewards;
    mapping(uint256 => mapping(address => bool)) public claimedReward;
    mapping (uint256 => address) public creators;
    mapping (uint256 => uint256) public tokenSupply;
    mapping(address => bool) public allowedOperator;

    bool public campaignRewardClaimOpen;
    bool public snapshotRewardClaimOpen;

    bytes32 public snapshotMerkleRoot;
    
    // Contract name
    string public name;
    // Contract symbol
    string public symbol;

    constructor(string memory _name, string memory _symbol, string memory _baseURI) ERC1155(_baseURI) {
        name = _name;
        symbol = _symbol; 
    }

    function setSnapshotMerkleRoot(bytes32 _root) external onlyOwner {
        snapshotMerkleRoot = _root; 
    }

    function setSnapshotClaimOpen(bool _open) external onlyOwner {
        snapshotRewardClaimOpen = _open; 
    }

    function setAllowedOperator(address _operator, bool _allowed) external onlyOwner {
        allowedOperator[_operator] = _allowed; 
    }

    function addRewardToken(uint256 tokenId, string memory tokenUri) external onlyOwner {
        require(!validRewards[tokenId], "Token ID already in use.");

        rewardURI[tokenId] = tokenUri; 
        validRewards[tokenId] = true; 
        emit URI(tokenUri, tokenId);
    }

    function updateTokenURI(uint256 tokenId, string memory tokenUri) external onlyOwner {
        require(validRewards[tokenId], "Token ID does not exist.");

        rewardURI[tokenId] = tokenUri; 
        emit URI(tokenUri, tokenId);
    }

    function claimSnapshotReward(uint256 claimTokenID, bytes32[] calldata merkleProof) external {
        require(snapshotRewardClaimOpen, "Reward claims closed.");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender, claimTokenID));

        require(MerkleProof.verify(merkleProof, snapshotMerkleRoot, leaf), "Invalid Merkle proof");
        require(!claimedReward[claimTokenID][msg.sender], "Reward already claimed.");

        claimedReward[claimTokenID][msg.sender] = true;
        _mint(msg.sender, claimTokenID, 1, "");
        tokenSupply[claimTokenID] = tokenSupply[claimTokenID] + 1;
    }

    function airdropReward(uint256 tokenId, address[] calldata recipients, uint256[] calldata count) external onlyOwner {
        require(recipients.length == count.length);
        uint256 supplyAdded = 0;
        for(uint256 i = 0;i < recipients.length;i++) {
            _mint(recipients[i], tokenId, count[i], "");
            supplyAdded += count[i];
        }
        tokenSupply[tokenId] = tokenSupply[tokenId] + supplyAdded;
    }

    /** Allow a future contract added by contract owner to burn tokens on behalf of a user
    */
    function burnReward(address holder, uint256 tokenId, uint256 amount) external {
        require(allowedOperator[msg.sender]);
        _burn(holder, tokenId, amount);
    }

    /** Allow a future contract added by contract owner to mint new tokens on behalf of a user
    */
    function grantReward(address holder, uint256 tokenId, uint256 amount) external {
        require(allowedOperator[msg.sender]);
        _mint(holder, tokenId, amount, "");
    }

    function uri(uint256 typeId)
        public
        view                
        override
        returns (string memory)
    {
        require(
            validRewards[typeId],
            "URI requested for invalid type"
        );
        return
            rewardURI[typeId];
    }

      /**
        * @dev Returns the total quantity for a token ID
        * @param _id uint256 ID of the token to query
        * @return amount of token in existence
        */
    function totalSupply(
        uint256 _id
    ) public view returns (uint256) {
        return tokenSupply[_id];
    }
}










// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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



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

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

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

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

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


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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenUri","type":"string"}],"name":"addRewardToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"count","type":"uint256[]"}],"name":"airdropReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowedOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"campaignRewardClaimOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimTokenID","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claimSnapshotReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"claimedReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"grantReward","outputs":[],"stateMutability":"nonpayable","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":"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":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_allowed","type":"bool"}],"name":"setAllowedOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"}],"name":"setSnapshotClaimOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setSnapshotMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshotMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"snapshotRewardClaimOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"","type":"uint256"}],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenUri","type":"string"}],"name":"updateTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620028c4380380620028c483398101604081905262000034916200019c565b80620000408162000073565b506200004c3362000085565b600c6200005a8482620002bc565b50600d620000698382620002bc565b5050505062000388565b6002620000818282620002bc565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620000ff57600080fd5b81516001600160401b03808211156200011c576200011c620000d7565b604051601f8301601f19908116603f01168101908282118183101715620001475762000147620000d7565b816040528381526020925086838588010111156200016457600080fd5b600091505b8382101562000188578582018301518183018401529082019062000169565b600093810190920192909252949350505050565b600080600060608486031215620001b257600080fd5b83516001600160401b0380821115620001ca57600080fd5b620001d887838801620000ed565b94506020860151915080821115620001ef57600080fd5b620001fd87838801620000ed565b935060408601519150808211156200021457600080fd5b506200022386828701620000ed565b9150509250925092565b600181811c908216806200024257607f821691505b6020821081036200026357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002b757600081815260208120601f850160051c81016020861015620002925750805b601f850160051c820191505b81811015620002b3578281556001016200029e565b5050505b505050565b81516001600160401b03811115620002d857620002d8620000d7565b620002f081620002e984546200022d565b8462000269565b602080601f8311600181146200032857600084156200030f5750858301515b600019600386901b1c1916600185901b178555620002b3565b600085815260208120601f198616915b82811015620003595788860151825594840194600190910190840162000338565b5085821015620003785787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61252c80620003986000396000f3fe608060405234801561001057600080fd5b50600436106101d95760003560e01c80638da5cb5b11610104578063c2655d4f116100a2578063f10dec0f11610071578063f10dec0f1461045f578063f242432a14610472578063f2fde38b14610485578063fc1be7d51461049857600080fd5b8063c2655d4f146103d4578063cd53d08e146103e7578063dac2839d14610410578063e985e9c51461042357600080fd5b8063ac977802116100de578063ac9778021461037c578063b49529921461038f578063b7a4eff0146103a2578063bd85b039146103b457600080fd5b80638da5cb5b1461033c57806395d89b4114610361578063a22cb4651461036957600080fd5b80632eb2c2d61161017c578063715018a61161014b578063715018a614610305578063899ff9371461030d5780638afc7cb3146103165780638b51d3751461032957600080fd5b80632eb2c2d61461029757806333982e1c146102aa5780634e1273f4146102b75780634e9a7eaa146102d757600080fd5b80630e89341c116101b85780630e89341c1461023c57806318e97fd11461024f5780632693ebf2146102645780632ad3a8741461028457600080fd5b8062fdd58e146101de57806301ffc9a71461020457806306fdde0314610227575b600080fd5b6101f16101ec366004611a1a565b6104bb565b6040519081526020015b60405180910390f35b610217610212366004611a5a565b610554565b60405190151581526020016101fb565b61022f6105a4565b6040516101fb9190611ac4565b61022f61024a366004611ad7565b610632565b61026261025d366004611b8f565b610731565b005b6101f1610272366004611ad7565b60086020526000908152604090205481565b610262610292366004611be9565b61080e565b6102626102a5366004611cd0565b61084a565b600a546102179060ff1681565b6102ca6102c5366004611d79565b6108e1565b6040516101fb9190611e74565b6102176102e5366004611e87565b600660209081526000928352604080842090915290825290205460ff1681565b610262610a0a565b6101f1600b5481565b610262610324366004611ec3565b610a40565b610262610337366004611b8f565b610a95565b6003546001600160a01b03165b6040516001600160a01b0390911681526020016101fb565b61022f610b82565b610262610377366004611ec3565b610b8f565b61026261038a366004611be9565b610b9e565b61026261039d366004611f38565b610bc5565b600a5461021790610100900460ff1681565b6101f16103c2366004611ad7565b60009081526008602052604090205490565b6102626103e2366004611fb1565b610ccd565b6103496103f5366004611ad7565b6007602052600090815260409020546001600160a01b031681565b61026261041e366004611ad7565b610d11565b610217610431366004611fcc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61026261046d366004611ff6565b610d40565b610262610480366004612041565b610f30565b6102626104933660046120a5565b610fb7565b6102176104a63660046120a5565b60096020526000908152604090205460ff1681565b60006001600160a01b03831661052b5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636cdb3d1360e11b148061058557506001600160e01b031982166303a24d0760e21b145b8061054e57506301ffc9a760e01b6001600160e01b031983161461054e565b600c80546105b1906120c0565b80601f01602080910402602001604051908101604052809291908181526020018280546105dd906120c0565b801561062a5780601f106105ff5761010080835404028352916020019161062a565b820191906000526020600020905b81548152906001019060200180831161060d57829003601f168201915b505050505081565b60008181526005602052604090205460609060ff166106935760405162461bcd60e51b815260206004820152601e60248201527f5552492072657175657374656420666f7220696e76616c6964207479706500006044820152606401610522565b600082815260046020526040902080546106ac906120c0565b80601f01602080910402602001604051908101604052809291908181526020018280546106d8906120c0565b80156107255780601f106106fa57610100808354040283529160200191610725565b820191906000526020600020905b81548152906001019060200180831161070857829003601f168201915b50505050509050919050565b6003546001600160a01b0316331461075b5760405162461bcd60e51b8152600401610522906120fa565b60008281526005602052604090205460ff166107b95760405162461bcd60e51b815260206004820152601860248201527f546f6b656e20494420646f6573206e6f742065786973742e00000000000000006044820152606401610522565b60008281526004602052604090206107d18282612175565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b826040516108029190611ac4565b60405180910390a25050565b3360009081526009602052604090205460ff1661082a57600080fd5b61084583838360405180602001604052806000815250611052565b505050565b6001600160a01b03851633148061086657506108668533610431565b6108cd5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610522565b6108da8585858585611166565b5050505050565b606081518351146109465760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610522565b600083516001600160401b0381111561096157610961611af0565b60405190808252806020026020018201604052801561098a578160200160208202803683370190505b50905060005b8451811015610a02576109d58582815181106109ae576109ae612234565b60200260200101518583815181106109c8576109c8612234565b60200260200101516104bb565b8282815181106109e7576109e7612234565b60209081029190910101526109fb81612260565b9050610990565b509392505050565b6003546001600160a01b03163314610a345760405162461bcd60e51b8152600401610522906120fa565b610a3e6000611343565b565b6003546001600160a01b03163314610a6a5760405162461bcd60e51b8152600401610522906120fa565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6003546001600160a01b03163314610abf5760405162461bcd60e51b8152600401610522906120fa565b60008281526005602052604090205460ff1615610b1e5760405162461bcd60e51b815260206004820152601860248201527f546f6b656e20494420616c726561647920696e207573652e00000000000000006044820152606401610522565b6000828152600460205260409020610b368282612175565b5060008281526005602052604090819020805460ff191660011790555182907f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b90610802908490611ac4565b600d80546105b1906120c0565b610b9a338383611395565b5050565b3360009081526009602052604090205460ff16610bba57600080fd5b610845838383611475565b6003546001600160a01b03163314610bef5760405162461bcd60e51b8152600401610522906120fa565b828114610bfb57600080fd5b6000805b84811015610c9857610c60868683818110610c1c57610c1c612234565b9050602002016020810190610c3191906120a5565b88868685818110610c4457610c44612234565b9050602002013560405180602001604052806000815250611052565b838382818110610c7257610c72612234565b9050602002013582610c849190612279565b915080610c9081612260565b915050610bff565b50600086815260086020526040902054610cb3908290612279565b600096875260086020526040909620959095555050505050565b6003546001600160a01b03163314610cf75760405162461bcd60e51b8152600401610522906120fa565b600a80549115156101000261ff0019909216919091179055565b6003546001600160a01b03163314610d3b5760405162461bcd60e51b8152600401610522906120fa565b600b55565b600a54610100900460ff16610d8f5760405162461bcd60e51b81526020600482015260156024820152742932bbb0b9321031b630b4b6b99031b637b9b2b21760591b6044820152606401610522565b6040516bffffffffffffffffffffffff193360601b16602082015260348101849052600090605401604051602081830303815290604052805190602001209050610e1083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b5491508490506115f1565b610e535760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21026b2b935b63290383937b7b360611b6044820152606401610522565b600084815260066020908152604080832033845290915290205460ff1615610ebd5760405162461bcd60e51b815260206004820152601760248201527f52657761726420616c726561647920636c61696d65642e0000000000000000006044820152606401610522565b600084815260066020908152604080832033808552908352818420805460ff191660019081179091558251938401909252928252610efe9291879190611052565b600084815260086020526040902054610f18906001612279565b60009485526008602052604090942093909355505050565b6001600160a01b038516331480610f4c5750610f4c8533610431565b610faa5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610522565b6108da8585858585611607565b6003546001600160a01b03163314610fe15760405162461bcd60e51b8152600401610522906120fa565b6001600160a01b0381166110465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610522565b61104f81611343565b50565b6001600160a01b0384166110b25760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610522565b3360006110be85611731565b905060006110cb85611731565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906110fd908490612279565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461115d8360008989898961177c565b50505050505050565b81518351146111c85760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610522565b6001600160a01b0384166111ee5760405162461bcd60e51b81526004016105229061228c565b3360005b84518110156112d557600085828151811061120f5761120f612234565b60200260200101519050600085838151811061122d5761122d612234565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561127d5760405162461bcd60e51b8152600401610522906122d1565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906112ba908490612279565b92505081905550505050806112ce90612260565b90506111f2565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161132592919061231b565b60405180910390a461133b8187878787876118d7565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036114085760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610522565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383166114d75760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610522565b3360006114e384611731565b905060006114f084611731565b60408051602080820183526000918290528882528181528282206001600160a01b038b16835290522054909150848110156115795760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610522565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a460408051602081019091526000905261115d565b6000826115fe8584611992565b14949350505050565b6001600160a01b03841661162d5760405162461bcd60e51b81526004016105229061228c565b33600061163985611731565b9050600061164685611731565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156116895760405162461bcd60e51b8152600401610522906122d1565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906116c6908490612279565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611726848a8a8a8a8a61177c565b505050505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061176b5761176b612234565b602090810291909101015292915050565b6001600160a01b0384163b1561133b5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906117c09089908990889088908890600401612349565b6020604051808303816000875af19250505080156117fb575060408051601f3d908101601f191682019092526117f89181019061238e565b60015b6118a7576118076123ab565b806308c379a003611840575061181b6123c7565b806118265750611842565b8060405162461bcd60e51b81526004016105229190611ac4565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610522565b6001600160e01b0319811663f23a6e6160e01b1461115d5760405162461bcd60e51b815260040161052290612450565b6001600160a01b0384163b1561133b5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061191b9089908990889088908890600401612498565b6020604051808303816000875af1925050508015611956575060408051601f3d908101601f191682019092526119539181019061238e565b60015b611962576118076123ab565b6001600160e01b0319811663bc197c8160e01b1461115d5760405162461bcd60e51b815260040161052290612450565b600081815b8451811015610a025760008582815181106119b4576119b4612234565b602002602001015190508083116119da57600083815260208290526040902092506119eb565b600081815260208490526040902092505b50806119f681612260565b915050611997565b80356001600160a01b0381168114611a1557600080fd5b919050565b60008060408385031215611a2d57600080fd5b611a36836119fe565b946020939093013593505050565b6001600160e01b03198116811461104f57600080fd5b600060208284031215611a6c57600080fd5b8135611a7781611a44565b9392505050565b6000815180845260005b81811015611aa457602081850181015186830182015201611a88565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000611a776020830184611a7e565b600060208284031215611ae957600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715611b2b57611b2b611af0565b6040525050565b60006001600160401b03831115611b4b57611b4b611af0565b604051611b62601f8501601f191660200182611b06565b809150838152848484011115611b7757600080fd5b83836020830137600060208583010152509392505050565b60008060408385031215611ba257600080fd5b8235915060208301356001600160401b03811115611bbf57600080fd5b8301601f81018513611bd057600080fd5b611bdf85823560208401611b32565b9150509250929050565b600080600060608486031215611bfe57600080fd5b611c07846119fe565b95602085013595506040909401359392505050565b60006001600160401b03821115611c3557611c35611af0565b5060051b60200190565b600082601f830112611c5057600080fd5b81356020611c5d82611c1c565b604051611c6a8282611b06565b83815260059390931b8501820192828101915086841115611c8a57600080fd5b8286015b84811015611ca55780358352918301918301611c8e565b509695505050505050565b600082601f830112611cc157600080fd5b611a7783833560208501611b32565b600080600080600060a08688031215611ce857600080fd5b611cf1866119fe565b9450611cff602087016119fe565b935060408601356001600160401b0380821115611d1b57600080fd5b611d2789838a01611c3f565b94506060880135915080821115611d3d57600080fd5b611d4989838a01611c3f565b93506080880135915080821115611d5f57600080fd5b50611d6c88828901611cb0565b9150509295509295909350565b60008060408385031215611d8c57600080fd5b82356001600160401b0380821115611da357600080fd5b818501915085601f830112611db757600080fd5b81356020611dc482611c1c565b604051611dd18282611b06565b83815260059390931b8501820192828101915089841115611df157600080fd5b948201945b83861015611e1657611e07866119fe565b82529482019490820190611df6565b96505086013592505080821115611e2c57600080fd5b50611bdf85828601611c3f565b600081518084526020808501945080840160005b83811015611e6957815187529582019590820190600101611e4d565b509495945050505050565b602081526000611a776020830184611e39565b60008060408385031215611e9a57600080fd5b82359150611eaa602084016119fe565b90509250929050565b80358015158114611a1557600080fd5b60008060408385031215611ed657600080fd5b611edf836119fe565b9150611eaa60208401611eb3565b60008083601f840112611eff57600080fd5b5081356001600160401b03811115611f1657600080fd5b6020830191508360208260051b8501011115611f3157600080fd5b9250929050565b600080600080600060608688031215611f5057600080fd5b8535945060208601356001600160401b0380821115611f6e57600080fd5b611f7a89838a01611eed565b90965094506040880135915080821115611f9357600080fd5b50611fa088828901611eed565b969995985093965092949392505050565b600060208284031215611fc357600080fd5b611a7782611eb3565b60008060408385031215611fdf57600080fd5b611fe8836119fe565b9150611eaa602084016119fe565b60008060006040848603121561200b57600080fd5b8335925060208401356001600160401b0381111561202857600080fd5b61203486828701611eed565b9497909650939450505050565b600080600080600060a0868803121561205957600080fd5b612062866119fe565b9450612070602087016119fe565b9350604086013592506060860135915060808601356001600160401b0381111561209957600080fd5b611d6c88828901611cb0565b6000602082840312156120b757600080fd5b611a77826119fe565b600181811c908216806120d457607f821691505b6020821081036120f457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561084557600081815260208120601f850160051c810160208610156121565750805b601f850160051c820191505b8181101561133b57828155600101612162565b81516001600160401b0381111561218e5761218e611af0565b6121a28161219c84546120c0565b8461212f565b602080601f8311600181146121d757600084156121bf5750858301515b600019600386901b1c1916600185901b17855561133b565b600085815260208120601f198616915b82811015612206578886015182559484019460019091019084016121e7565b50858210156122245787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016122725761227261224a565b5060010190565b8082018082111561054e5761054e61224a565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60408152600061232e6040830185611e39565b82810360208401526123408185611e39565b95945050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061238390830184611a7e565b979650505050505050565b6000602082840312156123a057600080fd5b8151611a7781611a44565b600060033d11156123c45760046000803e5060005160e01c5b90565b600060443d10156123d55790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561240457505050505090565b828501915081518181111561241c5750505050505090565b843d87010160208285010111156124365750505050505090565b61244560208286010187611b06565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a0604082018190526000906124c490830186611e39565b82810360608401526124d68186611e39565b905082810360808401526124ea8185611a7e565b9897505050505050505056fea264697066735822122062d8ca4120b4ba656bcf1914ea8e126439c81fc6c2d39542245e9193f89ed5ac64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000125472656173757279206f662050697a617a7a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000450505450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005656d707479000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101d95760003560e01c80638da5cb5b11610104578063c2655d4f116100a2578063f10dec0f11610071578063f10dec0f1461045f578063f242432a14610472578063f2fde38b14610485578063fc1be7d51461049857600080fd5b8063c2655d4f146103d4578063cd53d08e146103e7578063dac2839d14610410578063e985e9c51461042357600080fd5b8063ac977802116100de578063ac9778021461037c578063b49529921461038f578063b7a4eff0146103a2578063bd85b039146103b457600080fd5b80638da5cb5b1461033c57806395d89b4114610361578063a22cb4651461036957600080fd5b80632eb2c2d61161017c578063715018a61161014b578063715018a614610305578063899ff9371461030d5780638afc7cb3146103165780638b51d3751461032957600080fd5b80632eb2c2d61461029757806333982e1c146102aa5780634e1273f4146102b75780634e9a7eaa146102d757600080fd5b80630e89341c116101b85780630e89341c1461023c57806318e97fd11461024f5780632693ebf2146102645780632ad3a8741461028457600080fd5b8062fdd58e146101de57806301ffc9a71461020457806306fdde0314610227575b600080fd5b6101f16101ec366004611a1a565b6104bb565b6040519081526020015b60405180910390f35b610217610212366004611a5a565b610554565b60405190151581526020016101fb565b61022f6105a4565b6040516101fb9190611ac4565b61022f61024a366004611ad7565b610632565b61026261025d366004611b8f565b610731565b005b6101f1610272366004611ad7565b60086020526000908152604090205481565b610262610292366004611be9565b61080e565b6102626102a5366004611cd0565b61084a565b600a546102179060ff1681565b6102ca6102c5366004611d79565b6108e1565b6040516101fb9190611e74565b6102176102e5366004611e87565b600660209081526000928352604080842090915290825290205460ff1681565b610262610a0a565b6101f1600b5481565b610262610324366004611ec3565b610a40565b610262610337366004611b8f565b610a95565b6003546001600160a01b03165b6040516001600160a01b0390911681526020016101fb565b61022f610b82565b610262610377366004611ec3565b610b8f565b61026261038a366004611be9565b610b9e565b61026261039d366004611f38565b610bc5565b600a5461021790610100900460ff1681565b6101f16103c2366004611ad7565b60009081526008602052604090205490565b6102626103e2366004611fb1565b610ccd565b6103496103f5366004611ad7565b6007602052600090815260409020546001600160a01b031681565b61026261041e366004611ad7565b610d11565b610217610431366004611fcc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61026261046d366004611ff6565b610d40565b610262610480366004612041565b610f30565b6102626104933660046120a5565b610fb7565b6102176104a63660046120a5565b60096020526000908152604090205460ff1681565b60006001600160a01b03831661052b5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636cdb3d1360e11b148061058557506001600160e01b031982166303a24d0760e21b145b8061054e57506301ffc9a760e01b6001600160e01b031983161461054e565b600c80546105b1906120c0565b80601f01602080910402602001604051908101604052809291908181526020018280546105dd906120c0565b801561062a5780601f106105ff5761010080835404028352916020019161062a565b820191906000526020600020905b81548152906001019060200180831161060d57829003601f168201915b505050505081565b60008181526005602052604090205460609060ff166106935760405162461bcd60e51b815260206004820152601e60248201527f5552492072657175657374656420666f7220696e76616c6964207479706500006044820152606401610522565b600082815260046020526040902080546106ac906120c0565b80601f01602080910402602001604051908101604052809291908181526020018280546106d8906120c0565b80156107255780601f106106fa57610100808354040283529160200191610725565b820191906000526020600020905b81548152906001019060200180831161070857829003601f168201915b50505050509050919050565b6003546001600160a01b0316331461075b5760405162461bcd60e51b8152600401610522906120fa565b60008281526005602052604090205460ff166107b95760405162461bcd60e51b815260206004820152601860248201527f546f6b656e20494420646f6573206e6f742065786973742e00000000000000006044820152606401610522565b60008281526004602052604090206107d18282612175565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b826040516108029190611ac4565b60405180910390a25050565b3360009081526009602052604090205460ff1661082a57600080fd5b61084583838360405180602001604052806000815250611052565b505050565b6001600160a01b03851633148061086657506108668533610431565b6108cd5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610522565b6108da8585858585611166565b5050505050565b606081518351146109465760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610522565b600083516001600160401b0381111561096157610961611af0565b60405190808252806020026020018201604052801561098a578160200160208202803683370190505b50905060005b8451811015610a02576109d58582815181106109ae576109ae612234565b60200260200101518583815181106109c8576109c8612234565b60200260200101516104bb565b8282815181106109e7576109e7612234565b60209081029190910101526109fb81612260565b9050610990565b509392505050565b6003546001600160a01b03163314610a345760405162461bcd60e51b8152600401610522906120fa565b610a3e6000611343565b565b6003546001600160a01b03163314610a6a5760405162461bcd60e51b8152600401610522906120fa565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6003546001600160a01b03163314610abf5760405162461bcd60e51b8152600401610522906120fa565b60008281526005602052604090205460ff1615610b1e5760405162461bcd60e51b815260206004820152601860248201527f546f6b656e20494420616c726561647920696e207573652e00000000000000006044820152606401610522565b6000828152600460205260409020610b368282612175565b5060008281526005602052604090819020805460ff191660011790555182907f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b90610802908490611ac4565b600d80546105b1906120c0565b610b9a338383611395565b5050565b3360009081526009602052604090205460ff16610bba57600080fd5b610845838383611475565b6003546001600160a01b03163314610bef5760405162461bcd60e51b8152600401610522906120fa565b828114610bfb57600080fd5b6000805b84811015610c9857610c60868683818110610c1c57610c1c612234565b9050602002016020810190610c3191906120a5565b88868685818110610c4457610c44612234565b9050602002013560405180602001604052806000815250611052565b838382818110610c7257610c72612234565b9050602002013582610c849190612279565b915080610c9081612260565b915050610bff565b50600086815260086020526040902054610cb3908290612279565b600096875260086020526040909620959095555050505050565b6003546001600160a01b03163314610cf75760405162461bcd60e51b8152600401610522906120fa565b600a80549115156101000261ff0019909216919091179055565b6003546001600160a01b03163314610d3b5760405162461bcd60e51b8152600401610522906120fa565b600b55565b600a54610100900460ff16610d8f5760405162461bcd60e51b81526020600482015260156024820152742932bbb0b9321031b630b4b6b99031b637b9b2b21760591b6044820152606401610522565b6040516bffffffffffffffffffffffff193360601b16602082015260348101849052600090605401604051602081830303815290604052805190602001209050610e1083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b5491508490506115f1565b610e535760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21026b2b935b63290383937b7b360611b6044820152606401610522565b600084815260066020908152604080832033845290915290205460ff1615610ebd5760405162461bcd60e51b815260206004820152601760248201527f52657761726420616c726561647920636c61696d65642e0000000000000000006044820152606401610522565b600084815260066020908152604080832033808552908352818420805460ff191660019081179091558251938401909252928252610efe9291879190611052565b600084815260086020526040902054610f18906001612279565b60009485526008602052604090942093909355505050565b6001600160a01b038516331480610f4c5750610f4c8533610431565b610faa5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610522565b6108da8585858585611607565b6003546001600160a01b03163314610fe15760405162461bcd60e51b8152600401610522906120fa565b6001600160a01b0381166110465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610522565b61104f81611343565b50565b6001600160a01b0384166110b25760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610522565b3360006110be85611731565b905060006110cb85611731565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906110fd908490612279565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461115d8360008989898961177c565b50505050505050565b81518351146111c85760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610522565b6001600160a01b0384166111ee5760405162461bcd60e51b81526004016105229061228c565b3360005b84518110156112d557600085828151811061120f5761120f612234565b60200260200101519050600085838151811061122d5761122d612234565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561127d5760405162461bcd60e51b8152600401610522906122d1565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906112ba908490612279565b92505081905550505050806112ce90612260565b90506111f2565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161132592919061231b565b60405180910390a461133b8187878787876118d7565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036114085760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610522565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383166114d75760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610522565b3360006114e384611731565b905060006114f084611731565b60408051602080820183526000918290528882528181528282206001600160a01b038b16835290522054909150848110156115795760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610522565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a460408051602081019091526000905261115d565b6000826115fe8584611992565b14949350505050565b6001600160a01b03841661162d5760405162461bcd60e51b81526004016105229061228c565b33600061163985611731565b9050600061164685611731565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156116895760405162461bcd60e51b8152600401610522906122d1565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906116c6908490612279565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611726848a8a8a8a8a61177c565b505050505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061176b5761176b612234565b602090810291909101015292915050565b6001600160a01b0384163b1561133b5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906117c09089908990889088908890600401612349565b6020604051808303816000875af19250505080156117fb575060408051601f3d908101601f191682019092526117f89181019061238e565b60015b6118a7576118076123ab565b806308c379a003611840575061181b6123c7565b806118265750611842565b8060405162461bcd60e51b81526004016105229190611ac4565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610522565b6001600160e01b0319811663f23a6e6160e01b1461115d5760405162461bcd60e51b815260040161052290612450565b6001600160a01b0384163b1561133b5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061191b9089908990889088908890600401612498565b6020604051808303816000875af1925050508015611956575060408051601f3d908101601f191682019092526119539181019061238e565b60015b611962576118076123ab565b6001600160e01b0319811663bc197c8160e01b1461115d5760405162461bcd60e51b815260040161052290612450565b600081815b8451811015610a025760008582815181106119b4576119b4612234565b602002602001015190508083116119da57600083815260208290526040902092506119eb565b600081815260208490526040902092505b50806119f681612260565b915050611997565b80356001600160a01b0381168114611a1557600080fd5b919050565b60008060408385031215611a2d57600080fd5b611a36836119fe565b946020939093013593505050565b6001600160e01b03198116811461104f57600080fd5b600060208284031215611a6c57600080fd5b8135611a7781611a44565b9392505050565b6000815180845260005b81811015611aa457602081850181015186830182015201611a88565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000611a776020830184611a7e565b600060208284031215611ae957600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715611b2b57611b2b611af0565b6040525050565b60006001600160401b03831115611b4b57611b4b611af0565b604051611b62601f8501601f191660200182611b06565b809150838152848484011115611b7757600080fd5b83836020830137600060208583010152509392505050565b60008060408385031215611ba257600080fd5b8235915060208301356001600160401b03811115611bbf57600080fd5b8301601f81018513611bd057600080fd5b611bdf85823560208401611b32565b9150509250929050565b600080600060608486031215611bfe57600080fd5b611c07846119fe565b95602085013595506040909401359392505050565b60006001600160401b03821115611c3557611c35611af0565b5060051b60200190565b600082601f830112611c5057600080fd5b81356020611c5d82611c1c565b604051611c6a8282611b06565b83815260059390931b8501820192828101915086841115611c8a57600080fd5b8286015b84811015611ca55780358352918301918301611c8e565b509695505050505050565b600082601f830112611cc157600080fd5b611a7783833560208501611b32565b600080600080600060a08688031215611ce857600080fd5b611cf1866119fe565b9450611cff602087016119fe565b935060408601356001600160401b0380821115611d1b57600080fd5b611d2789838a01611c3f565b94506060880135915080821115611d3d57600080fd5b611d4989838a01611c3f565b93506080880135915080821115611d5f57600080fd5b50611d6c88828901611cb0565b9150509295509295909350565b60008060408385031215611d8c57600080fd5b82356001600160401b0380821115611da357600080fd5b818501915085601f830112611db757600080fd5b81356020611dc482611c1c565b604051611dd18282611b06565b83815260059390931b8501820192828101915089841115611df157600080fd5b948201945b83861015611e1657611e07866119fe565b82529482019490820190611df6565b96505086013592505080821115611e2c57600080fd5b50611bdf85828601611c3f565b600081518084526020808501945080840160005b83811015611e6957815187529582019590820190600101611e4d565b509495945050505050565b602081526000611a776020830184611e39565b60008060408385031215611e9a57600080fd5b82359150611eaa602084016119fe565b90509250929050565b80358015158114611a1557600080fd5b60008060408385031215611ed657600080fd5b611edf836119fe565b9150611eaa60208401611eb3565b60008083601f840112611eff57600080fd5b5081356001600160401b03811115611f1657600080fd5b6020830191508360208260051b8501011115611f3157600080fd5b9250929050565b600080600080600060608688031215611f5057600080fd5b8535945060208601356001600160401b0380821115611f6e57600080fd5b611f7a89838a01611eed565b90965094506040880135915080821115611f9357600080fd5b50611fa088828901611eed565b969995985093965092949392505050565b600060208284031215611fc357600080fd5b611a7782611eb3565b60008060408385031215611fdf57600080fd5b611fe8836119fe565b9150611eaa602084016119fe565b60008060006040848603121561200b57600080fd5b8335925060208401356001600160401b0381111561202857600080fd5b61203486828701611eed565b9497909650939450505050565b600080600080600060a0868803121561205957600080fd5b612062866119fe565b9450612070602087016119fe565b9350604086013592506060860135915060808601356001600160401b0381111561209957600080fd5b611d6c88828901611cb0565b6000602082840312156120b757600080fd5b611a77826119fe565b600181811c908216806120d457607f821691505b6020821081036120f457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561084557600081815260208120601f850160051c810160208610156121565750805b601f850160051c820191505b8181101561133b57828155600101612162565b81516001600160401b0381111561218e5761218e611af0565b6121a28161219c84546120c0565b8461212f565b602080601f8311600181146121d757600084156121bf5750858301515b600019600386901b1c1916600185901b17855561133b565b600085815260208120601f198616915b82811015612206578886015182559484019460019091019084016121e7565b50858210156122245787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016122725761227261224a565b5060010190565b8082018082111561054e5761054e61224a565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60408152600061232e6040830185611e39565b82810360208401526123408185611e39565b95945050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061238390830184611a7e565b979650505050505050565b6000602082840312156123a057600080fd5b8151611a7781611a44565b600060033d11156123c45760046000803e5060005160e01c5b90565b600060443d10156123d55790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561240457505050505090565b828501915081518181111561241c5750505050505090565b843d87010160208285010111156124365750505050505090565b61244560208286010187611b06565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a0604082018190526000906124c490830186611e39565b82810360608401526124d68186611e39565b905082810360808401526124ea8185611a7e565b9897505050505050505056fea264697066735822122062d8ca4120b4ba656bcf1914ea8e126439c81fc6c2d39542245e9193f89ed5ac64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000125472656173757279206f662050697a617a7a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000450505450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005656d707479000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Treasury of Pizazz
Arg [1] : _symbol (string): PPTP
Arg [2] : _baseURI (string): empty

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 5472656173757279206f662050697a617a7a0000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5050545000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 656d707479000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

29037:4012:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13658:230;;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;13658:230:0;;;;;;;;12681:310;;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;12681:310:0;1019:187:1;29621:18:0;;;:::i;:::-;;;;;;;:::i;32434:298::-;;;;;;:::i;:::-;;:::i;30540:242::-;;;;;;:::i;:::-;;:::i;:::-;;29357:47;;;;;;:::i;:::-;;;;;;;;;;;;;;32247:179;;;;;;:::i;:::-;;:::i;15596:442::-;;;;;;:::i;:::-;;:::i;29467:35::-;;;;;;;;;14054:524;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;29234:65::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;4015:103;;;:::i;29553:33::-;;;;;;30103:138;;;;;;:::i;:::-;;:::i;30249:283::-;;;;;;:::i;:::-;;:::i;3364:87::-;3437:6;;-1:-1:-1;;;;;3437:6:0;3364:87;;;-1:-1:-1;;;;;8799:32:1;;;8781:51;;8769:2;8754:18;3364:87:0;8635:203:1;29670:20:0;;;:::i;14651:155::-;;;;;;:::i;:::-;;:::i;31961:174::-;;;;;;:::i;:::-;;:::i;31411:442::-;;;;;;:::i;:::-;;:::i;29509:35::-;;;;;;;;;;;;32924:122;;;;;;:::i;:::-;32995:7;33022:16;;;:11;:16;;;;;;;32924:122;29983:112;;;;;;:::i;:::-;;:::i;29306:44::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;29306:44:0;;;29864:111;;;;;;:::i;:::-;;:::i;14878:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15001:27:0;;;14977:4;15001:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;14878:168;30790:613;;;;;;:::i;:::-;;:::i;15118:401::-;;;;;;:::i;:::-;;:::i;4273:201::-;;;;;;:::i;:::-;;:::i;29411:47::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;13658:230;13744:7;-1:-1:-1;;;;;13772:21:0;;13764:76;;;;-1:-1:-1;;;13764:76:0;;12210:2:1;13764:76:0;;;12192:21:1;12249:2;12229:18;;;12222:30;12288:34;12268:18;;;12261:62;-1:-1:-1;;;12339:18:1;;;12332:40;12389:19;;13764:76:0;;;;;;;;;-1:-1:-1;13858:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;13858:22:0;;;;;;;;;;13658:230;;;;;:::o;12681:310::-;12783:4;-1:-1:-1;;;;;;12820:41:0;;-1:-1:-1;;;12820:41:0;;:110;;-1:-1:-1;;;;;;;12878:52:0;;-1:-1:-1;;;12878:52:0;12820:110;:163;;;-1:-1:-1;;;;;;;;;;1622:40:0;;;12947:36;1513:157;29621:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32434:298::-;32598:20;;;;:12;:20;;;;;;32545:13;;32598:20;;32576:100;;;;-1:-1:-1;;;32576:100:0;;13006:2:1;32576:100:0;;;12988:21:1;13045:2;13025:18;;;13018:30;13084:32;13064:18;;;13057:60;13134:18;;32576:100:0;12804:354:1;32576:100:0;32707:17;;;;:9;:17;;;;;32687:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32434:298;;;:::o;30540:242::-;3437:6;;-1:-1:-1;;;;;3437:6:0;2303:10;3584:23;3576:68;;;;-1:-1:-1;;;3576:68:0;;;;;;;:::i;:::-;30643:21:::1;::::0;;;:12:::1;:21;::::0;;;;;::::1;;30635:58;;;::::0;-1:-1:-1;;;30635:58:0;;13726:2:1;30635:58:0::1;::::0;::::1;13708:21:1::0;13765:2;13745:18;;;13738:30;13804:26;13784:18;;;13777:54;13848:18;;30635:58:0::1;13524:348:1::0;30635:58:0::1;30706:18;::::0;;;:9:::1;:18;::::0;;;;:29:::1;30727:8:::0;30706:18;:29:::1;:::i;:::-;;30766:7;30752:22;30756:8;30752:22;;;;;;:::i;:::-;;;;;;;;30540:242:::0;;:::o;32247:179::-;32361:10;32345:27;;;;:15;:27;;;;;;;;32337:36;;;;;;32384:34;32390:6;32398:7;32407:6;32384:34;;;;;;;;;;;;:5;:34::i;:::-;32247:179;;;:::o;15596:442::-;-1:-1:-1;;;;;15829:20:0;;2303:10;15829:20;;:60;;-1:-1:-1;15853:36:0;15870:4;2303:10;14878:168;:::i;15853:36::-;15807:160;;;;-1:-1:-1;;;15807:160:0;;16283:2:1;15807:160:0;;;16265:21:1;16322:2;16302:18;;;16295:30;16361:34;16341:18;;;16334:62;-1:-1:-1;;;16412:18:1;;;16405:48;16470:19;;15807:160:0;16081:414:1;15807:160:0;15978:52;16001:4;16007:2;16011:3;16016:7;16025:4;15978:22;:52::i;:::-;15596:442;;;;;:::o;14054:524::-;14210:16;14271:3;:10;14252:8;:15;:29;14244:83;;;;-1:-1:-1;;;14244:83:0;;16702:2:1;14244:83:0;;;16684:21:1;16741:2;16721:18;;;16714:30;16780:34;16760:18;;;16753:62;-1:-1:-1;;;16831:18:1;;;16824:39;16880:19;;14244:83:0;16500:405:1;14244:83:0;14340:30;14387:8;:15;-1:-1:-1;;;;;14373:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14373:30:0;;14340:63;;14421:9;14416:122;14440:8;:15;14436:1;:19;14416:122;;;14496:30;14506:8;14515:1;14506:11;;;;;;;;:::i;:::-;;;;;;;14519:3;14523:1;14519:6;;;;;;;;:::i;:::-;;;;;;;14496:9;:30::i;:::-;14477:13;14491:1;14477:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;14457:3;;;:::i;:::-;;;14416:122;;;-1:-1:-1;14557:13:0;14054:524;-1:-1:-1;;;14054:524:0:o;4015:103::-;3437:6;;-1:-1:-1;;;;;3437:6:0;2303:10;3584:23;3576:68;;;;-1:-1:-1;;;3576:68:0;;;;;;;:::i;:::-;4080:30:::1;4107:1;4080:18;:30::i;:::-;4015:103::o:0;30103:138::-;3437:6;;-1:-1:-1;;;;;3437:6:0;2303:10;3584:23;3576:68;;;;-1:-1:-1;;;3576:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30195:26:0;;;::::1;;::::0;;;:15:::1;:26;::::0;;;;:37;;-1:-1:-1;;30195:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30103:138::o;30249:283::-;3437:6;;-1:-1:-1;;;;;3437:6:0;2303:10;3584:23;3576:68;;;;-1:-1:-1;;;3576:68:0;;;;;;;:::i;:::-;30353:21:::1;::::0;;;:12:::1;:21;::::0;;;;;::::1;;30352:22;30344:59;;;::::0;-1:-1:-1;;;30344:59:0;;17516:2:1;30344:59:0::1;::::0;::::1;17498:21:1::0;17555:2;17535:18;;;17528:30;17594:26;17574:18;;;17567:54;17638:18;;30344:59:0::1;17314:348:1::0;30344:59:0::1;30416:18;::::0;;;:9:::1;:18;::::0;;;;:29:::1;30437:8:::0;30416:18;:29:::1;:::i;:::-;-1:-1:-1::0;30457:21:0::1;::::0;;;:12:::1;:21;::::0;;;;;;:28;;-1:-1:-1;;30457:28:0::1;30481:4;30457:28;::::0;;30502:22;30470:7;;30502:22:::1;::::0;::::1;::::0;30506:8;;30502:22:::1;:::i;29670:20::-:0;;;;;;;:::i;14651:155::-;14746:52;2303:10;14779:8;14789;14746:18;:52::i;:::-;14651:155;;:::o;31961:174::-;32074:10;32058:27;;;;:15;:27;;;;;;;;32050:36;;;;;;32097:30;32103:6;32111:7;32120:6;32097:5;:30::i;31411:442::-;3437:6;;-1:-1:-1;;;;;3437:6:0;2303:10;3584:23;3576:68;;;;-1:-1:-1;;;3576:68:0;;;;;;;:::i;:::-;31546:33;;::::1;31538:42;;;::::0;::::1;;31591:19;31629:9:::0;31625:153:::1;31643:21:::0;;::::1;31625:153;;;31685:43;31691:10;;31702:1;31691:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;31706:7;31715:5;;31721:1;31715:8;;;;;;;:::i;:::-;;;;;;;31685:43;;;;;;;;;;;::::0;:5:::1;:43::i;:::-;31758:5;;31764:1;31758:8;;;;;;;:::i;:::-;;;;;;;31743:23;;;;;:::i;:::-;::::0;-1:-1:-1;31665:3:0;::::1;::::0;::::1;:::i;:::-;;;;31625:153;;;-1:-1:-1::0;31811:20:0::1;::::0;;;:11:::1;:20;::::0;;;;;:34:::1;::::0;31834:11;;31811:34:::1;:::i;:::-;31788:20;::::0;;;:11:::1;:20;::::0;;;;;:57;;;;-1:-1:-1;;;;;31411:442:0:o;29983:112::-;3437:6;;-1:-1:-1;;;;;3437:6:0;2303:10;3584:23;3576:68;;;;-1:-1:-1;;;3576:68:0;;;;;;;:::i;:::-;30055:23:::1;:31:::0;;;::::1;;;;-1:-1:-1::0;;30055:31:0;;::::1;::::0;;;::::1;::::0;;29983:112::o;29864:111::-;3437:6;;-1:-1:-1;;;;;3437:6:0;2303:10;3584:23;3576:68;;;;-1:-1:-1;;;3576:68:0;;;;;;;:::i;:::-;29940:18:::1;:26:::0;29864:111::o;30790:613::-;30901:23;;;;;;;30893:57;;;;-1:-1:-1;;;30893:57:0;;17999:2:1;30893:57:0;;;17981:21:1;18038:2;18018:18;;;18011:30;-1:-1:-1;;;18057:18:1;;;18050:51;18118:18;;30893:57:0;17797:345:1;30893:57:0;30986:42;;-1:-1:-1;;31003:10:0;18324:2:1;18320:15;18316:53;30986:42:0;;;18304:66:1;18386:12;;;18379:28;;;30961:12:0;;18423::1;;30986:42:0;;;;;;;;;;;;30976:53;;;;;;30961:68;;31050:57;31069:11;;31050:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;31082:18:0;;;-1:-1:-1;31102:4:0;;-1:-1:-1;31050:18:0;:57::i;:::-;31042:90;;;;-1:-1:-1;;;31042:90:0;;18648:2:1;31042:90:0;;;18630:21:1;18687:2;18667:18;;;18660:30;-1:-1:-1;;;18706:18:1;;;18699:50;18766:18;;31042:90:0;18446:344:1;31042:90:0;31152:27;;;;:13;:27;;;;;;;;31180:10;31152:39;;;;;;;;;;31151:40;31143:76;;;;-1:-1:-1;;;31143:76:0;;18997:2:1;31143:76:0;;;18979:21:1;19036:2;19016:18;;;19009:30;19075:25;19055:18;;;19048:53;19118:18;;31143:76:0;18795:347:1;31143:76:0;31232:27;;;;:13;:27;;;;;;;;31260:10;31232:39;;;;;;;;;:46;;-1:-1:-1;;31232:46:0;31274:4;31232:46;;;;;;31289:38;;;;;;;;;;;;;31260:10;31246:12;;31274:4;31289:5;:38::i;:::-;31366:25;;;;:11;:25;;;;;;:29;;31394:1;31366:29;:::i;:::-;31338:25;;;;:11;:25;;;;;;:57;;;;-1:-1:-1;;;30790:613:0:o;15118:401::-;-1:-1:-1;;;;;15326:20:0;;2303:10;15326:20;;:60;;-1:-1:-1;15350:36:0;15367:4;2303:10;14878:168;:::i;15350:36::-;15304:151;;;;-1:-1:-1;;;15304:151:0;;19349:2:1;15304:151:0;;;19331:21:1;19388:2;19368:18;;;19361:30;19427:34;19407:18;;;19400:62;-1:-1:-1;;;19478:18:1;;;19471:39;19527:19;;15304:151:0;19147:405:1;15304:151:0;15466:45;15484:4;15490:2;15494;15498:6;15506:4;15466:17;:45::i;4273:201::-;3437:6;;-1:-1:-1;;;;;3437:6:0;2303:10;3584:23;3576:68;;;;-1:-1:-1;;;3576:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4362:22:0;::::1;4354:73;;;::::0;-1:-1:-1;;;4354:73:0;;19759:2:1;4354:73:0::1;::::0;::::1;19741:21:1::0;19798:2;19778:18;;;19771:30;19837:34;19817:18;;;19810:62;-1:-1:-1;;;19888:18:1;;;19881:36;19934:19;;4354:73:0::1;19557:402:1::0;4354:73:0::1;4438:28;4457:8;4438:18;:28::i;:::-;4273:201:::0;:::o;20298:729::-;-1:-1:-1;;;;;20451:16:0;;20443:62;;;;-1:-1:-1;;;20443:62:0;;20166:2:1;20443:62:0;;;20148:21:1;20205:2;20185:18;;;20178:30;20244:34;20224:18;;;20217:62;-1:-1:-1;;;20295:18:1;;;20288:31;20336:19;;20443:62:0;19964:397:1;20443:62:0;2303:10;20518:16;20583:21;20601:2;20583:17;:21::i;:::-;20560:44;;20615:24;20642:25;20660:6;20642:17;:25::i;:::-;20615:52;;20759:9;:13;;;;;;;;;;;-1:-1:-1;;;;;20759:17:0;;;;;;;;;:27;;20780:6;;20759:9;:27;;20780:6;;20759:27;:::i;:::-;;;;-1:-1:-1;;20802:52:0;;;20540:25:1;;;20596:2;20581:18;;20574:34;;;-1:-1:-1;;;;;20802:52:0;;;;20835:1;;20802:52;;;;;;20513:18:1;20802:52:0;;;;;;;20945:74;20976:8;20994:1;20998:2;21002;21006:6;21014:4;20945:30;:74::i;:::-;20432:595;;;20298:729;;;;:::o;17834:1146::-;18061:7;:14;18047:3;:10;:28;18039:81;;;;-1:-1:-1;;;18039:81:0;;20821:2:1;18039:81:0;;;20803:21:1;20860:2;20840:18;;;20833:30;20899:34;20879:18;;;20872:62;-1:-1:-1;;;20950:18:1;;;20943:38;20998:19;;18039:81:0;20619:404:1;18039:81:0;-1:-1:-1;;;;;18139:16:0;;18131:66;;;;-1:-1:-1;;;18131:66:0;;;;;;;:::i;:::-;2303:10;18210:16;18327:421;18351:3;:10;18347:1;:14;18327:421;;;18383:10;18396:3;18400:1;18396:6;;;;;;;;:::i;:::-;;;;;;;18383:19;;18417:14;18434:7;18442:1;18434:10;;;;;;;;:::i;:::-;;;;;;;;;;;;18461:19;18483:13;;;;;;;;;;-1:-1:-1;;;;;18483:19:0;;;;;;;;;;;;18434:10;;-1:-1:-1;18525:21:0;;;;18517:76;;;;-1:-1:-1;;;18517:76:0;;;;;;;:::i;:::-;18637:9;:13;;;;;;;;;;;-1:-1:-1;;;;;18637:19:0;;;;;;;;;;18659:20;;;18637:42;;18709:17;;;;;;;:27;;18659:20;;18637:9;18709:27;;18659:20;;18709:27;:::i;:::-;;;;;;;;18368:380;;;18363:3;;;;:::i;:::-;;;18327:421;;;;18795:2;-1:-1:-1;;;;;18765:47:0;18789:4;-1:-1:-1;;;;;18765:47:0;18779:8;-1:-1:-1;;;;;18765:47:0;;18799:3;18804:7;18765:47;;;;;;;:::i;:::-;;;;;;;;18897:75;18933:8;18943:4;18949:2;18953:3;18958:7;18967:4;18897:35;:75::i;:::-;18028:952;17834:1146;;;;;:::o;4634:191::-;4727:6;;;-1:-1:-1;;;;;4744:17:0;;;-1:-1:-1;;;;;;4744:17:0;;;;;;;4777:40;;4727:6;;;4744:17;4727:6;;4777:40;;4708:16;;4777:40;4697:128;4634:191;:::o;24568:331::-;24723:8;-1:-1:-1;;;;;24714:17:0;:5;-1:-1:-1;;;;;24714:17:0;;24706:71;;;;-1:-1:-1;;;24706:71:0;;22517:2:1;24706:71:0;;;22499:21:1;22556:2;22536:18;;;22529:30;22595:34;22575:18;;;22568:62;-1:-1:-1;;;22646:18:1;;;22639:39;22695:19;;24706:71:0;22315:405:1;24706:71:0;-1:-1:-1;;;;;24788:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;24788:46:0;;;;;;;;;;24850:41;;1159::1;;;24850::0;;1132:18:1;24850:41:0;;;;;;;24568:331;;;:::o;22446:808::-;-1:-1:-1;;;;;22573:18:0;;22565:66;;;;-1:-1:-1;;;22565:66:0;;22927:2:1;22565:66:0;;;22909:21:1;22966:2;22946:18;;;22939:30;23005:34;22985:18;;;22978:62;-1:-1:-1;;;23056:18:1;;;23049:33;23099:19;;22565:66:0;22725:399:1;22565:66:0;2303:10;22644:16;22709:21;22727:2;22709:17;:21::i;:::-;22686:44;;22741:24;22768:25;22786:6;22768:17;:25::i;:::-;22806:66;;;;;;;;;-1:-1:-1;22806:66:0;;;;22907:13;;;;;;;;;-1:-1:-1;;;;;22907:19:0;;;;;;;;22741:52;;-1:-1:-1;22945:21:0;;;;22937:70;;;;-1:-1:-1;;;22937:70:0;;23331:2:1;22937:70:0;;;23313:21:1;23370:2;23350:18;;;23343:30;23409:34;23389:18;;;23382:62;-1:-1:-1;;;23460:18:1;;;23453:34;23504:19;;22937:70:0;23129:400:1;22937:70:0;23043:9;:13;;;;;;;;;;;-1:-1:-1;;;;;23043:19:0;;;;;;;;;;;;23065:20;;;23043:42;;23114:54;;20540:25:1;;;20581:18;;;20574:34;;;23043:19:0;;23114:54;;;;;;20513:18:1;23114:54:0;;;;;;;23181:65;;;;;;;;;23225:1;23181:65;;;17834:1146;44514:190;44639:4;44692;44663:25;44676:5;44683:4;44663:12;:25::i;:::-;:33;;44514:190;-1:-1:-1;;;;44514:190:0:o;16502:974::-;-1:-1:-1;;;;;16690:16:0;;16682:66;;;;-1:-1:-1;;;16682:66:0;;;;;;;:::i;:::-;2303:10;16761:16;16826:21;16844:2;16826:17;:21::i;:::-;16803:44;;16858:24;16885:25;16903:6;16885:17;:25::i;:::-;16858:52;;16996:19;17018:13;;;;;;;;;;;-1:-1:-1;;;;;17018:19:0;;;;;;;;;;17056:21;;;;17048:76;;;;-1:-1:-1;;;17048:76:0;;;;;;;:::i;:::-;17160:9;:13;;;;;;;;;;;-1:-1:-1;;;;;17160:19:0;;;;;;;;;;17182:20;;;17160:42;;17224:17;;;;;;;:27;;17182:20;;17160:9;17224:27;;17182:20;;17224:27;:::i;:::-;;;;-1:-1:-1;;17269:46:0;;;20540:25:1;;;20596:2;20581:18;;20574:34;;;-1:-1:-1;;;;;17269:46:0;;;;;;;;;;;;;;20513:18:1;17269:46:0;;;;;;;17400:68;17431:8;17441:4;17447:2;17451;17455:6;17463:4;17400:30;:68::i;:::-;16671:805;;;;16502:974;;;;;:::o;28832:198::-;28952:16;;;28966:1;28952:16;;;;;;;;;28898;;28927:22;;28952:16;;;;;;;;;;;;-1:-1:-1;28952:16:0;28927:41;;28990:7;28979:5;28985:1;28979:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;29017:5;28832:198;-1:-1:-1;;28832:198:0:o;27259:744::-;-1:-1:-1;;;;;27474:13:0;;34516:19;:23;27470:526;;27510:72;;-1:-1:-1;;;27510:72:0;;-1:-1:-1;;;;;27510:38:0;;;;;:72;;27549:8;;27559:4;;27565:2;;27569:6;;27577:4;;27510:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27510:72:0;;;;;;;;-1:-1:-1;;27510:72:0;;;;;;;;;;;;:::i;:::-;;;27506:479;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;27858:6;27851:14;;-1:-1:-1;;;27851:14:0;;;;;;;;:::i;27506:479::-;;;27907:62;;-1:-1:-1;;;27907:62:0;;25416:2:1;27907:62:0;;;25398:21:1;25455:2;25435:18;;;25428:30;25494:34;25474:18;;;25467:62;-1:-1:-1;;;25545:18:1;;;25538:50;25605:19;;27907:62:0;25214:416:1;27506:479:0;-1:-1:-1;;;;;;27632:55:0;;-1:-1:-1;;;27632:55:0;27628:154;;27712:50;;-1:-1:-1;;;27712:50:0;;;;;;;:::i;28011:813::-;-1:-1:-1;;;;;28251:13:0;;34516:19;:23;28247:570;;28287:79;;-1:-1:-1;;;28287:79:0;;-1:-1:-1;;;;;28287:43:0;;;;;:79;;28331:8;;28341:4;;28347:3;;28352:7;;28361:4;;28287:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28287:79:0;;;;;;;;-1:-1:-1;;28287:79:0;;;;;;;;;;;;:::i;:::-;;;28283:523;;;;:::i;:::-;-1:-1:-1;;;;;;28448:60:0;;-1:-1:-1;;;28448:60:0;28444:159;;28533:50;;-1:-1:-1;;;28533:50:0;;;;;;;:::i;45065:675::-;45148:7;45191:4;45148:7;45206:497;45230:5;:12;45226:1;:16;45206:497;;;45264:20;45287:5;45293:1;45287:8;;;;;;;;:::i;:::-;;;;;;;45264:31;;45330:12;45314;:28;45310:382;;45816:13;45866:15;;;45902:4;45895:15;;;45949:4;45933:21;;45442:57;;45310:382;;;45816:13;45866:15;;;45902:4;45895:15;;;45949:4;45933:21;;45619:57;;45310:382;-1:-1:-1;45244:3:0;;;;:::i;:::-;;;;45206:497;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;:::-;1003:5;769:245;-1:-1:-1;;;769:245:1:o;1211:423::-;1253:3;1291:5;1285:12;1318:6;1313:3;1306:19;1343:1;1353:162;1367:6;1364:1;1361:13;1353:162;;;1429:4;1485:13;;;1481:22;;1475:29;1457:11;;;1453:20;;1446:59;1382:12;1353:162;;;1357:3;1560:1;1553:4;1544:6;1539:3;1535:16;1531:27;1524:38;1623:4;1616:2;1612:7;1607:2;1599:6;1595:15;1591:29;1586:3;1582:39;1578:50;1571:57;;;1211:423;;;;:::o;1639:220::-;1788:2;1777:9;1770:21;1751:4;1808:45;1849:2;1838:9;1834:18;1826:6;1808:45;:::i;1864:180::-;1923:6;1976:2;1964:9;1955:7;1951:23;1947:32;1944:52;;;1992:1;1989;1982:12;1944:52;-1:-1:-1;2015:23:1;;1864:180;-1:-1:-1;1864:180:1:o;2049:127::-;2110:10;2105:3;2101:20;2098:1;2091:31;2141:4;2138:1;2131:15;2165:4;2162:1;2155:15;2181:249;2291:2;2272:13;;-1:-1:-1;;2268:27:1;2256:40;;-1:-1:-1;;;;;2311:34:1;;2347:22;;;2308:62;2305:88;;;2373:18;;:::i;:::-;2409:2;2402:22;-1:-1:-1;;2181:249:1:o;2435:469::-;2500:5;-1:-1:-1;;;;;2526:6:1;2523:30;2520:56;;;2556:18;;:::i;:::-;2605:2;2599:9;2617:69;2674:2;2653:15;;-1:-1:-1;;2649:29:1;2680:4;2645:40;2599:9;2617:69;:::i;:::-;2704:6;2695:15;;2734:6;2726;2719:22;2774:3;2765:6;2760:3;2756:16;2753:25;2750:45;;;2791:1;2788;2781:12;2750:45;2841:6;2836:3;2829:4;2821:6;2817:17;2804:44;2896:1;2889:4;2880:6;2872;2868:19;2864:30;2857:41;;2435:469;;;;;:::o;2909:519::-;2987:6;2995;3048:2;3036:9;3027:7;3023:23;3019:32;3016:52;;;3064:1;3061;3054:12;3016:52;3100:9;3087:23;3077:33;;3161:2;3150:9;3146:18;3133:32;-1:-1:-1;;;;;3180:6:1;3177:30;3174:50;;;3220:1;3217;3210:12;3174:50;3243:22;;3296:4;3288:13;;3284:27;-1:-1:-1;3274:55:1;;3325:1;3322;3315:12;3274:55;3348:74;3414:7;3409:2;3396:16;3391:2;3387;3383:11;3348:74;:::i;:::-;3338:84;;;2909:519;;;;;:::o;3433:322::-;3510:6;3518;3526;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3618:29;3637:9;3618:29;:::i;:::-;3608:39;3694:2;3679:18;;3666:32;;-1:-1:-1;3745:2:1;3730:18;;;3717:32;;3433:322;-1:-1:-1;;;3433:322:1:o;3760:183::-;3820:4;-1:-1:-1;;;;;3845:6:1;3842:30;3839:56;;;3875:18;;:::i;:::-;-1:-1:-1;3920:1:1;3916:14;3932:4;3912:25;;3760:183::o;3948:724::-;4002:5;4055:3;4048:4;4040:6;4036:17;4032:27;4022:55;;4073:1;4070;4063:12;4022:55;4109:6;4096:20;4135:4;4158:43;4198:2;4158:43;:::i;:::-;4230:2;4224:9;4242:31;4270:2;4262:6;4242:31;:::i;:::-;4308:18;;;4400:1;4396:10;;;;4384:23;;4380:32;;;4342:15;;;;-1:-1:-1;4424:15:1;;;4421:35;;;4452:1;4449;4442:12;4421:35;4488:2;4480:6;4476:15;4500:142;4516:6;4511:3;4508:15;4500:142;;;4582:17;;4570:30;;4620:12;;;;4533;;4500:142;;;-1:-1:-1;4660:6:1;3948:724;-1:-1:-1;;;;;;3948:724:1:o;4677:221::-;4719:5;4772:3;4765:4;4757:6;4753:17;4749:27;4739:55;;4790:1;4787;4780:12;4739:55;4812:80;4888:3;4879:6;4866:20;4859:4;4851:6;4847:17;4812:80;:::i;4903:943::-;5057:6;5065;5073;5081;5089;5142:3;5130:9;5121:7;5117:23;5113:33;5110:53;;;5159:1;5156;5149:12;5110:53;5182:29;5201:9;5182:29;:::i;:::-;5172:39;;5230:38;5264:2;5253:9;5249:18;5230:38;:::i;:::-;5220:48;;5319:2;5308:9;5304:18;5291:32;-1:-1:-1;;;;;5383:2:1;5375:6;5372:14;5369:34;;;5399:1;5396;5389:12;5369:34;5422:61;5475:7;5466:6;5455:9;5451:22;5422:61;:::i;:::-;5412:71;;5536:2;5525:9;5521:18;5508:32;5492:48;;5565:2;5555:8;5552:16;5549:36;;;5581:1;5578;5571:12;5549:36;5604:63;5659:7;5648:8;5637:9;5633:24;5604:63;:::i;:::-;5594:73;;5720:3;5709:9;5705:19;5692:33;5676:49;;5750:2;5740:8;5737:16;5734:36;;;5766:1;5763;5756:12;5734:36;;5789:51;5832:7;5821:8;5810:9;5806:24;5789:51;:::i;:::-;5779:61;;;4903:943;;;;;;;;:::o;5851:1208::-;5969:6;5977;6030:2;6018:9;6009:7;6005:23;6001:32;5998:52;;;6046:1;6043;6036:12;5998:52;6086:9;6073:23;-1:-1:-1;;;;;6156:2:1;6148:6;6145:14;6142:34;;;6172:1;6169;6162:12;6142:34;6210:6;6199:9;6195:22;6185:32;;6255:7;6248:4;6244:2;6240:13;6236:27;6226:55;;6277:1;6274;6267:12;6226:55;6313:2;6300:16;6335:4;6358:43;6398:2;6358:43;:::i;:::-;6430:2;6424:9;6442:31;6470:2;6462:6;6442:31;:::i;:::-;6508:18;;;6596:1;6592:10;;;;6584:19;;6580:28;;;6542:15;;;;-1:-1:-1;6620:19:1;;;6617:39;;;6652:1;6649;6642:12;6617:39;6676:11;;;;6696:148;6712:6;6707:3;6704:15;6696:148;;;6778:23;6797:3;6778:23;:::i;:::-;6766:36;;6729:12;;;;6822;;;;6696:148;;;6863:6;-1:-1:-1;;6907:18:1;;6894:32;;-1:-1:-1;;6938:16:1;;;6935:36;;;6967:1;6964;6957:12;6935:36;;6990:63;7045:7;7034:8;7023:9;7019:24;6990:63;:::i;7064:435::-;7117:3;7155:5;7149:12;7182:6;7177:3;7170:19;7208:4;7237:2;7232:3;7228:12;7221:19;;7274:2;7267:5;7263:14;7295:1;7305:169;7319:6;7316:1;7313:13;7305:169;;;7380:13;;7368:26;;7414:12;;;;7449:15;;;;7341:1;7334:9;7305:169;;;-1:-1:-1;7490:3:1;;7064:435;-1:-1:-1;;;;;7064:435:1:o;7504:261::-;7683:2;7672:9;7665:21;7646:4;7703:56;7755:2;7744:9;7740:18;7732:6;7703:56;:::i;7770:254::-;7838:6;7846;7899:2;7887:9;7878:7;7874:23;7870:32;7867:52;;;7915:1;7912;7905:12;7867:52;7951:9;7938:23;7928:33;;7980:38;8014:2;8003:9;7999:18;7980:38;:::i;:::-;7970:48;;7770:254;;;;;:::o;8211:160::-;8276:20;;8332:13;;8325:21;8315:32;;8305:60;;8361:1;8358;8351:12;8376:254;8441:6;8449;8502:2;8490:9;8481:7;8477:23;8473:32;8470:52;;;8518:1;8515;8508:12;8470:52;8541:29;8560:9;8541:29;:::i;:::-;8531:39;;8589:35;8620:2;8609:9;8605:18;8589:35;:::i;8843:367::-;8906:8;8916:6;8970:3;8963:4;8955:6;8951:17;8947:27;8937:55;;8988:1;8985;8978:12;8937:55;-1:-1:-1;9011:20:1;;-1:-1:-1;;;;;9043:30:1;;9040:50;;;9086:1;9083;9076:12;9040:50;9123:4;9115:6;9111:17;9099:29;;9183:3;9176:4;9166:6;9163:1;9159:14;9151:6;9147:27;9143:38;9140:47;9137:67;;;9200:1;9197;9190:12;9137:67;8843:367;;;;;:::o;9215:841::-;9346:6;9354;9362;9370;9378;9431:2;9419:9;9410:7;9406:23;9402:32;9399:52;;;9447:1;9444;9437:12;9399:52;9483:9;9470:23;9460:33;;9544:2;9533:9;9529:18;9516:32;-1:-1:-1;;;;;9608:2:1;9600:6;9597:14;9594:34;;;9624:1;9621;9614:12;9594:34;9663:70;9725:7;9716:6;9705:9;9701:22;9663:70;:::i;:::-;9752:8;;-1:-1:-1;9637:96:1;-1:-1:-1;9840:2:1;9825:18;;9812:32;;-1:-1:-1;9856:16:1;;;9853:36;;;9885:1;9882;9875:12;9853:36;;9924:72;9988:7;9977:8;9966:9;9962:24;9924:72;:::i;:::-;9215:841;;;;-1:-1:-1;9215:841:1;;-1:-1:-1;10015:8:1;;9898:98;9215:841;-1:-1:-1;;;9215:841:1:o;10061:180::-;10117:6;10170:2;10158:9;10149:7;10145:23;10141:32;10138:52;;;10186:1;10183;10176:12;10138:52;10209:26;10225:9;10209:26;:::i;10431:260::-;10499:6;10507;10560:2;10548:9;10539:7;10535:23;10531:32;10528:52;;;10576:1;10573;10566:12;10528:52;10599:29;10618:9;10599:29;:::i;:::-;10589:39;;10647:38;10681:2;10670:9;10666:18;10647:38;:::i;10696:505::-;10791:6;10799;10807;10860:2;10848:9;10839:7;10835:23;10831:32;10828:52;;;10876:1;10873;10866:12;10828:52;10912:9;10899:23;10889:33;;10973:2;10962:9;10958:18;10945:32;-1:-1:-1;;;;;10992:6:1;10989:30;10986:50;;;11032:1;11029;11022:12;10986:50;11071:70;11133:7;11124:6;11113:9;11109:22;11071:70;:::i;:::-;10696:505;;11160:8;;-1:-1:-1;11045:96:1;;-1:-1:-1;;;;10696:505:1:o;11206:606::-;11310:6;11318;11326;11334;11342;11395:3;11383:9;11374:7;11370:23;11366:33;11363:53;;;11412:1;11409;11402:12;11363:53;11435:29;11454:9;11435:29;:::i;:::-;11425:39;;11483:38;11517:2;11506:9;11502:18;11483:38;:::i;:::-;11473:48;;11568:2;11557:9;11553:18;11540:32;11530:42;;11619:2;11608:9;11604:18;11591:32;11581:42;;11674:3;11663:9;11659:19;11646:33;-1:-1:-1;;;;;11694:6:1;11691:30;11688:50;;;11734:1;11731;11724:12;11688:50;11757:49;11798:7;11789:6;11778:9;11774:22;11757:49;:::i;11817:186::-;11876:6;11929:2;11917:9;11908:7;11904:23;11900:32;11897:52;;;11945:1;11942;11935:12;11897:52;11968:29;11987:9;11968:29;:::i;12419:380::-;12498:1;12494:12;;;;12541;;;12562:61;;12616:4;12608:6;12604:17;12594:27;;12562:61;12669:2;12661:6;12658:14;12638:18;12635:38;12632:161;;12715:10;12710:3;12706:20;12703:1;12696:31;12750:4;12747:1;12740:15;12778:4;12775:1;12768:15;12632:161;;12419:380;;;:::o;13163:356::-;13365:2;13347:21;;;13384:18;;;13377:30;13443:34;13438:2;13423:18;;13416:62;13510:2;13495:18;;13163:356::o;14003:545::-;14105:2;14100:3;14097:11;14094:448;;;14141:1;14166:5;14162:2;14155:17;14211:4;14207:2;14197:19;14281:2;14269:10;14265:19;14262:1;14258:27;14252:4;14248:38;14317:4;14305:10;14302:20;14299:47;;;-1:-1:-1;14340:4:1;14299:47;14395:2;14390:3;14386:12;14383:1;14379:20;14373:4;14369:31;14359:41;;14450:82;14468:2;14461:5;14458:13;14450:82;;;14513:17;;;14494:1;14483:13;14450:82;;14724:1352;14850:3;14844:10;-1:-1:-1;;;;;14869:6:1;14866:30;14863:56;;;14899:18;;:::i;:::-;14928:97;15018:6;14978:38;15010:4;15004:11;14978:38;:::i;:::-;14972:4;14928:97;:::i;:::-;15080:4;;15144:2;15133:14;;15161:1;15156:663;;;;15863:1;15880:6;15877:89;;;-1:-1:-1;15932:19:1;;;15926:26;15877:89;-1:-1:-1;;14681:1:1;14677:11;;;14673:24;14669:29;14659:40;14705:1;14701:11;;;14656:57;15979:81;;15126:944;;15156:663;13950:1;13943:14;;;13987:4;13974:18;;-1:-1:-1;;15192:20:1;;;15310:236;15324:7;15321:1;15318:14;15310:236;;;15413:19;;;15407:26;15392:42;;15505:27;;;;15473:1;15461:14;;;;15340:19;;15310:236;;;15314:3;15574:6;15565:7;15562:19;15559:201;;;15635:19;;;15629:26;-1:-1:-1;;15718:1:1;15714:14;;;15730:3;15710:24;15706:37;15702:42;15687:58;15672:74;;15559:201;-1:-1:-1;;;;;15806:1:1;15790:14;;;15786:22;15773:36;;-1:-1:-1;14724:1352:1:o;16910:127::-;16971:10;16966:3;16962:20;16959:1;16952:31;17002:4;16999:1;16992:15;17026:4;17023:1;17016:15;17042:127;17103:10;17098:3;17094:20;17091:1;17084:31;17134:4;17131:1;17124:15;17158:4;17155:1;17148:15;17174:135;17213:3;17234:17;;;17231:43;;17254:18;;:::i;:::-;-1:-1:-1;17301:1:1;17290:13;;17174:135::o;17667:125::-;17732:9;;;17753:10;;;17750:36;;;17766:18;;:::i;21028:401::-;21230:2;21212:21;;;21269:2;21249:18;;;21242:30;21308:34;21303:2;21288:18;;21281:62;-1:-1:-1;;;21374:2:1;21359:18;;21352:35;21419:3;21404:19;;21028:401::o;21434:406::-;21636:2;21618:21;;;21675:2;21655:18;;;21648:30;21714:34;21709:2;21694:18;;21687:62;-1:-1:-1;;;21780:2:1;21765:18;;21758:40;21830:3;21815:19;;21434:406::o;21845:465::-;22102:2;22091:9;22084:21;22065:4;22128:56;22180:2;22169:9;22165:18;22157:6;22128:56;:::i;:::-;22232:9;22224:6;22220:22;22215:2;22204:9;22200:18;22193:50;22260:44;22297:6;22289;22260:44;:::i;:::-;22252:52;21845:465;-1:-1:-1;;;;;21845:465:1:o;23534:561::-;-1:-1:-1;;;;;23831:15:1;;;23813:34;;23883:15;;23878:2;23863:18;;23856:43;23930:2;23915:18;;23908:34;;;23973:2;23958:18;;23951:34;;;23793:3;24016;24001:19;;23994:32;;;23756:4;;24043:46;;24069:19;;24061:6;24043:46;:::i;:::-;24035:54;23534:561;-1:-1:-1;;;;;;;23534:561:1:o;24100:249::-;24169:6;24222:2;24210:9;24201:7;24197:23;24193:32;24190:52;;;24238:1;24235;24228:12;24190:52;24270:9;24264:16;24289:30;24313:5;24289:30;:::i;24354:179::-;24389:3;24431:1;24413:16;24410:23;24407:120;;;24477:1;24474;24471;24456:23;-1:-1:-1;24514:1:1;24508:8;24503:3;24499:18;24407:120;24354:179;:::o;24538:671::-;24577:3;24619:4;24601:16;24598:26;24595:39;;;24538:671;:::o;24595:39::-;24661:2;24655:9;-1:-1:-1;;24726:16:1;24722:25;;24719:1;24655:9;24698:50;24777:4;24771:11;24801:16;-1:-1:-1;;;;;24907:2:1;24900:4;24892:6;24888:17;24885:25;24880:2;24872:6;24869:14;24866:45;24863:58;;;24914:5;;;;;24538:671;:::o;24863:58::-;24951:6;24945:4;24941:17;24930:28;;24987:3;24981:10;25014:2;25006:6;25003:14;25000:27;;;25020:5;;;;;;24538:671;:::o;25000:27::-;25104:2;25085:16;25079:4;25075:27;25071:36;25064:4;25055:6;25050:3;25046:16;25042:27;25039:69;25036:82;;;25111:5;;;;;;24538:671;:::o;25036:82::-;25127:57;25178:4;25169:6;25161;25157:19;25153:30;25147:4;25127:57;:::i;:::-;-1:-1:-1;25200:3:1;;24538:671;-1:-1:-1;;;;;24538:671:1:o;25635:404::-;25837:2;25819:21;;;25876:2;25856:18;;;25849:30;25915:34;25910:2;25895:18;;25888:62;-1:-1:-1;;;25981:2:1;25966:18;;25959:38;26029:3;26014:19;;25635:404::o;26044:827::-;-1:-1:-1;;;;;26441:15:1;;;26423:34;;26493:15;;26488:2;26473:18;;26466:43;26403:3;26540:2;26525:18;;26518:31;;;26366:4;;26572:57;;26609:19;;26601:6;26572:57;:::i;:::-;26677:9;26669:6;26665:22;26660:2;26649:9;26645:18;26638:50;26711:44;26748:6;26740;26711:44;:::i;:::-;26697:58;;26804:9;26796:6;26792:22;26786:3;26775:9;26771:19;26764:51;26832:33;26858:6;26850;26832:33;:::i;:::-;26824:41;26044:827;-1:-1:-1;;;;;;;;26044:827:1:o

Swarm Source

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