ETH Price: $3,381.47 (-0.77%)
Gas: 4 Gwei

Token

SummerBears (SB)
 

Overview

Max Total Supply

10,000 SB

Holders

4,591

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
il7ou6i.eth
Balance
1 SB
0x6088a0a48eb9dda47de710450f0c3809c8444c64
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Summer Bears are a collection of 10,000 NFTs that were airdropped to the Winter Bears community.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SummerBears

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-26
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @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, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

// Summer Bears
// A gas paid airdrop brought to you by Winter Bears team

pragma solidity ^0.8.10;

contract SummerBears is ERC721, Ownable {
    constructor() ERC721("SummerBears", "SB") {}

    uint256 public constant MAX_BEARS = 10000;
    string private baseURI;

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function airDropBears(address[] memory owners, uint16[] memory tokenIds) public onlyOwner {
        for(uint16 i = 0; i < tokenIds.length; i++) {
          if (tokenIds[i] < MAX_BEARS) { // implementing token max cap
            _safeMint(owners[i], tokenIds[i]);
          }
        }
    }

    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function totalSupply() public pure returns (uint256) {
      return MAX_BEARS;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BEARS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"owners","type":"address[]"},{"internalType":"uint16[]","name":"tokenIds","type":"uint16[]"}],"name":"airDropBears","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600b81526a53756d6d6572426561727360a81b60208083019182528351808501909452600284526129a160f11b9084015281519192916200005f91600091620000ee565b50805162000075906001906020840190620000ee565b505050620000926200008c6200009860201b60201c565b6200009c565b620001d1565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000fc9062000194565b90600052602060002090601f0160209004810192826200012057600085556200016b565b82601f106200013b57805160ff19168380011785556200016b565b828001600101855582156200016b579182015b828111156200016b5782518255916020019190600101906200014e565b50620001799291506200017d565b5090565b5b808211156200017957600081556001016200017e565b600181811c90821680620001a957607f821691505b60208210811415620001cb57634e487b7160e01b600052602260045260246000fd5b50919050565b6123ef80620001e16000396000f3fe608060405234801561001057600080fd5b50600436106101775760003560e01c8063715018a6116100d8578063a22cb4651161008c578063da649ed711610066578063da649ed7146102f9578063e985e9c514610302578063f2fde38b1461034b57600080fd5b8063a22cb465146102c0578063b88d4fde146102d3578063c87b56dd146102e657600080fd5b806395d89b41116100bd57806395d89b41146102925780639cb33c161461029a578063a0bcfc7f146102ad57600080fd5b8063715018a61461026c5780638da5cb5b1461027457600080fd5b806323b872dd1161012f57806342842e0e1161011457806342842e0e146102335780636352211e1461024657806370a082311461025957600080fd5b806323b872dd146102185780633ccfd60b1461022b57600080fd5b8063081812fc11610160578063081812fc146101b9578063095ea7b3146101f157806318160ddd1461020657600080fd5b806301ffc9a71461017c57806306fdde03146101a4575b600080fd5b61018f61018a366004611ca0565b61035e565b60405190151581526020015b60405180910390f35b6101ac610443565b60405161019b9190611d33565b6101cc6101c7366004611d46565b6104d5565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161019b565b6102046101ff366004611d88565b6105b4565b005b6127105b60405190815260200161019b565b610204610226366004611db2565b610741565b6102046107e2565b610204610241366004611db2565b610896565b6101cc610254366004611d46565b6108b1565b61020a610267366004611dee565b610963565b610204610a31565b60065473ffffffffffffffffffffffffffffffffffffffff166101cc565b6101ac610abe565b6102046102a8366004611f27565b610acd565b6102046102bb36600461205d565b610be3565b6102046102ce3660046120a6565b610c77565b6102046102e13660046120e2565b610c82565b6101ac6102f4366004611d46565b610d2a565b61020a61271081565b61018f61031036600461215e565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b610204610359366004611dee565b610e3a565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806103f157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061043d57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606000805461045290612191565b80601f016020809104026020016040519081016040528092919081815260200182805461047e90612191565b80156104cb5780601f106104a0576101008083540402835291602001916104cb565b820191906000526020600020905b8154815290600101906020018083116104ae57829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1661058b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006105bf826108b1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561067d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610582565b3373ffffffffffffffffffffffffffffffffffffffff821614806106a657506106a68133610310565b610732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610582565b61073c8383610f6a565b505050565b61074b338261100a565b6107d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610582565b61073c83838361117a565b60065473ffffffffffffffffffffffffffffffffffffffff163314610863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610582565b6040514790339082156108fc029083906000818181858888f19350505050158015610892573d6000803e3d6000fd5b5050565b61073c83838360405180602001604052806000815250610c82565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff168061043d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610582565b600073ffffffffffffffffffffffffffffffffffffffff8216610a08576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610582565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b60065473ffffffffffffffffffffffffffffffffffffffff163314610ab2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610582565b610abc60006113e1565b565b60606001805461045290612191565b60065473ffffffffffffffffffffffffffffffffffffffff163314610b4e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610582565b60005b81518161ffff16101561073c57612710828261ffff1681518110610b7757610b776121e5565b602002602001015161ffff161015610bd157610bd1838261ffff1681518110610ba257610ba26121e5565b6020026020010151838361ffff1681518110610bc057610bc06121e5565b602002602001015161ffff16611458565b80610bdb81612243565b915050610b51565b60065473ffffffffffffffffffffffffffffffffffffffff163314610c64576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610582565b8051610892906007906020840190611bd9565b610892338383611472565b610c8c338361100a565b610d18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610582565b610d24848484846115a0565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16610dde576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610582565b6000610de8611643565b90506000815111610e085760405180602001604052806000815250610e33565b80610e1284611652565b604051602001610e23929190612265565b6040516020818303038152906040525b9392505050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610ebb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610582565b73ffffffffffffffffffffffffffffffffffffffff8116610f5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610582565b610f67816113e1565b50565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190610fc4826108b1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff166110bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610582565b60006110c6836108b1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061113557508373ffffffffffffffffffffffffffffffffffffffff1661111d846104d5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611172575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661119a826108b1565b73ffffffffffffffffffffffffffffffffffffffff161461123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610582565b73ffffffffffffffffffffffffffffffffffffffff82166112df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610582565b6112ea600082610f6a565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290611320908490612294565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061135b9084906122ab565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610892828260405180602001604052806000815250611784565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611508576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610582565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115ab84848461117a565b6115b784848484611827565b610d24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610582565b60606007805461045290612191565b60608161169257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156116bc57806116a6816122c3565b91506116b59050600a8361232b565b9150611696565b60008167ffffffffffffffff8111156116d7576116d7611e09565b6040519080825280601f01601f191660200182016040528015611701576020820181803683370190505b5090505b841561117257611716600183612294565b9150611723600a8661233f565b61172e9060306122ab565b60f81b818381518110611743576117436121e5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061177d600a8661232b565b9450611705565b61178e8383611a17565b61179b6000848484611827565b61073c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610582565b600073ffffffffffffffffffffffffffffffffffffffff84163b15611a0c576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061189e903390899088908890600401612353565b6020604051808303816000875af19250505080156118f7575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526118f49181019061239c565b60015b6119c1573d808015611925576040519150601f19603f3d011682016040523d82523d6000602084013e61192a565b606091505b5080516119b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610582565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611172565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8216611a94576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610582565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615611b20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610582565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611b569084906122ab565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611be590612191565b90600052602060002090601f016020900481019282611c075760008555611c4d565b82601f10611c2057805160ff1916838001178555611c4d565b82800160010185558215611c4d579182015b82811115611c4d578251825591602001919060010190611c32565b50611c59929150611c5d565b5090565b5b80821115611c595760008155600101611c5e565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610f6757600080fd5b600060208284031215611cb257600080fd5b8135610e3381611c72565b60005b83811015611cd8578181015183820152602001611cc0565b83811115610d245750506000910152565b60008151808452611d01816020860160208601611cbd565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000610e336020830184611ce9565b600060208284031215611d5857600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611d8357600080fd5b919050565b60008060408385031215611d9b57600080fd5b611da483611d5f565b946020939093013593505050565b600080600060608486031215611dc757600080fd5b611dd084611d5f565b9250611dde60208501611d5f565b9150604084013590509250925092565b600060208284031215611e0057600080fd5b610e3382611d5f565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715611e7f57611e7f611e09565b604052919050565b600067ffffffffffffffff821115611ea157611ea1611e09565b5060051b60200190565b600082601f830112611ebc57600080fd5b81356020611ed1611ecc83611e87565b611e38565b82815260059290921b84018101918181019086841115611ef057600080fd5b8286015b84811015611f1c57803561ffff81168114611f0f5760008081fd5b8352918301918301611ef4565b509695505050505050565b60008060408385031215611f3a57600080fd5b823567ffffffffffffffff80821115611f5257600080fd5b818501915085601f830112611f6657600080fd5b81356020611f76611ecc83611e87565b82815260059290921b84018101918181019089841115611f9557600080fd5b948201945b83861015611fba57611fab86611d5f565b82529482019490820190611f9a565b96505086013592505080821115611fd057600080fd5b50611fdd85828601611eab565b9150509250929050565b600067ffffffffffffffff83111561200157612001611e09565b61203260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f86011601611e38565b905082815283838301111561204657600080fd5b828260208301376000602084830101529392505050565b60006020828403121561206f57600080fd5b813567ffffffffffffffff81111561208657600080fd5b8201601f8101841361209757600080fd5b61117284823560208401611fe7565b600080604083850312156120b957600080fd5b6120c283611d5f565b9150602083013580151581146120d757600080fd5b809150509250929050565b600080600080608085870312156120f857600080fd5b61210185611d5f565b935061210f60208601611d5f565b925060408501359150606085013567ffffffffffffffff81111561213257600080fd5b8501601f8101871361214357600080fd5b61215287823560208401611fe7565b91505092959194509250565b6000806040838503121561217157600080fd5b61217a83611d5f565b915061218860208401611d5f565b90509250929050565b600181811c908216806121a557607f821691505b602082108114156121df577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061ffff8083168181141561225b5761225b612214565b6001019392505050565b60008351612277818460208801611cbd565b83519083019061228b818360208801611cbd565b01949350505050565b6000828210156122a6576122a6612214565b500390565b600082198211156122be576122be612214565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156122f5576122f5612214565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261233a5761233a6122fc565b500490565b60008261234e5761234e6122fc565b500690565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526123926080830184611ce9565b9695505050505050565b6000602082840312156123ae57600080fd5b8151610e3381611c7256fea2646970667358221220d2ecabd4b9fa5cd2890cd7ba4f60ecfe5372e4bc3f0847236d5cf31b6031d6b164736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101775760003560e01c8063715018a6116100d8578063a22cb4651161008c578063da649ed711610066578063da649ed7146102f9578063e985e9c514610302578063f2fde38b1461034b57600080fd5b8063a22cb465146102c0578063b88d4fde146102d3578063c87b56dd146102e657600080fd5b806395d89b41116100bd57806395d89b41146102925780639cb33c161461029a578063a0bcfc7f146102ad57600080fd5b8063715018a61461026c5780638da5cb5b1461027457600080fd5b806323b872dd1161012f57806342842e0e1161011457806342842e0e146102335780636352211e1461024657806370a082311461025957600080fd5b806323b872dd146102185780633ccfd60b1461022b57600080fd5b8063081812fc11610160578063081812fc146101b9578063095ea7b3146101f157806318160ddd1461020657600080fd5b806301ffc9a71461017c57806306fdde03146101a4575b600080fd5b61018f61018a366004611ca0565b61035e565b60405190151581526020015b60405180910390f35b6101ac610443565b60405161019b9190611d33565b6101cc6101c7366004611d46565b6104d5565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161019b565b6102046101ff366004611d88565b6105b4565b005b6127105b60405190815260200161019b565b610204610226366004611db2565b610741565b6102046107e2565b610204610241366004611db2565b610896565b6101cc610254366004611d46565b6108b1565b61020a610267366004611dee565b610963565b610204610a31565b60065473ffffffffffffffffffffffffffffffffffffffff166101cc565b6101ac610abe565b6102046102a8366004611f27565b610acd565b6102046102bb36600461205d565b610be3565b6102046102ce3660046120a6565b610c77565b6102046102e13660046120e2565b610c82565b6101ac6102f4366004611d46565b610d2a565b61020a61271081565b61018f61031036600461215e565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b610204610359366004611dee565b610e3a565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806103f157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061043d57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606000805461045290612191565b80601f016020809104026020016040519081016040528092919081815260200182805461047e90612191565b80156104cb5780601f106104a0576101008083540402835291602001916104cb565b820191906000526020600020905b8154815290600101906020018083116104ae57829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1661058b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006105bf826108b1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561067d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610582565b3373ffffffffffffffffffffffffffffffffffffffff821614806106a657506106a68133610310565b610732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610582565b61073c8383610f6a565b505050565b61074b338261100a565b6107d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610582565b61073c83838361117a565b60065473ffffffffffffffffffffffffffffffffffffffff163314610863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610582565b6040514790339082156108fc029083906000818181858888f19350505050158015610892573d6000803e3d6000fd5b5050565b61073c83838360405180602001604052806000815250610c82565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff168061043d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610582565b600073ffffffffffffffffffffffffffffffffffffffff8216610a08576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610582565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b60065473ffffffffffffffffffffffffffffffffffffffff163314610ab2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610582565b610abc60006113e1565b565b60606001805461045290612191565b60065473ffffffffffffffffffffffffffffffffffffffff163314610b4e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610582565b60005b81518161ffff16101561073c57612710828261ffff1681518110610b7757610b776121e5565b602002602001015161ffff161015610bd157610bd1838261ffff1681518110610ba257610ba26121e5565b6020026020010151838361ffff1681518110610bc057610bc06121e5565b602002602001015161ffff16611458565b80610bdb81612243565b915050610b51565b60065473ffffffffffffffffffffffffffffffffffffffff163314610c64576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610582565b8051610892906007906020840190611bd9565b610892338383611472565b610c8c338361100a565b610d18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610582565b610d24848484846115a0565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16610dde576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610582565b6000610de8611643565b90506000815111610e085760405180602001604052806000815250610e33565b80610e1284611652565b604051602001610e23929190612265565b6040516020818303038152906040525b9392505050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610ebb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610582565b73ffffffffffffffffffffffffffffffffffffffff8116610f5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610582565b610f67816113e1565b50565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190610fc4826108b1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff166110bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610582565b60006110c6836108b1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061113557508373ffffffffffffffffffffffffffffffffffffffff1661111d846104d5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611172575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661119a826108b1565b73ffffffffffffffffffffffffffffffffffffffff161461123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610582565b73ffffffffffffffffffffffffffffffffffffffff82166112df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610582565b6112ea600082610f6a565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290611320908490612294565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061135b9084906122ab565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610892828260405180602001604052806000815250611784565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611508576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610582565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115ab84848461117a565b6115b784848484611827565b610d24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610582565b60606007805461045290612191565b60608161169257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156116bc57806116a6816122c3565b91506116b59050600a8361232b565b9150611696565b60008167ffffffffffffffff8111156116d7576116d7611e09565b6040519080825280601f01601f191660200182016040528015611701576020820181803683370190505b5090505b841561117257611716600183612294565b9150611723600a8661233f565b61172e9060306122ab565b60f81b818381518110611743576117436121e5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061177d600a8661232b565b9450611705565b61178e8383611a17565b61179b6000848484611827565b61073c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610582565b600073ffffffffffffffffffffffffffffffffffffffff84163b15611a0c576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061189e903390899088908890600401612353565b6020604051808303816000875af19250505080156118f7575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526118f49181019061239c565b60015b6119c1573d808015611925576040519150601f19603f3d011682016040523d82523d6000602084013e61192a565b606091505b5080516119b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610582565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611172565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8216611a94576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610582565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615611b20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610582565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611b569084906122ab565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611be590612191565b90600052602060002090601f016020900481019282611c075760008555611c4d565b82601f10611c2057805160ff1916838001178555611c4d565b82800160010185558215611c4d579182015b82811115611c4d578251825591602001919060010190611c32565b50611c59929150611c5d565b5090565b5b80821115611c595760008155600101611c5e565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610f6757600080fd5b600060208284031215611cb257600080fd5b8135610e3381611c72565b60005b83811015611cd8578181015183820152602001611cc0565b83811115610d245750506000910152565b60008151808452611d01816020860160208601611cbd565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000610e336020830184611ce9565b600060208284031215611d5857600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611d8357600080fd5b919050565b60008060408385031215611d9b57600080fd5b611da483611d5f565b946020939093013593505050565b600080600060608486031215611dc757600080fd5b611dd084611d5f565b9250611dde60208501611d5f565b9150604084013590509250925092565b600060208284031215611e0057600080fd5b610e3382611d5f565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715611e7f57611e7f611e09565b604052919050565b600067ffffffffffffffff821115611ea157611ea1611e09565b5060051b60200190565b600082601f830112611ebc57600080fd5b81356020611ed1611ecc83611e87565b611e38565b82815260059290921b84018101918181019086841115611ef057600080fd5b8286015b84811015611f1c57803561ffff81168114611f0f5760008081fd5b8352918301918301611ef4565b509695505050505050565b60008060408385031215611f3a57600080fd5b823567ffffffffffffffff80821115611f5257600080fd5b818501915085601f830112611f6657600080fd5b81356020611f76611ecc83611e87565b82815260059290921b84018101918181019089841115611f9557600080fd5b948201945b83861015611fba57611fab86611d5f565b82529482019490820190611f9a565b96505086013592505080821115611fd057600080fd5b50611fdd85828601611eab565b9150509250929050565b600067ffffffffffffffff83111561200157612001611e09565b61203260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f86011601611e38565b905082815283838301111561204657600080fd5b828260208301376000602084830101529392505050565b60006020828403121561206f57600080fd5b813567ffffffffffffffff81111561208657600080fd5b8201601f8101841361209757600080fd5b61117284823560208401611fe7565b600080604083850312156120b957600080fd5b6120c283611d5f565b9150602083013580151581146120d757600080fd5b809150509250929050565b600080600080608085870312156120f857600080fd5b61210185611d5f565b935061210f60208601611d5f565b925060408501359150606085013567ffffffffffffffff81111561213257600080fd5b8501601f8101871361214357600080fd5b61215287823560208401611fe7565b91505092959194509250565b6000806040838503121561217157600080fd5b61217a83611d5f565b915061218860208401611d5f565b90509250929050565b600181811c908216806121a557607f821691505b602082108114156121df577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061ffff8083168181141561225b5761225b612214565b6001019392505050565b60008351612277818460208801611cbd565b83519083019061228b818360208801611cbd565b01949350505050565b6000828210156122a6576122a6612214565b500390565b600082198211156122be576122be612214565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156122f5576122f5612214565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261233a5761233a6122fc565b500490565b60008261234e5761234e6122fc565b500690565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526123926080830184611ce9565b9695505050505050565b6000602082840312156123ae57600080fd5b8151610e3381611c7256fea2646970667358221220d2ecabd4b9fa5cd2890cd7ba4f60ecfe5372e4bc3f0847236d5cf31b6031d6b164736f6c634300080a0033

Deployed Bytecode Sourcemap

35675:936:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20656:305;;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;20656:305:0;;;;;;;;21601:100;;;:::i;:::-;;;;;;;:::i;23160:221::-;;;;;;:::i;:::-;;:::i;:::-;;;1809:42:1;1797:55;;;1779:74;;1767:2;1752:18;23160:221:0;1633:226:1;22683:411:0;;;;;;:::i;:::-;;:::i;:::-;;36522:86;35810:5;36522:86;;;2470:25:1;;;2458:2;2443:18;36522:86:0;2324:177:1;23910:339:0;;;;;;:::i;:::-;;:::i;35853:140::-;;;:::i;24320:185::-;;;;;;:::i;:::-;;:::i;21295:239::-;;;;;;:::i;:::-;;:::i;21025:208::-;;;;;;:::i;:::-;;:::i;34752:103::-;;;:::i;34101:87::-;34174:6;;;;34101:87;;21770:104;;;:::i;36001:297::-;;;;;;:::i;:::-;;:::i;36306:92::-;;;;;;:::i;:::-;;:::i;23453:155::-;;;;;;:::i;:::-;;:::i;24576:328::-;;;;;;:::i;:::-;;:::i;21945:334::-;;;;;;:::i;:::-;;:::i;35774:41::-;;35810:5;35774:41;;23679:164;;;;;;:::i;:::-;23800:25;;;;23776:4;23800:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23679:164;35010:201;;;;;;:::i;:::-;;:::i;20656:305::-;20758:4;20795:40;;;20810:25;20795:40;;:105;;-1:-1:-1;20852:48:0;;;20867:33;20852:48;20795:105;:158;;;-1:-1:-1;2639:25:0;2624:40;;;;20917:36;20775:178;20656:305;-1:-1:-1;;20656:305:0:o;21601:100::-;21655:13;21688:5;21681:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21601:100;:::o;23160:221::-;23236:7;26503:16;;;:7;:16;;;;;;:30;:16;23256:73;;;;;;;8592:2:1;23256:73:0;;;8574:21:1;8631:2;8611:18;;;8604:30;8670:34;8650:18;;;8643:62;8741:14;8721:18;;;8714:42;8773:19;;23256:73:0;;;;;;;;;-1:-1:-1;23349:24:0;;;;:15;:24;;;;;;;;;23160:221::o;22683:411::-;22764:13;22780:23;22795:7;22780:14;:23::i;:::-;22764:39;;22828:5;22822:11;;:2;:11;;;;22814:57;;;;;;;9005:2:1;22814:57:0;;;8987:21:1;9044:2;9024:18;;;9017:30;9083:34;9063:18;;;9056:62;9154:3;9134:18;;;9127:31;9175:19;;22814:57:0;8803:397:1;22814:57:0;736:10;22906:21;;;;;:62;;-1:-1:-1;22931:37:0;22948:5;736:10;23679:164;:::i;22931:37::-;22884:168;;;;;;;9407:2:1;22884:168:0;;;9389:21:1;9446:2;9426:18;;;9419:30;9485:34;9465:18;;;9458:62;9556:26;9536:18;;;9529:54;9600:19;;22884:168:0;9205:420:1;22884:168:0;23065:21;23074:2;23078:7;23065:8;:21::i;:::-;22753:341;22683:411;;:::o;23910:339::-;24105:41;736:10;24138:7;24105:18;:41::i;:::-;24097:103;;;;;;;9832:2:1;24097:103:0;;;9814:21:1;9871:2;9851:18;;;9844:30;9910:34;9890:18;;;9883:62;9981:19;9961:18;;;9954:47;10018:19;;24097:103:0;9630:413:1;24097:103:0;24213:28;24223:4;24229:2;24233:7;24213:9;:28::i;35853:140::-;34174:6;;34321:23;34174:6;736:10;34321:23;34313:68;;;;;;;10250:2:1;34313:68:0;;;10232:21:1;;;10269:18;;;10262:30;10328:34;10308:18;;;10301:62;10380:18;;34313:68:0;10048:356:1;34313:68:0;35948:37:::1;::::0;35916:21:::1;::::0;35956:10:::1;::::0;35948:37;::::1;;;::::0;35916:21;;35901:12:::1;35948:37:::0;35901:12;35948:37;35916:21;35956:10;35948:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;35890:103;35853:140::o:0;24320:185::-;24458:39;24475:4;24481:2;24485:7;24458:39;;;;;;;;;;;;:16;:39::i;21295:239::-;21367:7;21403:16;;;:7;:16;;;;;;;;21438:19;21430:73;;;;;;;10611:2:1;21430:73:0;;;10593:21:1;10650:2;10630:18;;;10623:30;10689:34;10669:18;;;10662:62;10760:11;10740:18;;;10733:39;10789:19;;21430:73:0;10409:405:1;21025:208:0;21097:7;21125:19;;;21117:74;;;;;;;11021:2:1;21117:74:0;;;11003:21:1;11060:2;11040:18;;;11033:30;11099:34;11079:18;;;11072:62;11170:12;11150:18;;;11143:40;11200:19;;21117:74:0;10819:406:1;21117:74:0;-1:-1:-1;21209:16:0;;;;;;:9;:16;;;;;;;21025:208::o;34752:103::-;34174:6;;34321:23;34174:6;736:10;34321:23;34313:68;;;;;;;10250:2:1;34313:68:0;;;10232:21:1;;;10269:18;;;10262:30;10328:34;10308:18;;;10301:62;10380:18;;34313:68:0;10048:356:1;34313:68:0;34817:30:::1;34844:1;34817:18;:30::i;:::-;34752:103::o:0;21770:104::-;21826:13;21859:7;21852:14;;;;;:::i;36001:297::-;34174:6;;34321:23;34174:6;736:10;34321:23;34313:68;;;;;;;10250:2:1;34313:68:0;;;10232:21:1;;;10269:18;;;10262:30;10328:34;10308:18;;;10301:62;10380:18;;34313:68:0;10048:356:1;34313:68:0;36106:8:::1;36102:189;36124:8;:15;36120:1;:19;;;36102:189;;;35810:5;36163:8;36172:1;36163:11;;;;;;;;;;:::i;:::-;;;;;;;:23;;;36159:121;;;36233:33;36243:6;36250:1;36243:9;;;;;;;;;;:::i;:::-;;;;;;;36254:8;36263:1;36254:11;;;;;;;;;;:::i;:::-;;;;;;;36233:33;;:9;:33::i;:::-;36141:3:::0;::::1;::::0;::::1;:::i;:::-;;;;36102:189;;36306:92:::0;34174:6;;34321:23;34174:6;736:10;34321:23;34313:68;;;;;;;10250:2:1;34313:68:0;;;10232:21:1;;;10269:18;;;10262:30;10328:34;10308:18;;;10301:62;10380:18;;34313:68:0;10048:356:1;34313:68:0;36376:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;23453:155::-:0;23548:52;736:10;23581:8;23591;23548:18;:52::i;24576:328::-;24751:41;736:10;24784:7;24751:18;:41::i;:::-;24743:103;;;;;;;9832:2:1;24743:103:0;;;9814:21:1;9871:2;9851:18;;;9844:30;9910:34;9890:18;;;9883:62;9981:19;9961:18;;;9954:47;10018:19;;24743:103:0;9630:413:1;24743:103:0;24857:39;24871:4;24877:2;24881:7;24890:5;24857:13;:39::i;:::-;24576:328;;;;:::o;21945:334::-;26479:4;26503:16;;;:7;:16;;;;;;22018:13;;26503:30;:16;22044:76;;;;;;;12012:2:1;22044:76:0;;;11994:21:1;12051:2;12031:18;;;12024:30;12090:34;12070:18;;;12063:62;12161:17;12141:18;;;12134:45;12196:19;;22044:76:0;11810:411:1;22044:76:0;22133:21;22157:10;:8;:10::i;:::-;22133:34;;22209:1;22191:7;22185:21;:25;:86;;;;;;;;;;;;;;;;;22237:7;22246:18;:7;:16;:18::i;:::-;22220:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22185:86;22178:93;21945:334;-1:-1:-1;;;21945:334:0:o;35010:201::-;34174:6;;34321:23;34174:6;736:10;34321:23;34313:68;;;;;;;10250:2:1;34313:68:0;;;10232:21:1;;;10269:18;;;10262:30;10328:34;10308:18;;;10301:62;10380:18;;34313:68:0;10048:356:1;34313:68:0;35099:22:::1;::::0;::::1;35091:73;;;::::0;::::1;::::0;;12903:2:1;35091:73:0::1;::::0;::::1;12885:21:1::0;12942:2;12922:18;;;12915:30;12981:34;12961:18;;;12954:62;13052:8;13032:18;;;13025:36;13078:19;;35091:73:0::1;12701:402:1::0;35091:73:0::1;35175:28;35194:8;35175:18;:28::i;:::-;35010:201:::0;:::o;30396:174::-;30471:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;30525:23;30471:24;30525:14;:23::i;:::-;30516:46;;;;;;;;;;;;30396:174;;:::o;26708:348::-;26801:4;26503:16;;;:7;:16;;;;;;:30;:16;26818:73;;;;;;;13310:2:1;26818:73:0;;;13292:21:1;13349:2;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13459:14;13439:18;;;13432:42;13491:19;;26818:73:0;13108:408:1;26818:73:0;26902:13;26918:23;26933:7;26918:14;:23::i;:::-;26902:39;;26971:5;26960:16;;:7;:16;;;:51;;;;27004:7;26980:31;;:20;26992:7;26980:11;:20::i;:::-;:31;;;26960:51;:87;;;-1:-1:-1;23800:25:0;;;;23776:4;23800:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27015:32;26952:96;26708:348;-1:-1:-1;;;;26708:348:0:o;29700:578::-;29859:4;29832:31;;:23;29847:7;29832:14;:23::i;:::-;:31;;;29824:85;;;;;;;13723:2:1;29824:85:0;;;13705:21:1;13762:2;13742:18;;;13735:30;13801:34;13781:18;;;13774:62;13872:11;13852:18;;;13845:39;13901:19;;29824:85:0;13521:405:1;29824:85:0;29928:16;;;29920:65;;;;;;;14133:2:1;29920:65:0;;;14115:21:1;14172:2;14152:18;;;14145:30;14211:34;14191:18;;;14184:62;14282:6;14262:18;;;14255:34;14306:19;;29920:65:0;13931:400:1;29920:65:0;30102:29;30119:1;30123:7;30102:8;:29::i;:::-;30144:15;;;;;;;:9;:15;;;;;:20;;30163:1;;30144:15;:20;;30163:1;;30144:20;:::i;:::-;;;;-1:-1:-1;;30175:13:0;;;;;;;:9;:13;;;;;:18;;30192:1;;30175:13;:18;;30192:1;;30175:18;:::i;:::-;;;;-1:-1:-1;;30204:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;30243:27;;30204:16;;30243:27;;;;;;;29700:578;;;:::o;35371:191::-;35464:6;;;;35481:17;;;;;;;;;;;35514:40;;35464:6;;;35481:17;35464:6;;35514:40;;35445:16;;35514:40;35434:128;35371:191;:::o;27398:110::-;27474:26;27484:2;27488:7;27474:26;;;;;;;;;;;;:9;:26::i;30712:315::-;30867:8;30858:17;;:5;:17;;;;30850:55;;;;;;;14801:2:1;30850:55:0;;;14783:21:1;14840:2;14820:18;;;14813:30;14879:27;14859:18;;;14852:55;14924:18;;30850:55:0;14599:349:1;30850:55:0;30916:25;;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;30978:41;;586::1;;;30978::0;;559:18:1;30978:41:0;;;;;;;30712:315;;;:::o;25786:::-;25943:28;25953:4;25959:2;25963:7;25943:9;:28::i;:::-;25990:48;26013:4;26019:2;26023:7;26032:5;25990:22;:48::i;:::-;25982:111;;;;;;;15155:2:1;25982:111:0;;;15137:21:1;15194:2;15174:18;;;15167:30;15233:34;15213:18;;;15206:62;15304:20;15284:18;;;15277:48;15342:19;;25982:111:0;14953:414:1;36406:108:0;36466:13;36499:7;36492:14;;;;;:::i;17579:723::-;17635:13;17856:10;17852:53;;-1:-1:-1;;17883:10:0;;;;;;;;;;;;;;;;;;17579:723::o;17852:53::-;17930:5;17915:12;17971:78;17978:9;;17971:78;;18004:8;;;;:::i;:::-;;-1:-1:-1;18027:10:0;;-1:-1:-1;18035:2:0;18027:10;;:::i;:::-;;;17971:78;;;18059:19;18091:6;18081:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18081:17:0;;18059:39;;18109:154;18116:10;;18109:154;;18143:11;18153:1;18143:11;;:::i;:::-;;-1:-1:-1;18212:10:0;18220:2;18212:5;:10;:::i;:::-;18199:24;;:2;:24;:::i;:::-;18186:39;;18169:6;18176;18169:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;18240:11:0;18249:2;18240:11;;:::i;:::-;;;18109:154;;27735:321;27865:18;27871:2;27875:7;27865:5;:18::i;:::-;27916:54;27947:1;27951:2;27955:7;27964:5;27916:22;:54::i;:::-;27894:154;;;;;;;15155:2:1;27894:154:0;;;15137:21:1;15194:2;15174:18;;;15167:30;15233:34;15213:18;;;15206:62;15304:20;15284:18;;;15277:48;15342:19;;27894:154:0;14953:414:1;31592:799:0;31747:4;31768:13;;;10260:20;10308:8;31764:620;;31804:72;;;;;:36;;;;;;:72;;736:10;;31855:4;;31861:7;;31870:5;;31804:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31804:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31800:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32046:13:0;;32042:272;;32089:60;;;;;15155:2:1;32089:60:0;;;15137:21:1;15194:2;15174:18;;;15167:30;15233:34;15213:18;;;15206:62;15304:20;15284:18;;;15277:48;15342:19;;32089:60:0;14953:414:1;32042:272:0;32264:6;32258:13;32249:6;32245:2;32241:15;32234:38;31800:529;31927:51;;31937:41;31927:51;;-1:-1:-1;31920:58:0;;31764:620;-1:-1:-1;32368:4:0;31592:799;;;;;;:::o;28392:382::-;28472:16;;;28464:61;;;;;;;16976:2:1;28464:61:0;;;16958:21:1;;;16995:18;;;16988:30;17054:34;17034:18;;;17027:62;17106:18;;28464:61:0;16774:356:1;28464:61:0;26479:4;26503:16;;;:7;:16;;;;;;:30;:16;:30;28536:58;;;;;;;17337:2:1;28536:58:0;;;17319:21:1;17376:2;17356:18;;;17349:30;17415;17395:18;;;17388:58;17463:18;;28536:58:0;17135:352:1;28536:58:0;28665:13;;;;;;;:9;:13;;;;;:18;;28682:1;;28665:13;:18;;28682:1;;28665:18;:::i;:::-;;;;-1:-1:-1;;28694:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;28733:33;;28694:16;;;28733:33;;28694:16;;28733:33;28392:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:317::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1132:2;1120:15;1137:66;1116:88;1107:98;;;;1207:4;1103:109;;901:317;-1:-1:-1;;901:317:1:o;1223:220::-;1372:2;1361:9;1354:21;1335:4;1392:45;1433:2;1422:9;1418:18;1410:6;1392:45;:::i;1448:180::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;-1:-1:-1;1599:23:1;;1448:180;-1:-1:-1;1448:180:1:o;1864:196::-;1932:20;;1992:42;1981:54;;1971:65;;1961:93;;2050:1;2047;2040:12;1961:93;1864:196;;;:::o;2065:254::-;2133:6;2141;2194:2;2182:9;2173:7;2169:23;2165:32;2162:52;;;2210:1;2207;2200:12;2162:52;2233:29;2252:9;2233:29;:::i;:::-;2223:39;2309:2;2294:18;;;;2281:32;;-1:-1:-1;;;2065:254:1:o;2506:328::-;2583:6;2591;2599;2652:2;2640:9;2631:7;2627:23;2623:32;2620:52;;;2668:1;2665;2658:12;2620:52;2691:29;2710:9;2691:29;:::i;:::-;2681:39;;2739:38;2773:2;2762:9;2758:18;2739:38;:::i;:::-;2729:48;;2824:2;2813:9;2809:18;2796:32;2786:42;;2506:328;;;;;:::o;2839:186::-;2898:6;2951:2;2939:9;2930:7;2926:23;2922:32;2919:52;;;2967:1;2964;2957:12;2919:52;2990:29;3009:9;2990:29;:::i;3030:184::-;3082:77;3079:1;3072:88;3179:4;3176:1;3169:15;3203:4;3200:1;3193:15;3219:334;3290:2;3284:9;3346:2;3336:13;;3351:66;3332:86;3320:99;;3449:18;3434:34;;3470:22;;;3431:62;3428:88;;;3496:18;;:::i;:::-;3532:2;3525:22;3219:334;;-1:-1:-1;3219:334:1:o;3558:183::-;3618:4;3651:18;3643:6;3640:30;3637:56;;;3673:18;;:::i;:::-;-1:-1:-1;3718:1:1;3714:14;3730:4;3710:25;;3558:183::o;3746:832::-;3799:5;3852:3;3845:4;3837:6;3833:17;3829:27;3819:55;;3870:1;3867;3860:12;3819:55;3906:6;3893:20;3932:4;3956:60;3972:43;4012:2;3972:43;:::i;:::-;3956:60;:::i;:::-;4050:15;;;4136:1;4132:10;;;;4120:23;;4116:32;;;4081:12;;;;4160:15;;;4157:35;;;4188:1;4185;4178:12;4157:35;4224:2;4216:6;4212:15;4236:313;4252:6;4247:3;4244:15;4236:313;;;4332:3;4319:17;4380:6;4373:5;4369:18;4362:5;4359:29;4349:127;;4430:1;4459:2;4455;4448:14;4349:127;4489:18;;4527:12;;;;4269;;4236:313;;;-1:-1:-1;4567:5:1;3746:832;-1:-1:-1;;;;;;3746:832:1:o;4583:1144::-;4700:6;4708;4761:2;4749:9;4740:7;4736:23;4732:32;4729:52;;;4777:1;4774;4767:12;4729:52;4817:9;4804:23;4846:18;4887:2;4879:6;4876:14;4873:34;;;4903:1;4900;4893:12;4873:34;4941:6;4930:9;4926:22;4916:32;;4986:7;4979:4;4975:2;4971:13;4967:27;4957:55;;5008:1;5005;4998:12;4957:55;5044:2;5031:16;5066:4;5090:60;5106:43;5146:2;5106:43;:::i;5090:60::-;5184:15;;;5266:1;5262:10;;;;5254:19;;5250:28;;;5215:12;;;;5290:19;;;5287:39;;;5322:1;5319;5312:12;5287:39;5346:11;;;;5366:148;5382:6;5377:3;5374:15;5366:148;;;5448:23;5467:3;5448:23;:::i;:::-;5436:36;;5399:12;;;;5492;;;;5366:148;;;5533:5;-1:-1:-1;;5576:18:1;;5563:32;;-1:-1:-1;;5607:16:1;;;5604:36;;;5636:1;5633;5626:12;5604:36;;5659:62;5713:7;5702:8;5691:9;5687:24;5659:62;:::i;:::-;5649:72;;;4583:1144;;;;;:::o;5732:466::-;5797:5;5831:18;5823:6;5820:30;5817:56;;;5853:18;;:::i;:::-;5891:116;6001:4;5932:66;5927:2;5919:6;5915:15;5911:88;5907:99;5891:116;:::i;:::-;5882:125;;6030:6;6023:5;6016:21;6070:3;6061:6;6056:3;6052:16;6049:25;6046:45;;;6087:1;6084;6077:12;6046:45;6136:6;6131:3;6124:4;6117:5;6113:16;6100:43;6190:1;6183:4;6174:6;6167:5;6163:18;6159:29;6152:40;5732:466;;;;;:::o;6203:451::-;6272:6;6325:2;6313:9;6304:7;6300:23;6296:32;6293:52;;;6341:1;6338;6331:12;6293:52;6381:9;6368:23;6414:18;6406:6;6403:30;6400:50;;;6446:1;6443;6436:12;6400:50;6469:22;;6522:4;6514:13;;6510:27;-1:-1:-1;6500:55:1;;6551:1;6548;6541:12;6500:55;6574:74;6640:7;6635:2;6622:16;6617:2;6613;6609:11;6574:74;:::i;6659:347::-;6724:6;6732;6785:2;6773:9;6764:7;6760:23;6756:32;6753:52;;;6801:1;6798;6791:12;6753:52;6824:29;6843:9;6824:29;:::i;:::-;6814:39;;6903:2;6892:9;6888:18;6875:32;6950:5;6943:13;6936:21;6929:5;6926:32;6916:60;;6972:1;6969;6962:12;6916:60;6995:5;6985:15;;;6659:347;;;;;:::o;7011:667::-;7106:6;7114;7122;7130;7183:3;7171:9;7162:7;7158:23;7154:33;7151:53;;;7200:1;7197;7190:12;7151:53;7223:29;7242:9;7223:29;:::i;:::-;7213:39;;7271:38;7305:2;7294:9;7290:18;7271:38;:::i;:::-;7261:48;;7356:2;7345:9;7341:18;7328:32;7318:42;;7411:2;7400:9;7396:18;7383:32;7438:18;7430:6;7427:30;7424:50;;;7470:1;7467;7460:12;7424:50;7493:22;;7546:4;7538:13;;7534:27;-1:-1:-1;7524:55:1;;7575:1;7572;7565:12;7524:55;7598:74;7664:7;7659:2;7646:16;7641:2;7637;7633:11;7598:74;:::i;:::-;7588:84;;;7011:667;;;;;;;:::o;7683:260::-;7751:6;7759;7812:2;7800:9;7791:7;7787:23;7783:32;7780:52;;;7828:1;7825;7818:12;7780:52;7851:29;7870:9;7851:29;:::i;:::-;7841:39;;7899:38;7933:2;7922:9;7918:18;7899:38;:::i;:::-;7889:48;;7683:260;;;;;:::o;7948:437::-;8027:1;8023:12;;;;8070;;;8091:61;;8145:4;8137:6;8133:17;8123:27;;8091:61;8198:2;8190:6;8187:14;8167:18;8164:38;8161:218;;;8235:77;8232:1;8225:88;8336:4;8333:1;8326:15;8364:4;8361:1;8354:15;8161:218;;7948:437;;;:::o;11230:184::-;11282:77;11279:1;11272:88;11379:4;11376:1;11369:15;11403:4;11400:1;11393:15;11419:184;11471:77;11468:1;11461:88;11568:4;11565:1;11558:15;11592:4;11589:1;11582:15;11608:197;11646:3;11674:6;11715:2;11708:5;11704:14;11742:2;11733:7;11730:15;11727:41;;;11748:18;;:::i;:::-;11797:1;11784:15;;11608:197;-1:-1:-1;;;11608:197:1:o;12226:470::-;12405:3;12443:6;12437:13;12459:53;12505:6;12500:3;12493:4;12485:6;12481:17;12459:53;:::i;:::-;12575:13;;12534:16;;;;12597:57;12575:13;12534:16;12631:4;12619:17;;12597:57;:::i;:::-;12670:20;;12226:470;-1:-1:-1;;;;12226:470:1:o;14336:125::-;14376:4;14404:1;14401;14398:8;14395:34;;;14409:18;;:::i;:::-;-1:-1:-1;14446:9:1;;14336:125::o;14466:128::-;14506:3;14537:1;14533:6;14530:1;14527:13;14524:39;;;14543:18;;:::i;:::-;-1:-1:-1;14579:9:1;;14466:128::o;15372:195::-;15411:3;15442:66;15435:5;15432:77;15429:103;;;15512:18;;:::i;:::-;-1:-1:-1;15559:1:1;15548:13;;15372:195::o;15572:184::-;15624:77;15621:1;15614:88;15721:4;15718:1;15711:15;15745:4;15742:1;15735:15;15761:120;15801:1;15827;15817:35;;15832:18;;:::i;:::-;-1:-1:-1;15866:9:1;;15761:120::o;15886:112::-;15918:1;15944;15934:35;;15949:18;;:::i;:::-;-1:-1:-1;15983:9:1;;15886:112::o;16003:512::-;16197:4;16226:42;16307:2;16299:6;16295:15;16284:9;16277:34;16359:2;16351:6;16347:15;16342:2;16331:9;16327:18;16320:43;;16399:6;16394:2;16383:9;16379:18;16372:34;16442:3;16437:2;16426:9;16422:18;16415:31;16463:46;16504:3;16493:9;16489:19;16481:6;16463:46;:::i;:::-;16455:54;16003:512;-1:-1:-1;;;;;;16003:512:1:o;16520:249::-;16589:6;16642:2;16630:9;16621:7;16617:23;16613:32;16610:52;;;16658:1;16655;16648:12;16610:52;16690:9;16684:16;16709:30;16733:5;16709:30;:::i

Swarm Source

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