ETH Price: $3,350.88 (-1.98%)

Token

BullishBears (BB)
 

Overview

Max Total Supply

191 BB

Holders

44

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 BB
0x5524c337c94fed51e89359bdfcaf7bb7619ffcce
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BullishBears

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-17
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/utils/Context.sol

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

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


// File: @openzeppelin/contracts/access/Ownable.sol

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

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

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

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

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

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

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

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


// File: @openzeppelin/contracts/utils/Address.sol

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: @openzeppelin/contracts/utils/Strings.sol

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


// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

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


// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

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


// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

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


// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

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


// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

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


// File: @openzeppelin/contracts/token/ERC721/ERC721.sol

/**
 * @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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 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(to).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 {}
}


// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// File: contracts/Bears.sol

contract BullishBears is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Address for address;
    using Strings for uint256;

    uint256 public constant MAX_NFT_PURCHASE = 15;
    uint256 public MAX_SUPPLY = 10000;
    uint256 public price = 7e16; // 0.07 ETH
    bool public saleIsActive;

    uint256 public startingIndex;
    uint256 public startingIndexBlock;

    string private _baseURIExtended;
    mapping(uint256 => string) _tokenURIs;

    constructor() ERC721("BullishBears", "BB") {}

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

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

    function reserveTokens() public onlyOwner {
        uint256 supply = totalSupply();
        uint256 i;
        for (i = 0; i < 100; i++) {
            _safeMint(msg.sender, supply + i);
        }

        if (startingIndexBlock == 0) {
            startingIndexBlock = block.number;
        }
    }

    function setPrice(uint256 _price) external onlyOwner {
        require(_price > 0, "Price should be bigger than zero");
        price = _price;
    }

    function mintBears(uint256 numberOfTokens) public payable {
        require(saleIsActive, "Sale is not active at the moment");
        require(
            numberOfTokens > 0,
            "Number of tokens can not be less than or equal to 0"
        );
        require(
            totalSupply().add(numberOfTokens) <= MAX_SUPPLY,
            "Purchase would exceed max supply of bears"
        );
        require(
            numberOfTokens <= MAX_NFT_PURCHASE,
            "Can only mint up to 15 per purchase"
        );
        require(
            price.mul(numberOfTokens) == msg.value,
            "Sent ether value is incorrect"
        );

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, totalSupply());
        }
    }

    function calcStartingIndex() public onlyOwner {
        require(startingIndex == 0, "Starting index has already been set");
        require(startingIndexBlock != 0, "Starting index has not been set yet");

        startingIndex = uint256(blockhash(startingIndexBlock)) % MAX_SUPPLY;
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
        if (block.number.sub(startingIndexBlock) > 255) {
            startingIndex = uint256(blockhash(block.number - 1)) % MAX_SUPPLY;
        }

        // To prevent original sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex.add(1);
        }
    }

    function emergencySetStartingIndexBlock() public onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        startingIndexBlock = block.number;
    }

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

    // Sets base URI for all tokens, only able to be called by contract owner
    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIExtended = baseURI_;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }
}

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_NFT_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"calcStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintBears","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"view","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"}]

6080604052612710600b5566f8b0a10e470000600c553480156200002257600080fd5b50604080518082018252600c81526b42756c6c697368426561727360a01b602080830191825283518085019094526002845261212160f11b908401528151919291620000719160009162000100565b5080516200008790600190602084019062000100565b505050620000a46200009e620000aa60201b60201c565b620000ae565b620001e3565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010e90620001a6565b90600052602060002090601f0160209004810192826200013257600085556200017d565b82601f106200014d57805160ff19168380011785556200017d565b828001600101855582156200017d579182015b828111156200017d57825182559160200191906001019062000160565b506200018b9291506200018f565b5090565b5b808211156200018b576000815560010162000190565b600281046001821680620001bb57607f821691505b60208210811415620001dd57634e487b7160e01b600052602260045260246000fd5b50919050565b61265c80620001f36000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063b2ce8d6d116100a0578063e13f351a1161006f578063e13f351a14610516578063e36d64981461052b578063e985e9c514610540578063eb8d244414610560578063f2fde38b14610575576101ee565b8063b2ce8d6d146104ae578063b88d4fde146104c1578063c87b56dd146104e1578063cb774d4714610501576101ee565b806391b7f5ed116100dc57806391b7f5ed1461044457806395d89b4114610464578063a035b1fe14610479578063a22cb4651461048e576101ee565b806370a08231146103e5578063715018a6146104055780637d17fcbe1461041a5780638da5cb5b1461042f576101ee565b80632f745c591161018557806342842e0e1161015457806342842e0e146103655780634f6ccce71461038557806355f804b3146103a55780636352211e146103c5576101ee565b80632f745c591461030657806332cb6b0c1461032657806334918dfd1461033b5780633ccfd60b14610350576101ee565b8063095ea7b3116101c1578063095ea7b31461029a57806318160ddd146102bc57806323b872dd146102d157806327ac36c4146102f1576101ee565b806301ffc9a7146101f3578063020b39cc1461022957806306fdde031461024b578063081812fc1461026d575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611c33565b610595565b6040516102209190611d75565b60405180910390f35b34801561023557600080fd5b5061023e6105c2565b60405161022091906124cd565b34801561025757600080fd5b506102606105c7565b6040516102209190611d80565b34801561027957600080fd5b5061028d610288366004611cb1565b610659565b6040516102209190611d24565b3480156102a657600080fd5b506102ba6102b5366004611c0a565b6106a5565b005b3480156102c857600080fd5b5061023e61073d565b3480156102dd57600080fd5b506102ba6102ec366004611b1c565b610743565b3480156102fd57600080fd5b506102ba61077b565b34801561031257600080fd5b5061023e610321366004611c0a565b610807565b34801561033257600080fd5b5061023e610859565b34801561034757600080fd5b506102ba61085f565b34801561035c57600080fd5b506102ba6108b2565b34801561037157600080fd5b506102ba610380366004611b1c565b610920565b34801561039157600080fd5b5061023e6103a0366004611cb1565b61093b565b3480156103b157600080fd5b506102ba6103c0366004611c6b565b610996565b3480156103d157600080fd5b5061028d6103e0366004611cb1565b6109e8565b3480156103f157600080fd5b5061023e610400366004611ad0565b610a1d565b34801561041157600080fd5b506102ba610a61565b34801561042657600080fd5b506102ba610aac565b34801561043b57600080fd5b5061028d610b11565b34801561045057600080fd5b506102ba61045f366004611cb1565b610b20565b34801561047057600080fd5b50610260610b84565b34801561048557600080fd5b5061023e610b93565b34801561049a57600080fd5b506102ba6104a9366004611bd0565b610b99565b6102ba6104bc366004611cb1565b610c67565b3480156104cd57600080fd5b506102ba6104dc366004611b57565b610d52565b3480156104ed57600080fd5b506102606104fc366004611cb1565b610d91565b34801561050d57600080fd5b5061023e610ed4565b34801561052257600080fd5b506102ba610eda565b34801561053757600080fd5b5061023e610fba565b34801561054c57600080fd5b5061021361055b366004611aea565b610fc0565b34801561056c57600080fd5b50610213610fee565b34801561058157600080fd5b506102ba610590366004611ad0565b610ff7565b60006001600160e01b0319821663780e9d6360e01b14806105ba57506105ba82611068565b90505b919050565b600f81565b6060600080546105d690612564565b80601f016020809104026020016040519081016040528092919081815260200182805461060290612564565b801561064f5780601f106106245761010080835404028352916020019161064f565b820191906000526020600020905b81548152906001019060200180831161063257829003601f168201915b5050505050905090565b6000610664826110a8565b6106895760405162461bcd60e51b81526004016106809061221b565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b0826109e8565b9050806001600160a01b0316836001600160a01b031614156106e45760405162461bcd60e51b815260040161068090612377565b806001600160a01b03166106f66110c5565b6001600160a01b0316148061071257506107128161055b6110c5565b61072e5760405162461bcd60e51b8152600401610680906120bf565b61073883836110c9565b505050565b60085490565b61075461074e6110c5565b82611137565b6107705760405162461bcd60e51b8152600401610680906123b8565b6107388383836111bc565b6107836110c5565b6001600160a01b0316610794610b11565b6001600160a01b0316146107ba5760405162461bcd60e51b8152600401610680906122aa565b60006107c461073d565b905060005b60648110156107f7576107e5336107e083856124d6565b6112e9565b806107ef8161259f565b9150506107c9565b600f546108035743600f555b5050565b600061081283610a1d565b82106108305760405162461bcd60e51b815260040161068090611e5e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b5481565b6108676110c5565b6001600160a01b0316610878610b11565b6001600160a01b03161461089e5760405162461bcd60e51b8152600401610680906122aa565b600d805460ff19811660ff90911615179055565b6108ba6110c5565b6001600160a01b03166108cb610b11565b6001600160a01b0316146108f15760405162461bcd60e51b8152600401610680906122aa565b6040514790339082156108fc029083906000818181858888f19350505050158015610803573d6000803e3d6000fd5b61073883838360405180602001604052806000815250610d52565b600061094561073d565b82106109635760405162461bcd60e51b815260040161068090612409565b6008828154811061098457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b61099e6110c5565b6001600160a01b03166109af610b11565b6001600160a01b0316146109d55760405162461bcd60e51b8152600401610680906122aa565b80516108039060109060208401906119b0565b6000818152600260205260408120546001600160a01b0316806105ba5760405162461bcd60e51b815260040161068090612166565b60006001600160a01b038216610a455760405162461bcd60e51b81526004016106809061211c565b506001600160a01b031660009081526003602052604090205490565b610a696110c5565b6001600160a01b0316610a7a610b11565b6001600160a01b031614610aa05760405162461bcd60e51b8152600401610680906122aa565b610aaa6000611303565b565b610ab46110c5565b6001600160a01b0316610ac5610b11565b6001600160a01b031614610aeb5760405162461bcd60e51b8152600401610680906122aa565b600e5415610b0b5760405162461bcd60e51b815260040161068090612088565b43600f55565b600a546001600160a01b031690565b610b286110c5565b6001600160a01b0316610b39610b11565b6001600160a01b031614610b5f5760405162461bcd60e51b8152600401610680906122aa565b60008111610b7f5760405162461bcd60e51b815260040161068090611dd6565b600c55565b6060600180546105d690612564565b600c5481565b610ba16110c5565b6001600160a01b0316826001600160a01b03161415610bd25760405162461bcd60e51b815260040161068090612005565b8060056000610bdf6110c5565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610c236110c5565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c5b9190611d75565b60405180910390a35050565b600d5460ff16610c895760405162461bcd60e51b815260040161068090612498565b60008111610ca95760405162461bcd60e51b815260040161068090611e0b565b600b54610cbe82610cb861073d565b90611355565b1115610cdc5760405162461bcd60e51b815260040161068090611f41565b600f811115610cfd5760405162461bcd60e51b815260040161068090612267565b600c543490610d0c9083611368565b14610d295760405162461bcd60e51b8152600401610680906121af565b60005b8181101561080357610d40336107e061073d565b80610d4a8161259f565b915050610d2c565b610d63610d5d6110c5565b83611137565b610d7f5760405162461bcd60e51b8152600401610680906123b8565b610d8b84848484611374565b50505050565b6060610d9c826110a8565b610db85760405162461bcd60e51b815260040161068090612328565b60008281526011602052604081208054610dd190612564565b80601f0160208091040260200160405190810160405280929190818152602001828054610dfd90612564565b8015610e4a5780601f10610e1f57610100808354040283529160200191610e4a565b820191906000526020600020905b815481529060010190602001808311610e2d57829003601f168201915b505050505090506000610e5b6113a7565b9050805160001415610e6f575090506105bd565b815115610ea1578082604051602001610e89929190611cf5565b604051602081830303815290604052925050506105bd565b80610eab856113b6565b604051602001610ebc929190611cf5565b60405160208183030381529060405292505050919050565b600e5481565b610ee26110c5565b6001600160a01b0316610ef3610b11565b6001600160a01b031614610f195760405162461bcd60e51b8152600401610680906122aa565b600e5415610f395760405162461bcd60e51b815260040161068090612455565b600f54610f585760405162461bcd60e51b815260040161068090611d93565b600b54600f54610f699190406125ba565b600e55600f5460ff90610f7d9043906114d1565b1115610fa057600b54610f91600143612521565b610f9c9190406125ba565b600e555b600e54610aaa57600e54610fb5906001611355565b600e55565b600f5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600d5460ff1681565b610fff6110c5565b6001600160a01b0316611010610b11565b6001600160a01b0316146110365760405162461bcd60e51b8152600401610680906122aa565b6001600160a01b03811661105c5760405162461bcd60e51b815260040161068090611efb565b61106581611303565b50565b60006001600160e01b031982166380ac58cd60e01b148061109957506001600160e01b03198216635b5e139f60e01b145b806105ba57506105ba826114dd565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110fe826109e8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611142826110a8565b61115e5760405162461bcd60e51b81526004016106809061203c565b6000611169836109e8565b9050806001600160a01b0316846001600160a01b031614806111a45750836001600160a01b031661119984610659565b6001600160a01b0316145b806111b457506111b48185610fc0565b949350505050565b826001600160a01b03166111cf826109e8565b6001600160a01b0316146111f55760405162461bcd60e51b8152600401610680906122df565b6001600160a01b03821661121b5760405162461bcd60e51b815260040161068090611fc1565b6112268383836114f6565b6112316000826110c9565b6001600160a01b038316600090815260036020526040812080546001929061125a908490612521565b90915550506001600160a01b03821660009081526003602052604081208054600192906112889084906124d6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61080382826040518060200160405280600081525061157f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061136182846124d6565b9392505050565b60006113618284612502565b61137f8484846111bc565b61138b848484846115b2565b610d8b5760405162461bcd60e51b815260040161068090611ea9565b6060601080546105d690612564565b6060816113db57506040805180820190915260018152600360fc1b60208201526105bd565b8160005b811561140557806113ef8161259f565b91506113fe9050600a836124ee565b91506113df565b60008167ffffffffffffffff81111561142e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611458576020820181803683370190505b5090505b84156111b45761146d600183612521565b915061147a600a866125ba565b6114859060306124d6565b60f81b8183815181106114a857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506114ca600a866124ee565b945061145c565b60006113618284612521565b6001600160e01b031981166301ffc9a760e01b14919050565b611501838383610738565b6001600160a01b03831661151d57611518816116cd565b611540565b816001600160a01b0316836001600160a01b031614611540576115408382611711565b6001600160a01b03821661155c57611557816117ae565b610738565b826001600160a01b0316826001600160a01b031614610738576107388282611887565b61158983836118cb565b61159660008484846115b2565b6107385760405162461bcd60e51b815260040161068090611ea9565b60006115c6846001600160a01b03166119aa565b156116c257836001600160a01b031663150b7a026115e26110c5565b8786866040518563ffffffff1660e01b81526004016116049493929190611d38565b602060405180830381600087803b15801561161e57600080fd5b505af192505050801561164e575060408051601f3d908101601f1916820190925261164b91810190611c4f565b60015b6116a8573d80801561167c576040519150601f19603f3d011682016040523d82523d6000602084013e611681565b606091505b5080516116a05760405162461bcd60e51b815260040161068090611ea9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111b4565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161171e84610a1d565b6117289190612521565b60008381526007602052604090205490915080821461177b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906117c090600190612521565b600083815260096020526040812054600880549394509092849081106117f657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061182557634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061186b57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061189283610a1d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166118f15760405162461bcd60e51b8152600401610680906121e6565b6118fa816110a8565b156119175760405162461bcd60e51b815260040161068090611f8a565b611923600083836114f6565b6001600160a01b038216600090815260036020526040812080546001929061194c9084906124d6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546119bc90612564565b90600052602060002090601f0160209004810192826119de5760008555611a24565b82601f106119f757805160ff1916838001178555611a24565b82800160010185558215611a24579182015b82811115611a24578251825591602001919060010190611a09565b50611a30929150611a34565b5090565b5b80821115611a305760008155600101611a35565b600067ffffffffffffffff80841115611a6457611a646125fa565b604051601f8501601f191681016020018281118282101715611a8857611a886125fa565b604052848152915081838501861015611aa057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105bd57600080fd5b600060208284031215611ae1578081fd5b61136182611ab9565b60008060408385031215611afc578081fd5b611b0583611ab9565b9150611b1360208401611ab9565b90509250929050565b600080600060608486031215611b30578081fd5b611b3984611ab9565b9250611b4760208501611ab9565b9150604084013590509250925092565b60008060008060808587031215611b6c578081fd5b611b7585611ab9565b9350611b8360208601611ab9565b925060408501359150606085013567ffffffffffffffff811115611ba5578182fd5b8501601f81018713611bb5578182fd5b611bc487823560208401611a49565b91505092959194509250565b60008060408385031215611be2578182fd5b611beb83611ab9565b915060208301358015158114611bff578182fd5b809150509250929050565b60008060408385031215611c1c578182fd5b611c2583611ab9565b946020939093013593505050565b600060208284031215611c44578081fd5b813561136181612610565b600060208284031215611c60578081fd5b815161136181612610565b600060208284031215611c7c578081fd5b813567ffffffffffffffff811115611c92578182fd5b8201601f81018413611ca2578182fd5b6111b484823560208401611a49565b600060208284031215611cc2578081fd5b5035919050565b60008151808452611ce1816020860160208601612538565b601f01601f19169290920160200192915050565b60008351611d07818460208801612538565b835190830190611d1b818360208801612538565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d6b90830184611cc9565b9695505050505050565b901515815260200190565b6000602082526113616020830184611cc9565b60208082526023908201527f5374617274696e6720696e64657820686173206e6f74206265656e20736574206040820152621e595d60ea1b606082015260800190565b6020808252818101527f50726963652073686f756c6420626520626967676572207468616e207a65726f604082015260600190565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526029908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015268206f6620626561727360b81b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601d908201527f5374617274696e6720696e64657820697320616c726561647920736574000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601d908201527f53656e742065746865722076616c756520697320696e636f7272656374000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526023908201527f43616e206f6e6c79206d696e7420757020746f2031352070657220707572636860408201526261736560e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526023908201527f5374617274696e6720696e6465782068617320616c7265616479206265656e206040820152621cd95d60ea1b606082015260800190565b6020808252818101527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604082015260600190565b90815260200190565b600082198211156124e9576124e96125ce565b500190565b6000826124fd576124fd6125e4565b500490565b600081600019048311821515161561251c5761251c6125ce565b500290565b600082821015612533576125336125ce565b500390565b60005b8381101561255357818101518382015260200161253b565b83811115610d8b5750506000910152565b60028104600182168061257857607f821691505b6020821081141561259957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125b3576125b36125ce565b5060010190565b6000826125c9576125c96125e4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461106557600080fdfea2646970667358221220a5c127f63ab8dfb0711ccaa9d3e4ab23844ed7ab9626d46831dbec726353636f64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063b2ce8d6d116100a0578063e13f351a1161006f578063e13f351a14610516578063e36d64981461052b578063e985e9c514610540578063eb8d244414610560578063f2fde38b14610575576101ee565b8063b2ce8d6d146104ae578063b88d4fde146104c1578063c87b56dd146104e1578063cb774d4714610501576101ee565b806391b7f5ed116100dc57806391b7f5ed1461044457806395d89b4114610464578063a035b1fe14610479578063a22cb4651461048e576101ee565b806370a08231146103e5578063715018a6146104055780637d17fcbe1461041a5780638da5cb5b1461042f576101ee565b80632f745c591161018557806342842e0e1161015457806342842e0e146103655780634f6ccce71461038557806355f804b3146103a55780636352211e146103c5576101ee565b80632f745c591461030657806332cb6b0c1461032657806334918dfd1461033b5780633ccfd60b14610350576101ee565b8063095ea7b3116101c1578063095ea7b31461029a57806318160ddd146102bc57806323b872dd146102d157806327ac36c4146102f1576101ee565b806301ffc9a7146101f3578063020b39cc1461022957806306fdde031461024b578063081812fc1461026d575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611c33565b610595565b6040516102209190611d75565b60405180910390f35b34801561023557600080fd5b5061023e6105c2565b60405161022091906124cd565b34801561025757600080fd5b506102606105c7565b6040516102209190611d80565b34801561027957600080fd5b5061028d610288366004611cb1565b610659565b6040516102209190611d24565b3480156102a657600080fd5b506102ba6102b5366004611c0a565b6106a5565b005b3480156102c857600080fd5b5061023e61073d565b3480156102dd57600080fd5b506102ba6102ec366004611b1c565b610743565b3480156102fd57600080fd5b506102ba61077b565b34801561031257600080fd5b5061023e610321366004611c0a565b610807565b34801561033257600080fd5b5061023e610859565b34801561034757600080fd5b506102ba61085f565b34801561035c57600080fd5b506102ba6108b2565b34801561037157600080fd5b506102ba610380366004611b1c565b610920565b34801561039157600080fd5b5061023e6103a0366004611cb1565b61093b565b3480156103b157600080fd5b506102ba6103c0366004611c6b565b610996565b3480156103d157600080fd5b5061028d6103e0366004611cb1565b6109e8565b3480156103f157600080fd5b5061023e610400366004611ad0565b610a1d565b34801561041157600080fd5b506102ba610a61565b34801561042657600080fd5b506102ba610aac565b34801561043b57600080fd5b5061028d610b11565b34801561045057600080fd5b506102ba61045f366004611cb1565b610b20565b34801561047057600080fd5b50610260610b84565b34801561048557600080fd5b5061023e610b93565b34801561049a57600080fd5b506102ba6104a9366004611bd0565b610b99565b6102ba6104bc366004611cb1565b610c67565b3480156104cd57600080fd5b506102ba6104dc366004611b57565b610d52565b3480156104ed57600080fd5b506102606104fc366004611cb1565b610d91565b34801561050d57600080fd5b5061023e610ed4565b34801561052257600080fd5b506102ba610eda565b34801561053757600080fd5b5061023e610fba565b34801561054c57600080fd5b5061021361055b366004611aea565b610fc0565b34801561056c57600080fd5b50610213610fee565b34801561058157600080fd5b506102ba610590366004611ad0565b610ff7565b60006001600160e01b0319821663780e9d6360e01b14806105ba57506105ba82611068565b90505b919050565b600f81565b6060600080546105d690612564565b80601f016020809104026020016040519081016040528092919081815260200182805461060290612564565b801561064f5780601f106106245761010080835404028352916020019161064f565b820191906000526020600020905b81548152906001019060200180831161063257829003601f168201915b5050505050905090565b6000610664826110a8565b6106895760405162461bcd60e51b81526004016106809061221b565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b0826109e8565b9050806001600160a01b0316836001600160a01b031614156106e45760405162461bcd60e51b815260040161068090612377565b806001600160a01b03166106f66110c5565b6001600160a01b0316148061071257506107128161055b6110c5565b61072e5760405162461bcd60e51b8152600401610680906120bf565b61073883836110c9565b505050565b60085490565b61075461074e6110c5565b82611137565b6107705760405162461bcd60e51b8152600401610680906123b8565b6107388383836111bc565b6107836110c5565b6001600160a01b0316610794610b11565b6001600160a01b0316146107ba5760405162461bcd60e51b8152600401610680906122aa565b60006107c461073d565b905060005b60648110156107f7576107e5336107e083856124d6565b6112e9565b806107ef8161259f565b9150506107c9565b600f546108035743600f555b5050565b600061081283610a1d565b82106108305760405162461bcd60e51b815260040161068090611e5e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b5481565b6108676110c5565b6001600160a01b0316610878610b11565b6001600160a01b03161461089e5760405162461bcd60e51b8152600401610680906122aa565b600d805460ff19811660ff90911615179055565b6108ba6110c5565b6001600160a01b03166108cb610b11565b6001600160a01b0316146108f15760405162461bcd60e51b8152600401610680906122aa565b6040514790339082156108fc029083906000818181858888f19350505050158015610803573d6000803e3d6000fd5b61073883838360405180602001604052806000815250610d52565b600061094561073d565b82106109635760405162461bcd60e51b815260040161068090612409565b6008828154811061098457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b61099e6110c5565b6001600160a01b03166109af610b11565b6001600160a01b0316146109d55760405162461bcd60e51b8152600401610680906122aa565b80516108039060109060208401906119b0565b6000818152600260205260408120546001600160a01b0316806105ba5760405162461bcd60e51b815260040161068090612166565b60006001600160a01b038216610a455760405162461bcd60e51b81526004016106809061211c565b506001600160a01b031660009081526003602052604090205490565b610a696110c5565b6001600160a01b0316610a7a610b11565b6001600160a01b031614610aa05760405162461bcd60e51b8152600401610680906122aa565b610aaa6000611303565b565b610ab46110c5565b6001600160a01b0316610ac5610b11565b6001600160a01b031614610aeb5760405162461bcd60e51b8152600401610680906122aa565b600e5415610b0b5760405162461bcd60e51b815260040161068090612088565b43600f55565b600a546001600160a01b031690565b610b286110c5565b6001600160a01b0316610b39610b11565b6001600160a01b031614610b5f5760405162461bcd60e51b8152600401610680906122aa565b60008111610b7f5760405162461bcd60e51b815260040161068090611dd6565b600c55565b6060600180546105d690612564565b600c5481565b610ba16110c5565b6001600160a01b0316826001600160a01b03161415610bd25760405162461bcd60e51b815260040161068090612005565b8060056000610bdf6110c5565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610c236110c5565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c5b9190611d75565b60405180910390a35050565b600d5460ff16610c895760405162461bcd60e51b815260040161068090612498565b60008111610ca95760405162461bcd60e51b815260040161068090611e0b565b600b54610cbe82610cb861073d565b90611355565b1115610cdc5760405162461bcd60e51b815260040161068090611f41565b600f811115610cfd5760405162461bcd60e51b815260040161068090612267565b600c543490610d0c9083611368565b14610d295760405162461bcd60e51b8152600401610680906121af565b60005b8181101561080357610d40336107e061073d565b80610d4a8161259f565b915050610d2c565b610d63610d5d6110c5565b83611137565b610d7f5760405162461bcd60e51b8152600401610680906123b8565b610d8b84848484611374565b50505050565b6060610d9c826110a8565b610db85760405162461bcd60e51b815260040161068090612328565b60008281526011602052604081208054610dd190612564565b80601f0160208091040260200160405190810160405280929190818152602001828054610dfd90612564565b8015610e4a5780601f10610e1f57610100808354040283529160200191610e4a565b820191906000526020600020905b815481529060010190602001808311610e2d57829003601f168201915b505050505090506000610e5b6113a7565b9050805160001415610e6f575090506105bd565b815115610ea1578082604051602001610e89929190611cf5565b604051602081830303815290604052925050506105bd565b80610eab856113b6565b604051602001610ebc929190611cf5565b60405160208183030381529060405292505050919050565b600e5481565b610ee26110c5565b6001600160a01b0316610ef3610b11565b6001600160a01b031614610f195760405162461bcd60e51b8152600401610680906122aa565b600e5415610f395760405162461bcd60e51b815260040161068090612455565b600f54610f585760405162461bcd60e51b815260040161068090611d93565b600b54600f54610f699190406125ba565b600e55600f5460ff90610f7d9043906114d1565b1115610fa057600b54610f91600143612521565b610f9c9190406125ba565b600e555b600e54610aaa57600e54610fb5906001611355565b600e55565b600f5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600d5460ff1681565b610fff6110c5565b6001600160a01b0316611010610b11565b6001600160a01b0316146110365760405162461bcd60e51b8152600401610680906122aa565b6001600160a01b03811661105c5760405162461bcd60e51b815260040161068090611efb565b61106581611303565b50565b60006001600160e01b031982166380ac58cd60e01b148061109957506001600160e01b03198216635b5e139f60e01b145b806105ba57506105ba826114dd565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110fe826109e8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611142826110a8565b61115e5760405162461bcd60e51b81526004016106809061203c565b6000611169836109e8565b9050806001600160a01b0316846001600160a01b031614806111a45750836001600160a01b031661119984610659565b6001600160a01b0316145b806111b457506111b48185610fc0565b949350505050565b826001600160a01b03166111cf826109e8565b6001600160a01b0316146111f55760405162461bcd60e51b8152600401610680906122df565b6001600160a01b03821661121b5760405162461bcd60e51b815260040161068090611fc1565b6112268383836114f6565b6112316000826110c9565b6001600160a01b038316600090815260036020526040812080546001929061125a908490612521565b90915550506001600160a01b03821660009081526003602052604081208054600192906112889084906124d6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61080382826040518060200160405280600081525061157f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061136182846124d6565b9392505050565b60006113618284612502565b61137f8484846111bc565b61138b848484846115b2565b610d8b5760405162461bcd60e51b815260040161068090611ea9565b6060601080546105d690612564565b6060816113db57506040805180820190915260018152600360fc1b60208201526105bd565b8160005b811561140557806113ef8161259f565b91506113fe9050600a836124ee565b91506113df565b60008167ffffffffffffffff81111561142e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611458576020820181803683370190505b5090505b84156111b45761146d600183612521565b915061147a600a866125ba565b6114859060306124d6565b60f81b8183815181106114a857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506114ca600a866124ee565b945061145c565b60006113618284612521565b6001600160e01b031981166301ffc9a760e01b14919050565b611501838383610738565b6001600160a01b03831661151d57611518816116cd565b611540565b816001600160a01b0316836001600160a01b031614611540576115408382611711565b6001600160a01b03821661155c57611557816117ae565b610738565b826001600160a01b0316826001600160a01b031614610738576107388282611887565b61158983836118cb565b61159660008484846115b2565b6107385760405162461bcd60e51b815260040161068090611ea9565b60006115c6846001600160a01b03166119aa565b156116c257836001600160a01b031663150b7a026115e26110c5565b8786866040518563ffffffff1660e01b81526004016116049493929190611d38565b602060405180830381600087803b15801561161e57600080fd5b505af192505050801561164e575060408051601f3d908101601f1916820190925261164b91810190611c4f565b60015b6116a8573d80801561167c576040519150601f19603f3d011682016040523d82523d6000602084013e611681565b606091505b5080516116a05760405162461bcd60e51b815260040161068090611ea9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111b4565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161171e84610a1d565b6117289190612521565b60008381526007602052604090205490915080821461177b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906117c090600190612521565b600083815260096020526040812054600880549394509092849081106117f657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061182557634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061186b57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061189283610a1d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166118f15760405162461bcd60e51b8152600401610680906121e6565b6118fa816110a8565b156119175760405162461bcd60e51b815260040161068090611f8a565b611923600083836114f6565b6001600160a01b038216600090815260036020526040812080546001929061194c9084906124d6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546119bc90612564565b90600052602060002090601f0160209004810192826119de5760008555611a24565b82601f106119f757805160ff1916838001178555611a24565b82800160010185558215611a24579182015b82811115611a24578251825591602001919060010190611a09565b50611a30929150611a34565b5090565b5b80821115611a305760008155600101611a35565b600067ffffffffffffffff80841115611a6457611a646125fa565b604051601f8501601f191681016020018281118282101715611a8857611a886125fa565b604052848152915081838501861015611aa057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105bd57600080fd5b600060208284031215611ae1578081fd5b61136182611ab9565b60008060408385031215611afc578081fd5b611b0583611ab9565b9150611b1360208401611ab9565b90509250929050565b600080600060608486031215611b30578081fd5b611b3984611ab9565b9250611b4760208501611ab9565b9150604084013590509250925092565b60008060008060808587031215611b6c578081fd5b611b7585611ab9565b9350611b8360208601611ab9565b925060408501359150606085013567ffffffffffffffff811115611ba5578182fd5b8501601f81018713611bb5578182fd5b611bc487823560208401611a49565b91505092959194509250565b60008060408385031215611be2578182fd5b611beb83611ab9565b915060208301358015158114611bff578182fd5b809150509250929050565b60008060408385031215611c1c578182fd5b611c2583611ab9565b946020939093013593505050565b600060208284031215611c44578081fd5b813561136181612610565b600060208284031215611c60578081fd5b815161136181612610565b600060208284031215611c7c578081fd5b813567ffffffffffffffff811115611c92578182fd5b8201601f81018413611ca2578182fd5b6111b484823560208401611a49565b600060208284031215611cc2578081fd5b5035919050565b60008151808452611ce1816020860160208601612538565b601f01601f19169290920160200192915050565b60008351611d07818460208801612538565b835190830190611d1b818360208801612538565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d6b90830184611cc9565b9695505050505050565b901515815260200190565b6000602082526113616020830184611cc9565b60208082526023908201527f5374617274696e6720696e64657820686173206e6f74206265656e20736574206040820152621e595d60ea1b606082015260800190565b6020808252818101527f50726963652073686f756c6420626520626967676572207468616e207a65726f604082015260600190565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526029908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015268206f6620626561727360b81b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601d908201527f5374617274696e6720696e64657820697320616c726561647920736574000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601d908201527f53656e742065746865722076616c756520697320696e636f7272656374000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526023908201527f43616e206f6e6c79206d696e7420757020746f2031352070657220707572636860408201526261736560e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526023908201527f5374617274696e6720696e6465782068617320616c7265616479206265656e206040820152621cd95d60ea1b606082015260800190565b6020808252818101527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604082015260600190565b90815260200190565b600082198211156124e9576124e96125ce565b500190565b6000826124fd576124fd6125e4565b500490565b600081600019048311821515161561251c5761251c6125ce565b500290565b600082821015612533576125336125ce565b500390565b60005b8381101561255357818101518382015260200161253b565b83811115610d8b5750506000910152565b60028104600182168061257857607f821691505b6020821081141561259957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125b3576125b36125ce565b5060010190565b6000826125c9576125c96125e4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461106557600080fdfea2646970667358221220a5c127f63ab8dfb0711ccaa9d3e4ab23844ed7ab9626d46831dbec726353636f64736f6c63430008000033

Deployed Bytecode Sourcemap

49489:4171:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36439:224;;;;;;;;;;-1:-1:-1;36439:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49646:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23400:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24959:221::-;;;;;;;;;;-1:-1:-1;24959:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;24482:411::-;;;;;;;;;;-1:-1:-1;24482:411:0;;;;;:::i;:::-;;:::i;:::-;;37079:113;;;;;;;;;;;;;:::i;25849:339::-;;;;;;;;;;-1:-1:-1;25849:339:0;;;;;:::i;:::-;;:::i;50279:308::-;;;;;;;;;;;;;:::i;36747:256::-;;;;;;;;;;-1:-1:-1;36747:256:0;;;;;:::i;:::-;;:::i;49698:33::-;;;;;;;;;;;;;:::i;50031:89::-;;;;;;;;;;;;;:::i;50128:143::-;;;;;;;;;;;;;:::i;26259:185::-;;;;;;;;;;-1:-1:-1;26259:185:0;;;;;:::i;:::-;;:::i;37269:233::-;;;;;;;;;;-1:-1:-1;37269:233:0;;;;;:::i;:::-;;:::i;52660:109::-;;;;;;;;;;-1:-1:-1;52660:109:0;;;;;:::i;:::-;;:::i;23094:239::-;;;;;;;;;;-1:-1:-1;23094:239:0;;;;;:::i;:::-;;:::i;22824:208::-;;;;;;;;;;-1:-1:-1;22824:208:0;;;;;:::i;:::-;;:::i;2489:94::-;;;;;;;;;;;;;:::i;52266:182::-;;;;;;;;;;;;;:::i;1838:87::-;;;;;;;;;;;;;:::i;50595:152::-;;;;;;;;;;-1:-1:-1;50595:152:0;;;;;:::i;:::-;;:::i;23569:104::-;;;;;;;;;;;;;:::i;49738:27::-;;;;;;;;;;;;;:::i;25252:295::-;;;;;;;;;;-1:-1:-1;25252:295:0;;;;;:::i;:::-;;:::i;50755:791::-;;;;;;:::i;:::-;;:::i;26515:328::-;;;;;;;;;;-1:-1:-1;26515:328:0;;;;;:::i;:::-;;:::i;52777:880::-;;;;;;;;;;-1:-1:-1;52777:880:0;;;;;:::i;:::-;;:::i;49817:28::-;;;;;;;;;;;;;:::i;51554:704::-;;;;;;;;;;;;;:::i;49852:33::-;;;;;;;;;;;;;:::i;25618:164::-;;;;;;;;;;-1:-1:-1;25618:164:0;;;;;:::i;:::-;;:::i;49784:24::-;;;;;;;;;;;;;:::i;2738:192::-;;;;;;;;;;-1:-1:-1;2738:192:0;;;;;:::i;:::-;;:::i;36439:224::-;36541:4;-1:-1:-1;;;;;;36565:50:0;;-1:-1:-1;;;36565:50:0;;:90;;;36619:36;36643:11;36619:23;:36::i;:::-;36558:97;;36439:224;;;;:::o;49646:45::-;49689:2;49646:45;:::o;23400:100::-;23454:13;23487:5;23480:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23400:100;:::o;24959:221::-;25035:7;25063:16;25071:7;25063;:16::i;:::-;25055:73;;;;-1:-1:-1;;;25055:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;25148:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25148:24:0;;24959:221::o;24482:411::-;24563:13;24579:23;24594:7;24579:14;:23::i;:::-;24563:39;;24627:5;-1:-1:-1;;;;;24621:11:0;:2;-1:-1:-1;;;;;24621:11:0;;;24613:57;;;;-1:-1:-1;;;24613:57:0;;;;;;;:::i;:::-;24721:5;-1:-1:-1;;;;;24705:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;24705:21:0;;:62;;;;24730:37;24747:5;24754:12;:10;:12::i;24730:37::-;24683:168;;;;-1:-1:-1;;;24683:168:0;;;;;;;:::i;:::-;24864:21;24873:2;24877:7;24864:8;:21::i;:::-;24482:411;;;:::o;37079:113::-;37167:10;:17;37079:113;:::o;25849:339::-;26044:41;26063:12;:10;:12::i;:::-;26077:7;26044:18;:41::i;:::-;26036:103;;;;-1:-1:-1;;;26036:103:0;;;;;;;:::i;:::-;26152:28;26162:4;26168:2;26172:7;26152:9;:28::i;50279:308::-;2069:12;:10;:12::i;:::-;-1:-1:-1;;;;;2058:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2058:23:0;;2050:68;;;;-1:-1:-1;;;2050:68:0;;;;;;;:::i;:::-;50332:14:::1;50349:13;:11;:13::i;:::-;50332:30;;50373:9;50393:86;50409:3;50405:1;:7;50393:86;;;50434:33;50444:10;50456;50465:1:::0;50456:6;:10:::1;:::i;:::-;50434:9;:33::i;:::-;50414:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50393:86;;;50495:18;::::0;50491:89:::1;;50556:12;50535:18;:33:::0;50491:89:::1;2129:1;;50279:308::o:0;36747:256::-;36844:7;36880:23;36897:5;36880:16;:23::i;:::-;36872:5;:31;36864:87;;;;-1:-1:-1;;;36864:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;36969:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36747:256::o;49698:33::-;;;;:::o;50031:89::-;2069:12;:10;:12::i;:::-;-1:-1:-1;;;;;2058:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2058:23:0;;2050:68;;;;-1:-1:-1;;;2050:68:0;;;;;;;:::i;:::-;50100:12:::1;::::0;;-1:-1:-1;;50084:28:0;::::1;50100:12;::::0;;::::1;50099:13;50084:28;::::0;;50031:89::o;50128:143::-;2069:12;:10;:12::i;:::-;-1:-1:-1;;;;;2058:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2058:23:0;;2050:68;;;;-1:-1:-1;;;2050:68:0;;;;;;;:::i;:::-;50226:37:::1;::::0;50194:21:::1;::::0;50234:10:::1;::::0;50226:37;::::1;;;::::0;50194:21;;50176:15:::1;50226:37:::0;50176:15;50226:37;50194:21;50234:10;50226:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;26259:185:::0;26397:39;26414:4;26420:2;26424:7;26397:39;;;;;;;;;;;;:16;:39::i;37269:233::-;37344:7;37380:30;:28;:30::i;:::-;37372:5;:38;37364:95;;;;-1:-1:-1;;;37364:95:0;;;;;;;:::i;:::-;37477:10;37488:5;37477:17;;;;;;-1:-1:-1;;;37477:17:0;;;;;;;;;;;;;;;;;37470:24;;37269:233;;;:::o;52660:109::-;2069:12;:10;:12::i;:::-;-1:-1:-1;;;;;2058:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2058:23:0;;2050:68;;;;-1:-1:-1;;;2050:68:0;;;;;;;:::i;:::-;52734:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;23094:239::-:0;23166:7;23202:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23202:16:0;23237:19;23229:73;;;;-1:-1:-1;;;23229:73:0;;;;;;;:::i;22824:208::-;22896:7;-1:-1:-1;;;;;22924:19:0;;22916:74;;;;-1:-1:-1;;;22916:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;23008:16:0;;;;;:9;:16;;;;;;;22824:208::o;2489:94::-;2069:12;:10;:12::i;:::-;-1:-1:-1;;;;;2058:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2058:23:0;;2050:68;;;;-1:-1:-1;;;2050:68:0;;;;;;;:::i;:::-;2554:21:::1;2572:1;2554:9;:21::i;:::-;2489:94::o:0;52266:182::-;2069:12;:10;:12::i;:::-;-1:-1:-1;;;;;2058:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2058:23:0;;2050:68;;;;-1:-1:-1;;;2050:68:0;;;;;;;:::i;:::-;52344:13:::1;::::0;:18;52336:60:::1;;;;-1:-1:-1::0;;;52336:60:0::1;;;;;;;:::i;:::-;52428:12;52407:18;:33:::0;52266:182::o;1838:87::-;1911:6;;-1:-1:-1;;;;;1911:6:0;1838:87;:::o;50595:152::-;2069:12;:10;:12::i;:::-;-1:-1:-1;;;;;2058:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2058:23:0;;2050:68;;;;-1:-1:-1;;;2050:68:0;;;;;;;:::i;:::-;50676:1:::1;50667:6;:10;50659:55;;;;-1:-1:-1::0;;;50659:55:0::1;;;;;;;:::i;:::-;50725:5;:14:::0;50595:152::o;23569:104::-;23625:13;23658:7;23651:14;;;;;:::i;49738:27::-;;;;:::o;25252:295::-;25367:12;:10;:12::i;:::-;-1:-1:-1;;;;;25355:24:0;:8;-1:-1:-1;;;;;25355:24:0;;;25347:62;;;;-1:-1:-1;;;25347:62:0;;;;;;;:::i;:::-;25467:8;25422:18;:32;25441:12;:10;:12::i;:::-;-1:-1:-1;;;;;25422:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;25422:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;25422:53:0;;;;;;;;;;;25506:12;:10;:12::i;:::-;-1:-1:-1;;;;;25491:48:0;;25530:8;25491:48;;;;;;:::i;:::-;;;;;;;;25252:295;;:::o;50755:791::-;50832:12;;;;50824:57;;;;-1:-1:-1;;;50824:57:0;;;;;;;:::i;:::-;50931:1;50914:14;:18;50892:119;;;;-1:-1:-1;;;50892:119:0;;;;;;;:::i;:::-;51081:10;;51044:33;51062:14;51044:13;:11;:13::i;:::-;:17;;:33::i;:::-;:47;;51022:138;;;;-1:-1:-1;;;51022:138:0;;;;;;;:::i;:::-;49689:2;51193:14;:34;;51171:119;;;;-1:-1:-1;;;51171:119:0;;;;;;;:::i;:::-;51323:5;;51352:9;;51323:25;;51333:14;51323:9;:25::i;:::-;:38;51301:117;;;;-1:-1:-1;;;51301:117:0;;;;;;;:::i;:::-;51436:9;51431:108;51455:14;51451:1;:18;51431:108;;;51491:36;51501:10;51513:13;:11;:13::i;51491:36::-;51471:3;;;;:::i;:::-;;;;51431:108;;26515:328;26690:41;26709:12;:10;:12::i;:::-;26723:7;26690:18;:41::i;:::-;26682:103;;;;-1:-1:-1;;;26682:103:0;;;;;;;:::i;:::-;26796:39;26810:4;26816:2;26820:7;26829:5;26796:13;:39::i;:::-;26515:328;;;;:::o;52777:880::-;52895:13;52948:16;52956:7;52948;:16::i;:::-;52926:113;;;;-1:-1:-1;;;52926:113:0;;;;;;;:::i;:::-;53052:23;53078:19;;;:10;:19;;;;;53052:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53108:18;53129:10;:8;:10::i;:::-;53108:31;;53221:4;53215:18;53237:1;53215:23;53211:72;;;-1:-1:-1;53262:9:0;-1:-1:-1;53255:16:0;;53211:72;53387:23;;:27;53383:108;;53462:4;53468:9;53445:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53431:48;;;;;;53383:108;53623:4;53629:18;:7;:16;:18::i;:::-;53606:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53592:57;;;;52777:880;;;:::o;49817:28::-;;;;:::o;51554:704::-;2069:12;:10;:12::i;:::-;-1:-1:-1;;;;;2058:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2058:23:0;;2050:68;;;;-1:-1:-1;;;2050:68:0;;;;;;;:::i;:::-;51619:13:::1;::::0;:18;51611:66:::1;;;;-1:-1:-1::0;;;51611:66:0::1;;;;;;;:::i;:::-;51696:18;::::0;51688:71:::1;;;;-1:-1:-1::0;;;51688:71:0::1;;;;;;;:::i;:::-;51829:10;::::0;51806:18:::1;::::0;51788:51:::1;::::0;51829:10;51796:29:::1;51788:51;:::i;:::-;51772:13;:67:::0;51992:18:::1;::::0;52014:3:::1;::::0;51975:36:::1;::::0;:12:::1;::::0;:16:::1;:36::i;:::-;:42;51971:140;;;52089:10;::::0;52068:16:::1;52083:1;52068:12;:16;:::i;:::-;52050:49;::::0;;52058:27:::1;52050:49;:::i;:::-;52034:13;:65:::0;51971:140:::1;52168:13;::::0;52164:87:::1;;52219:13;::::0;:20:::1;::::0;52237:1:::1;52219:17;:20::i;:::-;52203:13;:36:::0;51554:704::o;49852:33::-;;;;:::o;25618:164::-;-1:-1:-1;;;;;25739:25:0;;;25715:4;25739:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25618:164::o;49784:24::-;;;;;;:::o;2738:192::-;2069:12;:10;:12::i;:::-;-1:-1:-1;;;;;2058:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2058:23:0;;2050:68;;;;-1:-1:-1;;;2050:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2827:22:0;::::1;2819:73;;;;-1:-1:-1::0;;;2819:73:0::1;;;;;;;:::i;:::-;2903:19;2913:8;2903:9;:19::i;:::-;2738:192:::0;:::o;22455:305::-;22557:4;-1:-1:-1;;;;;;22594:40:0;;-1:-1:-1;;;22594:40:0;;:105;;-1:-1:-1;;;;;;;22651:48:0;;-1:-1:-1;;;22651:48:0;22594:105;:158;;;;22716:36;22740:11;22716:23;:36::i;28353:127::-;28418:4;28442:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28442:16:0;:30;;;28353:127::o;657:98::-;737:10;657:98;:::o;32335:174::-;32410:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32410:29:0;-1:-1:-1;;;;;32410:29:0;;;;;;;;:24;;32464:23;32410:24;32464:14;:23::i;:::-;-1:-1:-1;;;;;32455:46:0;;;;;;;;;;;32335:174;;:::o;28647:348::-;28740:4;28765:16;28773:7;28765;:16::i;:::-;28757:73;;;;-1:-1:-1;;;28757:73:0;;;;;;;:::i;:::-;28841:13;28857:23;28872:7;28857:14;:23::i;:::-;28841:39;;28910:5;-1:-1:-1;;;;;28899:16:0;:7;-1:-1:-1;;;;;28899:16:0;;:51;;;;28943:7;-1:-1:-1;;;;;28919:31:0;:20;28931:7;28919:11;:20::i;:::-;-1:-1:-1;;;;;28919:31:0;;28899:51;:87;;;;28954:32;28971:5;28978:7;28954:16;:32::i;:::-;28891:96;28647:348;-1:-1:-1;;;;28647:348:0:o;31639:578::-;31798:4;-1:-1:-1;;;;;31771:31:0;:23;31786:7;31771:14;:23::i;:::-;-1:-1:-1;;;;;31771:31:0;;31763:85;;;;-1:-1:-1;;;31763:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31867:16:0;;31859:65;;;;-1:-1:-1;;;31859:65:0;;;;;;;:::i;:::-;31937:39;31958:4;31964:2;31968:7;31937:20;:39::i;:::-;32041:29;32058:1;32062:7;32041:8;:29::i;:::-;-1:-1:-1;;;;;32083:15:0;;;;;;:9;:15;;;;;:20;;32102:1;;32083:15;:20;;32102:1;;32083:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32114:13:0;;;;;;:9;:13;;;;;:18;;32131:1;;32114:13;:18;;32131:1;;32114:18;:::i;:::-;;;;-1:-1:-1;;32143:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32143:21:0;-1:-1:-1;;;;;32143:21:0;;;;;;;;;32182:27;;32143:16;;32182:27;;;;;;;31639:578;;;:::o;29337:110::-;29413:26;29423:2;29427:7;29413:26;;;;;;;;;;;;:9;:26::i;2938:173::-;3013:6;;;-1:-1:-1;;;;;3030:17:0;;;-1:-1:-1;;;;;;3030:17:0;;;;;;;3063:40;;3013:6;;;3030:17;3013:6;;3063:40;;2994:16;;3063:40;2938:173;;:::o;45290:98::-;45348:7;45375:5;45379:1;45375;:5;:::i;:::-;45368:12;45290:98;-1:-1:-1;;;45290:98:0:o;46028:::-;46086:7;46113:5;46117:1;46113;:5;:::i;27725:315::-;27882:28;27892:4;27898:2;27902:7;27882:9;:28::i;:::-;27929:48;27952:4;27958:2;27962:7;27971:5;27929:22;:48::i;:::-;27921:111;;;;-1:-1:-1;;;27921:111:0;;;;;;;:::i;52456:117::-;52516:13;52549:16;52542:23;;;;;:::i;11251:723::-;11307:13;11528:10;11524:53;;-1:-1:-1;11555:10:0;;;;;;;;;;;;-1:-1:-1;;;11555:10:0;;;;;;11524:53;11602:5;11587:12;11643:78;11650:9;;11643:78;;11676:8;;;;:::i;:::-;;-1:-1:-1;11699:10:0;;-1:-1:-1;11707:2:0;11699:10;;:::i;:::-;;;11643:78;;;11731:19;11763:6;11753:17;;;;;;-1:-1:-1;;;11753:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11753:17:0;;11731:39;;11781:154;11788:10;;11781:154;;11815:11;11825:1;11815:11;;:::i;:::-;;-1:-1:-1;11884:10:0;11892:2;11884:5;:10;:::i;:::-;11871:24;;:2;:24;:::i;:::-;11858:39;;11841:6;11848;11841:14;;;;;;-1:-1:-1;;;11841:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;11841:56:0;;;;;;;;-1:-1:-1;11912:11:0;11921:2;11912:11;;:::i;:::-;;;11781:154;;45671:98;45729:7;45756:5;45760:1;45756;:5;:::i;21002:157::-;-1:-1:-1;;;;;;21111:40:0;;-1:-1:-1;;;21111:40:0;21002:157;;;:::o;38115:589::-;38259:45;38286:4;38292:2;38296:7;38259:26;:45::i;:::-;-1:-1:-1;;;;;38321:18:0;;38317:187;;38356:40;38388:7;38356:31;:40::i;:::-;38317:187;;;38426:2;-1:-1:-1;;;;;38418:10:0;:4;-1:-1:-1;;;;;38418:10:0;;38414:90;;38445:47;38478:4;38484:7;38445:32;:47::i;:::-;-1:-1:-1;;;;;38518:16:0;;38514:183;;38551:45;38588:7;38551:36;:45::i;:::-;38514:183;;;38624:4;-1:-1:-1;;;;;38618:10:0;:2;-1:-1:-1;;;;;38618:10:0;;38614:83;;38645:40;38673:2;38677:7;38645:27;:40::i;29674:321::-;29804:18;29810:2;29814:7;29804:5;:18::i;:::-;29855:54;29886:1;29890:2;29894:7;29903:5;29855:22;:54::i;:::-;29833:154;;;;-1:-1:-1;;;29833:154:0;;;;;;;:::i;33074:803::-;33229:4;33250:15;:2;-1:-1:-1;;;;;33250:13:0;;:15::i;:::-;33246:624;;;33302:2;-1:-1:-1;;;;;33286:36:0;;33323:12;:10;:12::i;:::-;33337:4;33343:7;33352:5;33286:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33286:72:0;;;;;;;;-1:-1:-1;;33286:72:0;;;;;;;;;;;;:::i;:::-;;;33282:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33532:13:0;;33528:272;;33575:60;;-1:-1:-1;;;33575:60:0;;;;;;;:::i;33528:272::-;33750:6;33744:13;33735:6;33731:2;33727:15;33720:38;33282:533;-1:-1:-1;;;;;;33409:55:0;-1:-1:-1;;;33409:55:0;;-1:-1:-1;33402:62:0;;33246:624;-1:-1:-1;33854:4:0;33074:803;;;;;;:::o;39427:164::-;39531:10;:17;;39504:24;;;;:15;:24;;;;;:44;;;39559:24;;;;;;;;;;;;39427:164::o;40218:988::-;40484:22;40534:1;40509:22;40526:4;40509:16;:22::i;:::-;:26;;;;:::i;:::-;40546:18;40567:26;;;:17;:26;;;;;;40484:51;;-1:-1:-1;40700:28:0;;;40696:328;;-1:-1:-1;;;;;40767:18:0;;40745:19;40767:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40818:30;;;;;;:44;;;40935:30;;:17;:30;;;;;:43;;;40696:328;-1:-1:-1;41120:26:0;;;;:17;:26;;;;;;;;41113:33;;;-1:-1:-1;;;;;41164:18:0;;;;;:12;:18;;;;;:34;;;;;;;41157:41;40218:988::o;41501:1079::-;41779:10;:17;41754:22;;41779:21;;41799:1;;41779:21;:::i;:::-;41811:18;41832:24;;;:15;:24;;;;;;42205:10;:26;;41754:46;;-1:-1:-1;41832:24:0;;41754:46;;42205:26;;;;-1:-1:-1;;;42205:26:0;;;;;;;;;;;;;;;;;42183:48;;42269:11;42244:10;42255;42244:22;;;;;;-1:-1:-1;;;42244:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;42349:28;;;:15;:28;;;;;;;:41;;;42521:24;;;;;42514:31;42556:10;:16;;;;;-1:-1:-1;;;42556:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;41501:1079;;;;:::o;39005:221::-;39090:14;39107:20;39124:2;39107:16;:20::i;:::-;-1:-1:-1;;;;;39138:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39183:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39005:221:0:o;30331:382::-;-1:-1:-1;;;;;30411:16:0;;30403:61;;;;-1:-1:-1;;;30403:61:0;;;;;;;:::i;:::-;30484:16;30492:7;30484;:16::i;:::-;30483:17;30475:58;;;;-1:-1:-1;;;30475:58:0;;;;;;;:::i;:::-;30546:45;30575:1;30579:2;30583:7;30546:20;:45::i;:::-;-1:-1:-1;;;;;30604:13:0;;;;;;:9;:13;;;;;:18;;30621:1;;30604:13;:18;;30621:1;;30604:18;:::i;:::-;;;;-1:-1:-1;;30633:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30633:21:0;-1:-1:-1;;;;;30633:21:0;;;;;;;;30672:33;;30633:16;;;30672:33;;30633:16;;30672:33;30331:382;;:::o;3855:387::-;4178:20;4226:8;;;3855:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:257::-;;3098:2;3086:9;3077:7;3073:23;3069:32;3066:2;;;3119:6;3111;3104:22;3066:2;3163:9;3150:23;3182:32;3208:5;3182:32;:::i;3249:261::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:32;3474:5;3448:32;:::i;3515:482::-;;3637:2;3625:9;3616:7;3612:23;3608:32;3605:2;;;3658:6;3650;3643:22;3605:2;3703:9;3690:23;3736:18;3728:6;3725:30;3722:2;;;3773:6;3765;3758:22;3722:2;3801:22;;3854:4;3846:13;;3842:27;-1:-1:-1;3832:2:1;;3888:6;3880;3873:22;3832:2;3916:75;3983:7;3978:2;3965:16;3960:2;3956;3952:11;3916:75;:::i;4002:190::-;;4114:2;4102:9;4093:7;4089:23;4085:32;4082:2;;;4135:6;4127;4120:22;4082:2;-1:-1:-1;4163:23:1;;4072:120;-1:-1:-1;4072:120:1:o;4197:259::-;;4278:5;4272:12;4305:6;4300:3;4293:19;4321:63;4377:6;4370:4;4365:3;4361:14;4354:4;4347:5;4343:16;4321:63;:::i;:::-;4438:2;4417:15;-1:-1:-1;;4413:29:1;4404:39;;;;4445:4;4400:50;;4248:208;-1:-1:-1;;4248:208:1:o;4461:470::-;;4678:6;4672:13;4694:53;4740:6;4735:3;4728:4;4720:6;4716:17;4694:53;:::i;:::-;4810:13;;4769:16;;;;4832:57;4810:13;4769:16;4866:4;4854:17;;4832:57;:::i;:::-;4905:20;;4648:283;-1:-1:-1;;;;4648:283:1:o;4936:203::-;-1:-1:-1;;;;;5100:32:1;;;;5082:51;;5070:2;5055:18;;5037:102::o;5144:490::-;-1:-1:-1;;;;;5413:15:1;;;5395:34;;5465:15;;5460:2;5445:18;;5438:43;5512:2;5497:18;;5490:34;;;5560:3;5555:2;5540:18;;5533:31;;;5144:490;;5581:47;;5608:19;;5600:6;5581:47;:::i;:::-;5573:55;5347:287;-1:-1:-1;;;;;;5347:287:1:o;5639:187::-;5804:14;;5797:22;5779:41;;5767:2;5752:18;;5734:92::o;5831:221::-;;5980:2;5969:9;5962:21;6000:46;6042:2;6031:9;6027:18;6019:6;6000:46;:::i;6057:399::-;6259:2;6241:21;;;6298:2;6278:18;;;6271:30;6337:34;6332:2;6317:18;;6310:62;-1:-1:-1;;;6403:2:1;6388:18;;6381:33;6446:3;6431:19;;6231:225::o;6461:356::-;6663:2;6645:21;;;6682:18;;;6675:30;6741:34;6736:2;6721:18;;6714:62;6808:2;6793:18;;6635:182::o;6822:415::-;7024:2;7006:21;;;7063:2;7043:18;;;7036:30;7102:34;7097:2;7082:18;;7075:62;-1:-1:-1;;;7168:2:1;7153:18;;7146:49;7227:3;7212:19;;6996:241::o;7242:407::-;7444:2;7426:21;;;7483:2;7463:18;;;7456:30;7522:34;7517:2;7502:18;;7495:62;-1:-1:-1;;;7588:2:1;7573:18;;7566:41;7639:3;7624:19;;7416:233::o;7654:414::-;7856:2;7838:21;;;7895:2;7875:18;;;7868:30;7934:34;7929:2;7914:18;;7907:62;-1:-1:-1;;;8000:2:1;7985:18;;7978:48;8058:3;8043:19;;7828:240::o;8073:402::-;8275:2;8257:21;;;8314:2;8294:18;;;8287:30;8353:34;8348:2;8333:18;;8326:62;-1:-1:-1;;;8419:2:1;8404:18;;8397:36;8465:3;8450:19;;8247:228::o;8480:405::-;8682:2;8664:21;;;8721:2;8701:18;;;8694:30;8760:34;8755:2;8740:18;;8733:62;-1:-1:-1;;;8826:2:1;8811:18;;8804:39;8875:3;8860:19;;8654:231::o;8890:352::-;9092:2;9074:21;;;9131:2;9111:18;;;9104:30;9170;9165:2;9150:18;;9143:58;9233:2;9218:18;;9064:178::o;9247:400::-;9449:2;9431:21;;;9488:2;9468:18;;;9461:30;9527:34;9522:2;9507:18;;9500:62;-1:-1:-1;;;9593:2:1;9578:18;;9571:34;9637:3;9622:19;;9421:226::o;9652:349::-;9854:2;9836:21;;;9893:2;9873:18;;;9866:30;9932:27;9927:2;9912:18;;9905:55;9992:2;9977:18;;9826:175::o;10006:408::-;10208:2;10190:21;;;10247:2;10227:18;;;10220:30;10286:34;10281:2;10266:18;;10259:62;-1:-1:-1;;;10352:2:1;10337:18;;10330:42;10404:3;10389:19;;10180:234::o;10419:353::-;10621:2;10603:21;;;10660:2;10640:18;;;10633:30;10699:31;10694:2;10679:18;;10672:59;10763:2;10748:18;;10593:179::o;10777:420::-;10979:2;10961:21;;;11018:2;10998:18;;;10991:30;11057:34;11052:2;11037:18;;11030:62;11128:26;11123:2;11108:18;;11101:54;11187:3;11172:19;;10951:246::o;11202:406::-;11404:2;11386:21;;;11443:2;11423:18;;;11416:30;11482:34;11477:2;11462:18;;11455:62;-1:-1:-1;;;11548:2:1;11533:18;;11526:40;11598:3;11583:19;;11376:232::o;11613:405::-;11815:2;11797:21;;;11854:2;11834:18;;;11827:30;11893:34;11888:2;11873:18;;11866:62;-1:-1:-1;;;11959:2:1;11944:18;;11937:39;12008:3;11993:19;;11787:231::o;12023:353::-;12225:2;12207:21;;;12264:2;12244:18;;;12237:30;12303:31;12298:2;12283:18;;12276:59;12367:2;12352:18;;12197:179::o;12381:356::-;12583:2;12565:21;;;12602:18;;;12595:30;12661:34;12656:2;12641:18;;12634:62;12728:2;12713:18;;12555:182::o;12742:408::-;12944:2;12926:21;;;12983:2;12963:18;;;12956:30;13022:34;13017:2;13002:18;;12995:62;-1:-1:-1;;;13088:2:1;13073:18;;13066:42;13140:3;13125:19;;12916:234::o;13155:399::-;13357:2;13339:21;;;13396:2;13376:18;;;13369:30;13435:34;13430:2;13415:18;;13408:62;-1:-1:-1;;;13501:2:1;13486:18;;13479:33;13544:3;13529:19;;13329:225::o;13559:356::-;13761:2;13743:21;;;13780:18;;;13773:30;13839:34;13834:2;13819:18;;13812:62;13906:2;13891:18;;13733:182::o;13920:405::-;14122:2;14104:21;;;14161:2;14141:18;;;14134:30;14200:34;14195:2;14180:18;;14173:62;-1:-1:-1;;;14266:2:1;14251:18;;14244:39;14315:3;14300:19;;14094:231::o;14330:411::-;14532:2;14514:21;;;14571:2;14551:18;;;14544:30;14610:34;14605:2;14590:18;;14583:62;-1:-1:-1;;;14676:2:1;14661:18;;14654:45;14731:3;14716:19;;14504:237::o;14746:397::-;14948:2;14930:21;;;14987:2;14967:18;;;14960:30;15026:34;15021:2;15006:18;;14999:62;-1:-1:-1;;;15092:2:1;15077:18;;15070:31;15133:3;15118:19;;14920:223::o;15148:413::-;15350:2;15332:21;;;15389:2;15369:18;;;15362:30;15428:34;15423:2;15408:18;;15401:62;-1:-1:-1;;;15494:2:1;15479:18;;15472:47;15551:3;15536:19;;15322:239::o;15566:408::-;15768:2;15750:21;;;15807:2;15787:18;;;15780:30;15846:34;15841:2;15826:18;;15819:62;-1:-1:-1;;;15912:2:1;15897:18;;15890:42;15964:3;15949:19;;15740:234::o;15979:399::-;16181:2;16163:21;;;16220:2;16200:18;;;16193:30;16259:34;16254:2;16239:18;;16232:62;-1:-1:-1;;;16325:2:1;16310:18;;16303:33;16368:3;16353:19;;16153:225::o;16383:356::-;16585:2;16567:21;;;16604:18;;;16597:30;16663:34;16658:2;16643:18;;16636:62;16730:2;16715:18;;16557:182::o;16744:177::-;16890:25;;;16878:2;16863:18;;16845:76::o;16926:128::-;;16997:1;16993:6;16990:1;16987:13;16984:2;;;17003:18;;:::i;:::-;-1:-1:-1;17039:9:1;;16974:80::o;17059:120::-;;17125:1;17115:2;;17130:18;;:::i;:::-;-1:-1:-1;17164:9:1;;17105:74::o;17184:168::-;;17290:1;17286;17282:6;17278:14;17275:1;17272:21;17267:1;17260:9;17253:17;17249:45;17246:2;;;17297:18;;:::i;:::-;-1:-1:-1;17337:9:1;;17236:116::o;17357:125::-;;17425:1;17422;17419:8;17416:2;;;17430:18;;:::i;:::-;-1:-1:-1;17467:9:1;;17406:76::o;17487:258::-;17559:1;17569:113;17583:6;17580:1;17577:13;17569:113;;;17659:11;;;17653:18;17640:11;;;17633:39;17605:2;17598:10;17569:113;;;17700:6;17697:1;17694:13;17691:2;;;-1:-1:-1;;17735:1:1;17717:16;;17710:27;17540:205::o;17750:380::-;17835:1;17825:12;;17882:1;17872:12;;;17893:2;;17947:4;17939:6;17935:17;17925:27;;17893:2;18000;17992:6;17989:14;17969:18;17966:38;17963:2;;;18046:10;18041:3;18037:20;18034:1;18027:31;18081:4;18078:1;18071:15;18109:4;18106:1;18099:15;17963:2;;17805:325;;;:::o;18135:135::-;;-1:-1:-1;;18195:17:1;;18192:2;;;18215:18;;:::i;:::-;-1:-1:-1;18262:1:1;18251:13;;18182:88::o;18275:112::-;;18333:1;18323:2;;18338:18;;:::i;:::-;-1:-1:-1;18372:9:1;;18313:74::o;18392:127::-;18453:10;18448:3;18444:20;18441:1;18434:31;18484:4;18481:1;18474:15;18508:4;18505:1;18498:15;18524:127;18585:10;18580:3;18576:20;18573:1;18566:31;18616:4;18613:1;18606:15;18640:4;18637:1;18630:15;18656:127;18717:10;18712:3;18708:20;18705:1;18698:31;18748:4;18745:1;18738:15;18772:4;18769:1;18762:15;18788:133;-1:-1:-1;;;;;;18864:32:1;;18854:43;;18844:2;;18911:1;18908;18901:12

Swarm Source

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