ETH Price: $2,406.85 (-0.73%)

Token

BarelyBears10k (BB)
 

Overview

Max Total Supply

409 BB

Holders

146

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
4 BB
0xd6aacb647584229cf56b502594d9e72b1c53898c
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:
BarelyBears10k

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.3.2 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
 * @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/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        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.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/ERC721Enumerable.sol



pragma solidity ^0.8.0;



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


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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/interfaces/IERC2981.sol



pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}


/**Start of Barely Bears Contact */


//██████╗  █████╗ ██████╗ ███████╗██╗  ██╗   ██╗    ██████╗ ███████╗ █████╗ ██████╗ ███████╗
//██╔══██╗██╔══██╗██╔══██╗██╔════╝██║  ╚██╗ ██╔╝    ██╔══██╗██╔════╝██╔══██╗██╔══██╗██╔════╝
//██████╔╝███████║██████╔╝█████╗  ██║   ╚████╔╝     ██████╔╝█████╗  ███████║██████╔╝███████╗
//██╔══██╗██╔══██║██╔══██╗██╔══╝  ██║    ╚██╔╝      ██╔══██╗██╔══╝  ██╔══██║██╔══██╗╚════██║
//██████╔╝██║  ██║██║  ██║███████╗███████╗██║       ██████╔╝███████╗██║  ██║██║  ██║███████║
//╚═════╝ ╚═╝  ╚═╝╚═╝  ╚═╝╚══════╝╚══════╝╚═╝       ╚═════╝ ╚══════╝╚═╝  ╚═╝╚═╝  ╚═╝╚══════╝
                                                                                          
//BarelyBears is the a generative NFT collection featuring 10,000 hand-painted bear portraits from a live human-bear


pragma solidity >=0.7.0 <0.9.0;

contract BarelyBears10k is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.05 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxWhitelistMintAmount = 4;
  uint256 public maxMintAmount = 10;
  uint256 public nftPerAddressLimit = 4;
  uint256 private _tokenId = 0;
  uint16 internal royalty = 1000; // base 10000, 10%
  uint16 public constant BASE = 10000;
  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  address public constant founderAddress = 0x9286c3d14C235Bf404a335a59F04fF806f6d6944;
  address public constant projectAddress = 0x08269c0FA570C4Bc91cF054bFEdECe2A3CC9442b;
  address public constant devAddress = 0x739A49E67D46A2f0f60217901CFd6a86E816Cc62;
  address public constant artist1Address = 0x4ba4a533D9355BbF0cE56BAF9fe15E2cccc83132;
  address public constant artist2Address = 0x82341fB007544721efa2e3E74fA7421888B10489;
  mapping(address => uint256) public addressMintedBalance;
  
  
  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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


    struct FreeBearUser {
        uint maxMint;       
    }

    mapping (address => FreeBearUser ) wlUsers;
        address[] public userAccounts;
    
    
    function resetFreeBearUsers (address _address) public {
        FreeBearUser storage wlUser = wlUsers[_address];       
        wlUser.maxMint = 0;
    }
    
    function getFreeBearUserAccount(address _address) view public returns (uint) {
        return (wlUsers[_address].maxMint);
    }

  function normalMint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }

  function freeMint() public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    uint256 cost = 0;
    uint256 _mintAmount = getFreeBearUserAccount(msg.sender);
    require(_mintAmount > 0, "you are not entitled for a free bear");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
    resetFreeBearUsers(msg.sender);
  }

    function whitelistMint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxWhitelistMintAmount, "cannot mint more than 4 NFT on whitelist");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }

  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setMaxWhitelistMintAmount(uint256 _newmaxWhitelistMintAmount) public onlyOwner {
    maxWhitelistMintAmount = _newmaxWhitelistMintAmount;
  }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }


  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setFreeBearUsers (address _address, uint _maxMint) public onlyOwner {
     FreeBearUser storage wlUser = wlUsers[_address];       
     wlUser.maxMint = _maxMint;
  }
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
 
  function withdrawAll() public onlyOwner {
      uint256 balance = address(this).balance;
      require(balance > 0, "Insufficent balance");
      _widthdraw(projectAddress, ((balance * 20) / 100));
      _widthdraw(devAddress, ((balance * 10) / 100));
      _widthdraw(artist1Address, ((balance * 10) / 100));
      _widthdraw(artist2Address, ((balance * 10) / 100));
      _widthdraw(founderAddress, address(this).balance);
  }

  function _widthdraw(address _address, uint256 _amount) private {
     (bool success, ) = _address.call{ value: _amount }("");
     require(success, "Failed to widthdraw Ether");
   }

       /// @notice Calculate the royalty payment
    /// @param _salePrice the sale price of the token
    function royaltyInfo(uint256, uint256 _salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount)
    {
        return (address(this), (_salePrice * royalty) / BASE);
    }

    /// @dev set the royalty
    /// @param _royalty the royalty in base 10000, 500 = 5%
    function setRoyalty(uint16 _royalty) public virtual onlyOwner {
        require(_royalty >= 0 && _royalty <= 1000, 'Royalty must be between 0% and 10%.');

        royalty = _royalty;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":"BASE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":[],"name":"artist1Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"artist2Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"founderAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","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":"_address","type":"address"}],"name":"getFreeBearUserAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"normalMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"resetFreeBearUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setFreeBearUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxWhitelistMintAmount","type":"uint256"}],"name":"setMaxWhitelistMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_royalty","type":"uint16"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"userAccounts","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000218565b5066b1a2bc2ec50000600e55612710600f5560046010819055600a60115560125560006013556014805464ffffffffff19166401000003e81790553480156200007057600080fd5b506040516200387f3803806200387f833981016040819052620000939162000375565b835184908490620000ac90600090602085019062000218565b508051620000c290600190602084019062000218565b505050620000df620000d9620000ff60201b60201c565b62000103565b620000ea8262000155565b620000f581620001bd565b5050505062000481565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001a45760405162461bcd60e51b815260206004820181905260248201526000805160206200385f83398151915260448201526064015b60405180910390fd5b8051620001b990600b90602084019062000218565b5050565b600a546001600160a01b03163314620002085760405162461bcd60e51b815260206004820181905260248201526000805160206200385f83398151915260448201526064016200019b565b8051620001b990600d9060208401905b82805462000226906200042e565b90600052602060002090601f0160209004810192826200024a576000855562000295565b82601f106200026557805160ff191683800117855562000295565b8280016001018555821562000295579182015b828111156200029557825182559160200191906001019062000278565b50620002a3929150620002a7565b5090565b5b80821115620002a35760008155600101620002a8565b600082601f830112620002d057600080fd5b81516001600160401b0380821115620002ed57620002ed6200046b565b604051601f8301601f19908116603f011681019082821181831017156200031857620003186200046b565b816040528381526020925086838588010111156200033557600080fd5b600091505b838210156200035957858201830151818301840152908201906200033a565b838211156200036b5760008385830101525b9695505050505050565b600080600080608085870312156200038c57600080fd5b84516001600160401b0380821115620003a457600080fd5b620003b288838901620002be565b95506020870151915080821115620003c957600080fd5b620003d788838901620002be565b94506040870151915080821115620003ee57600080fd5b620003fc88838901620002be565b935060608701519150808211156200041357600080fd5b506200042287828801620002be565b91505092959194509250565b600181811c908216806200044357607f821691505b602082108114156200046557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6133ce80620004916000396000f3fe6080604052600436106103a25760003560e01c8063616d5058116101e7578063b10f7bba1161010d578063da3ef23f116100a0578063edec5f271161006f578063edec5f2714610b13578063f2c4ce1e14610b33578063f2fde38b14610b53578063f96407fa14610b7357600080fd5b8063da3ef23f14610a6e578063e985e9c514610a8e578063eb5021f814610ad7578063ec342ad014610aea57600080fd5b8063c6682862116100dc578063c668286214610a03578063c87b56dd14610a18578063d0eb26b014610a38578063d5abeb0114610a5857600080fd5b8063b10f7bba14610985578063b88d4fde146109ad578063ba4e5c49146109cd578063ba7d2c76146109ed57600080fd5b8063853828b61161018557806395d89b411161015457806395d89b41146109195780639c70b5121461092e578063a22cb46514610950578063a475b5dd1461097057600080fd5b8063853828b6146108b3578063868ff4a2146108c85780638c9fe65e146108db5780638da5cb5b146108fb57600080fd5b806370a08231116101c157806370a0823114610829578063715018a6146108495780637f00c7a61461085e5780637f451eee1461087e57600080fd5b8063616d5058146107d45780636352211e146107f45780636c0360eb1461081457600080fd5b806336e79a5a116102cc57806344a0d68a1161026a57806355f804b31161023957806355f804b3146107565780635a7c8f3c146107765780635b70ea9f146107ac5780635c975abb146107b457600080fd5b806344a0d68a146106cd57806346bb2833146106ed5780634f6ccce714610715578063518302271461073557600080fd5b80633c952764116102a65780633c952764146106385780633cf96af11461065857806342842e0e14610680578063438b6300146106a057600080fd5b806336e79a5a146105d05780633ad10ef6146105f05780633af32abf1461061857600080fd5b806313faede611610344578063239c70ae11610313578063239c70ae1461053b57806323b872dd146105515780632a55205a146105715780632f745c59146105b057600080fd5b806313faede6146104b557806318160ddd146104d957806318cae269146104ee57806319c8b85f1461051b57600080fd5b806306fdde031161038057806306fdde031461043e578063081812fc14610460578063081c8c4414610480578063095ea7b31461049557600080fd5b806301ffc9a7146103a757806302061b24146103dc57806302329a291461041c575b600080fd5b3480156103b357600080fd5b506103c76103c2366004612e0e565b610b89565b60405190151581526020015b60405180910390f35b3480156103e857600080fd5b506104047382341fb007544721efa2e3e74fa7421888b1048981565b6040516001600160a01b0390911681526020016103d3565b34801561042857600080fd5b5061043c610437366004612df3565b610bb4565b005b34801561044a57600080fd5b50610453610c03565b6040516103d39190613061565b34801561046c57600080fd5b5061040461047b366004612eb5565b610c95565b34801561048c57600080fd5b50610453610d2a565b3480156104a157600080fd5b5061043c6104b0366004612d54565b610db8565b3480156104c157600080fd5b506104cb600e5481565b6040519081526020016103d3565b3480156104e557600080fd5b506008546104cb565b3480156104fa57600080fd5b506104cb610509366004612c24565b60166020526000908152604090205481565b34801561052757600080fd5b5061043c610536366004612eb5565b610ece565b34801561054757600080fd5b506104cb60115481565b34801561055d57600080fd5b5061043c61056c366004612c72565b610efd565b34801561057d57600080fd5b5061059161058c366004612ece565b610f2e565b604080516001600160a01b0390931683526020830191909152016103d3565b3480156105bc57600080fd5b506104cb6105cb366004612d54565b610f5f565b3480156105dc57600080fd5b5061043c6105eb366004612e91565b610ff5565b3480156105fc57600080fd5b5061040473739a49e67d46a2f0f60217901cfd6a86e816cc6281565b34801561062457600080fd5b506103c7610633366004612c24565b611099565b34801561064457600080fd5b5061043c610653366004612df3565b611103565b34801561066457600080fd5b506104047308269c0fa570c4bc91cf054bfedece2a3cc9442b81565b34801561068c57600080fd5b5061043c61069b366004612c72565b61114d565b3480156106ac57600080fd5b506106c06106bb366004612c24565b611168565b6040516103d3919061301d565b3480156106d957600080fd5b5061043c6106e8366004612eb5565b61120a565b3480156106f957600080fd5b50610404739286c3d14c235bf404a335a59f04ff806f6d694481565b34801561072157600080fd5b506104cb610730366004612eb5565b611239565b34801561074157600080fd5b506014546103c7906301000000900460ff1681565b34801561076257600080fd5b5061043c610771366004612e48565b6112cc565b34801561078257600080fd5b506104cb610791366004612c24565b6001600160a01b031660009081526017602052604090205490565b61043c61130d565b3480156107c057600080fd5b506014546103c79062010000900460ff1681565b3480156107e057600080fd5b506104046107ef366004612eb5565b61149f565b34801561080057600080fd5b5061040461080f366004612eb5565b6114c9565b34801561082057600080fd5b50610453611540565b34801561083557600080fd5b506104cb610844366004612c24565b61154d565b34801561085557600080fd5b5061043c6115d4565b34801561086a57600080fd5b5061043c610879366004612eb5565b61160a565b34801561088a57600080fd5b5061043c610899366004612c24565b6001600160a01b0316600090815260176020526040812055565b3480156108bf57600080fd5b5061043c611639565b61043c6108d6366004612eb5565b61176b565b3480156108e757600080fd5b5061043c6108f6366004612d54565b611a05565b34801561090757600080fd5b50600a546001600160a01b0316610404565b34801561092557600080fd5b50610453611a4b565b34801561093a57600080fd5b506014546103c790640100000000900460ff1681565b34801561095c57600080fd5b5061043c61096b366004612d2a565b611a5a565b34801561097c57600080fd5b5061043c611b1f565b34801561099157600080fd5b50610404734ba4a533d9355bbf0ce56baf9fe15e2cccc8313281565b3480156109b957600080fd5b5061043c6109c8366004612cae565b611b5e565b3480156109d957600080fd5b506104046109e8366004612eb5565b611b96565b3480156109f957600080fd5b506104cb60125481565b348015610a0f57600080fd5b50610453611ba6565b348015610a2457600080fd5b50610453610a33366004612eb5565b611bb3565b348015610a4457600080fd5b5061043c610a53366004612eb5565b611d34565b348015610a6457600080fd5b506104cb600f5481565b348015610a7a57600080fd5b5061043c610a89366004612e48565b611d63565b348015610a9a57600080fd5b506103c7610aa9366004612c3f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61043c610ae5366004612eb5565b611da0565b348015610af657600080fd5b50610b0061271081565b60405161ffff90911681526020016103d3565b348015610b1f57600080fd5b5061043c610b2e366004612d7e565b611edc565b348015610b3f57600080fd5b5061043c610b4e366004612e48565b611f1e565b348015610b5f57600080fd5b5061043c610b6e366004612c24565b611f5b565b348015610b7f57600080fd5b506104cb60105481565b60006001600160e01b0319821663780e9d6360e01b1480610bae5750610bae82611ff3565b92915050565b600a546001600160a01b03163314610be75760405162461bcd60e51b8152600401610bde9061313a565b60405180910390fd5b60148054911515620100000262ff000019909216919091179055565b606060008054610c12906132aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3e906132aa565b8015610c8b5780601f10610c6057610100808354040283529160200191610c8b565b820191906000526020600020905b815481529060010190602001808311610c6e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d0e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bde565b506000908152600460205260409020546001600160a01b031690565b600d8054610d37906132aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610d63906132aa565b8015610db05780601f10610d8557610100808354040283529160200191610db0565b820191906000526020600020905b815481529060010190602001808311610d9357829003601f168201915b505050505081565b6000610dc3826114c9565b9050806001600160a01b0316836001600160a01b03161415610e315760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bde565b336001600160a01b0382161480610e4d5750610e4d8133610aa9565b610ebf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bde565b610ec98383612043565b505050565b600a546001600160a01b03163314610ef85760405162461bcd60e51b8152600401610bde9061313a565b601055565b610f0733826120b1565b610f235760405162461bcd60e51b8152600401610bde906131cb565b610ec98383836121a8565b6014546000908190309061271090610f4a9061ffff1686613248565b610f549190613234565b915091509250929050565b6000610f6a8361154d565b8210610fcc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bde565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461101f5760405162461bcd60e51b8152600401610bde9061313a565b6103e88161ffff1611156110815760405162461bcd60e51b815260206004820152602360248201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160448201526218129760e91b6064820152608401610bde565b6014805461ffff191661ffff92909216919091179055565b6000805b6015548110156110fa57826001600160a01b0316601582815481106110c4576110c4613356565b6000918252602090912001546001600160a01b031614156110e85750600192915050565b806110f2816132e5565b91505061109d565b50600092915050565b600a546001600160a01b0316331461112d5760405162461bcd60e51b8152600401610bde9061313a565b601480549115156401000000000264ff0000000019909216919091179055565b610ec983838360405180602001604052806000815250611b5e565b606060006111758361154d565b905060008167ffffffffffffffff8111156111925761119261336c565b6040519080825280602002602001820160405280156111bb578160200160208202803683370190505b50905060005b82811015611202576111d38582610f5f565b8282815181106111e5576111e5613356565b6020908102919091010152806111fa816132e5565b9150506111c1565b509392505050565b600a546001600160a01b031633146112345760405162461bcd60e51b8152600401610bde9061313a565b600e55565b600061124460085490565b82106112a75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bde565b600882815481106112ba576112ba613356565b90600052602060002001549050919050565b600a546001600160a01b031633146112f65760405162461bcd60e51b8152600401610bde9061313a565b805161130990600b906020840190612a78565b5050565b60145462010000900460ff16156113365760405162461bcd60e51b8152600401610bde9061316f565b600061134160085490565b3360009081526017602052604081205491925090600081116113b15760405162461bcd60e51b8152602060048201526024808201527f796f7520617265206e6f7420656e7469746c656420666f7220612066726565206044820152633132b0b960e11b6064820152608401610bde565b6011548111156113d35760405162461bcd60e51b8152600401610bde906130f6565b600f546113e0828561321c565b11156113fe5760405162461bcd60e51b8152600401610bde906130c6565b600a546001600160a01b031633146114395761141a8183613248565b3410156114395760405162461bcd60e51b8152600401610bde9061319f565b60015b8181116114895733600090815260166020526040812080549161145e836132e5565b90915550611477905033611472838761321c565b612353565b80611481816132e5565b91505061143c565b5033600090815260176020526040812055505050565b601881815481106114af57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260408120546001600160a01b031680610bae5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bde565b600b8054610d37906132aa565b60006001600160a01b0382166115b85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bde565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146115fe5760405162461bcd60e51b8152600401610bde9061313a565b611608600061236d565b565b600a546001600160a01b031633146116345760405162461bcd60e51b8152600401610bde9061313a565b601155565b600a546001600160a01b031633146116635760405162461bcd60e51b8152600401610bde9061313a565b47806116a75760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b6044820152606401610bde565b6116db7308269c0fa570c4bc91cf054bfedece2a3cc9442b60646116cc846014613248565b6116d69190613234565b6123bf565b61170073739a49e67d46a2f0f60217901cfd6a86e816cc6260646116cc84600a613248565b611725734ba4a533d9355bbf0ce56baf9fe15e2cccc8313260646116cc84600a613248565b61174a7382341fb007544721efa2e3e74fa7421888b1048960646116cc84600a613248565b611768739286c3d14c235bf404a335a59f04ff806f6d6944476123bf565b50565b60145462010000900460ff16156117945760405162461bcd60e51b8152600401610bde9061316f565b600061179f60085490565b9050600082116117f15760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610bde565b6010548211156118545760405162461bcd60e51b815260206004820152602860248201527f63616e6e6f74206d696e74206d6f7265207468616e2034204e4654206f6e20776044820152671a1a5d195b1a5cdd60c21b6064820152608401610bde565b6011548211156118765760405162461bcd60e51b8152600401610bde906130f6565b600f54611883838361321c565b11156118a15760405162461bcd60e51b8152600401610bde906130c6565b600a546001600160a01b031633146119ba57601454640100000000900460ff1615156001141561198d576118d433611099565b6119205760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610bde565b3360009081526016602052604090205460125461193d848361321c565b111561198b5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610bde565b505b81600e5461199b9190613248565b3410156119ba5760405162461bcd60e51b8152600401610bde9061319f565b60015b828111610ec9573360009081526016602052604081208054916119df836132e5565b909155506119f3905033611472838561321c565b806119fd816132e5565b9150506119bd565b600a546001600160a01b03163314611a2f5760405162461bcd60e51b8152600401610bde9061313a565b6001600160a01b03909116600090815260176020526040902055565b606060018054610c12906132aa565b6001600160a01b038216331415611ab35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bde565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611b495760405162461bcd60e51b8152600401610bde9061313a565b6014805463ff00000019166301000000179055565b611b6833836120b1565b611b845760405162461bcd60e51b8152600401610bde906131cb565b611b9084848484612462565b50505050565b601581815481106114af57600080fd5b600c8054610d37906132aa565b6000818152600260205260409020546060906001600160a01b0316611c325760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bde565b6014546301000000900460ff16611cd557600d8054611c50906132aa565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7c906132aa565b8015611cc95780601f10611c9e57610100808354040283529160200191611cc9565b820191906000526020600020905b815481529060010190602001808311611cac57829003601f168201915b50505050509050919050565b6000611cdf612495565b90506000815111611cff5760405180602001604052806000815250611d2d565b80611d09846124a4565b600c604051602001611d1d93929190612f1c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611d5e5760405162461bcd60e51b8152600401610bde9061313a565b601255565b600a546001600160a01b03163314611d8d5760405162461bcd60e51b8152600401610bde9061313a565b805161130990600c906020840190612a78565b60145462010000900460ff1615611dc95760405162461bcd60e51b8152600401610bde9061316f565b6000611dd460085490565b905060008211611e265760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610bde565b601154821115611e485760405162461bcd60e51b8152600401610bde906130f6565b600f54611e55838361321c565b1115611e735760405162461bcd60e51b8152600401610bde906130c6565b600a546001600160a01b03163314611eb25781600e54611e939190613248565b341015611eb25760405162461bcd60e51b8152600401610bde9061319f565b60015b828111610ec957611eca33611472838561321c565b80611ed4816132e5565b915050611eb5565b600a546001600160a01b03163314611f065760405162461bcd60e51b8152600401610bde9061313a565b611f1260156000612afc565b610ec960158383612b1a565b600a546001600160a01b03163314611f485760405162461bcd60e51b8152600401610bde9061313a565b805161130990600d906020840190612a78565b600a546001600160a01b03163314611f855760405162461bcd60e51b8152600401610bde9061313a565b6001600160a01b038116611fea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bde565b6117688161236d565b60006001600160e01b031982166380ac58cd60e01b148061202457506001600160e01b03198216635b5e139f60e01b145b80610bae57506301ffc9a760e01b6001600160e01b0319831614610bae565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612078826114c9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661212a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bde565b6000612135836114c9565b9050806001600160a01b0316846001600160a01b031614806121705750836001600160a01b031661216584610c95565b6001600160a01b0316145b806121a057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166121bb826114c9565b6001600160a01b0316146122235760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bde565b6001600160a01b0382166122855760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bde565b6122908383836125a2565b61229b600082612043565b6001600160a01b03831660009081526003602052604081208054600192906122c4908490613267565b90915550506001600160a01b03821660009081526003602052604081208054600192906122f290849061321c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61130982826040518060200160405280600081525061265a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461240c576040519150601f19603f3d011682016040523d82523d6000602084013e612411565b606091505b5050905080610ec95760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f20776964746864726177204574686572000000000000006044820152606401610bde565b61246d8484846121a8565b6124798484848461268d565b611b905760405162461bcd60e51b8152600401610bde90613074565b6060600b8054610c12906132aa565b6060816124c85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124f257806124dc816132e5565b91506124eb9050600a83613234565b91506124cc565b60008167ffffffffffffffff81111561250d5761250d61336c565b6040519080825280601f01601f191660200182016040528015612537576020820181803683370190505b5090505b84156121a05761254c600183613267565b9150612559600a86613300565b61256490603061321c565b60f81b81838151811061257957612579613356565b60200101906001600160f81b031916908160001a90535061259b600a86613234565b945061253b565b6001600160a01b0383166125fd576125f881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612620565b816001600160a01b0316836001600160a01b03161461262057612620838261279a565b6001600160a01b03821661263757610ec981612837565b826001600160a01b0316826001600160a01b031614610ec957610ec982826128e6565b612664838361292a565b612671600084848461268d565b610ec95760405162461bcd60e51b8152600401610bde90613074565b60006001600160a01b0384163b1561278f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906126d1903390899088908890600401612fe0565b602060405180830381600087803b1580156126eb57600080fd5b505af192505050801561271b575060408051601f3d908101601f1916820190925261271891810190612e2b565b60015b612775573d808015612749576040519150601f19603f3d011682016040523d82523d6000602084013e61274e565b606091505b50805161276d5760405162461bcd60e51b8152600401610bde90613074565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121a0565b506001949350505050565b600060016127a78461154d565b6127b19190613267565b600083815260076020526040902054909150808214612804576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061284990600190613267565b6000838152600960205260408120546008805493945090928490811061287157612871613356565b90600052602060002001549050806008838154811061289257612892613356565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806128ca576128ca613340565b6001900381819060005260206000200160009055905550505050565b60006128f18361154d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166129805760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bde565b6000818152600260205260409020546001600160a01b0316156129e55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bde565b6129f1600083836125a2565b6001600160a01b0382166000908152600360205260408120805460019290612a1a90849061321c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612a84906132aa565b90600052602060002090601f016020900481019282612aa65760008555612aec565b82601f10612abf57805160ff1916838001178555612aec565b82800160010185558215612aec579182015b82811115612aec578251825591602001919060010190612ad1565b50612af8929150612b6d565b5090565b50805460008255906000526020600020908101906117689190612b6d565b828054828255906000526020600020908101928215612aec579160200282015b82811115612aec5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612b3a565b5b80821115612af85760008155600101612b6e565b600067ffffffffffffffff80841115612b9d57612b9d61336c565b604051601f8501601f19908116603f01168101908282118183101715612bc557612bc561336c565b81604052809350858152868686011115612bde57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612c0f57600080fd5b919050565b80358015158114612c0f57600080fd5b600060208284031215612c3657600080fd5b611d2d82612bf8565b60008060408385031215612c5257600080fd5b612c5b83612bf8565b9150612c6960208401612bf8565b90509250929050565b600080600060608486031215612c8757600080fd5b612c9084612bf8565b9250612c9e60208501612bf8565b9150604084013590509250925092565b60008060008060808587031215612cc457600080fd5b612ccd85612bf8565b9350612cdb60208601612bf8565b925060408501359150606085013567ffffffffffffffff811115612cfe57600080fd5b8501601f81018713612d0f57600080fd5b612d1e87823560208401612b82565b91505092959194509250565b60008060408385031215612d3d57600080fd5b612d4683612bf8565b9150612c6960208401612c14565b60008060408385031215612d6757600080fd5b612d7083612bf8565b946020939093013593505050565b60008060208385031215612d9157600080fd5b823567ffffffffffffffff80821115612da957600080fd5b818501915085601f830112612dbd57600080fd5b813581811115612dcc57600080fd5b8660208260051b8501011115612de157600080fd5b60209290920196919550909350505050565b600060208284031215612e0557600080fd5b611d2d82612c14565b600060208284031215612e2057600080fd5b8135611d2d81613382565b600060208284031215612e3d57600080fd5b8151611d2d81613382565b600060208284031215612e5a57600080fd5b813567ffffffffffffffff811115612e7157600080fd5b8201601f81018413612e8257600080fd5b6121a084823560208401612b82565b600060208284031215612ea357600080fd5b813561ffff81168114611d2d57600080fd5b600060208284031215612ec757600080fd5b5035919050565b60008060408385031215612ee157600080fd5b50508035926020909101359150565b60008151808452612f0881602086016020860161327e565b601f01601f19169290920160200192915050565b600084516020612f2f8285838a0161327e565b855191840191612f428184848a0161327e565b8554920191600090600181811c9080831680612f5f57607f831692505b858310811415612f7d57634e487b7160e01b85526022600452602485fd5b808015612f915760018114612fa257612fcf565b60ff19851688528388019550612fcf565b60008b81526020902060005b85811015612fc75781548a820152908401908801612fae565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061301390830184612ef0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561305557835183529284019291840191600101613039565b50909695505050505050565b602081526000611d2d6020830184612ef0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601690820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604082015260600190565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604082015260600190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561322f5761322f613314565b500190565b6000826132435761324361332a565b500490565b600081600019048311821515161561326257613262613314565b500290565b60008282101561327957613279613314565b500390565b60005b83811015613299578181015183820152602001613281565b83811115611b905750506000910152565b600181811c908216806132be57607f821691505b602082108114156132df57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132f9576132f9613314565b5060010190565b60008261330f5761330f61332a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461176857600080fdfea2646970667358221220a5d5c0f4fc9993cefc374308fc3fa462f2fa99115ea6cc964eb5fb1baa6517af64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000e426172656c79426561727331306b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000242420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d566f6b316a4a725354576d55764d6e3233686235556e65417753386d644d765a556b4669336f6d374c45684e2f00000000000000000000000000000000000000000000000000000000000000000000000000000000003c697066733a2f2f516d51344837686d6a7a7154457272544a4e5178475138676366686938754433716a6676396570396266426a48382f312e6a736f6e00000000

Deployed Bytecode

0x6080604052600436106103a25760003560e01c8063616d5058116101e7578063b10f7bba1161010d578063da3ef23f116100a0578063edec5f271161006f578063edec5f2714610b13578063f2c4ce1e14610b33578063f2fde38b14610b53578063f96407fa14610b7357600080fd5b8063da3ef23f14610a6e578063e985e9c514610a8e578063eb5021f814610ad7578063ec342ad014610aea57600080fd5b8063c6682862116100dc578063c668286214610a03578063c87b56dd14610a18578063d0eb26b014610a38578063d5abeb0114610a5857600080fd5b8063b10f7bba14610985578063b88d4fde146109ad578063ba4e5c49146109cd578063ba7d2c76146109ed57600080fd5b8063853828b61161018557806395d89b411161015457806395d89b41146109195780639c70b5121461092e578063a22cb46514610950578063a475b5dd1461097057600080fd5b8063853828b6146108b3578063868ff4a2146108c85780638c9fe65e146108db5780638da5cb5b146108fb57600080fd5b806370a08231116101c157806370a0823114610829578063715018a6146108495780637f00c7a61461085e5780637f451eee1461087e57600080fd5b8063616d5058146107d45780636352211e146107f45780636c0360eb1461081457600080fd5b806336e79a5a116102cc57806344a0d68a1161026a57806355f804b31161023957806355f804b3146107565780635a7c8f3c146107765780635b70ea9f146107ac5780635c975abb146107b457600080fd5b806344a0d68a146106cd57806346bb2833146106ed5780634f6ccce714610715578063518302271461073557600080fd5b80633c952764116102a65780633c952764146106385780633cf96af11461065857806342842e0e14610680578063438b6300146106a057600080fd5b806336e79a5a146105d05780633ad10ef6146105f05780633af32abf1461061857600080fd5b806313faede611610344578063239c70ae11610313578063239c70ae1461053b57806323b872dd146105515780632a55205a146105715780632f745c59146105b057600080fd5b806313faede6146104b557806318160ddd146104d957806318cae269146104ee57806319c8b85f1461051b57600080fd5b806306fdde031161038057806306fdde031461043e578063081812fc14610460578063081c8c4414610480578063095ea7b31461049557600080fd5b806301ffc9a7146103a757806302061b24146103dc57806302329a291461041c575b600080fd5b3480156103b357600080fd5b506103c76103c2366004612e0e565b610b89565b60405190151581526020015b60405180910390f35b3480156103e857600080fd5b506104047382341fb007544721efa2e3e74fa7421888b1048981565b6040516001600160a01b0390911681526020016103d3565b34801561042857600080fd5b5061043c610437366004612df3565b610bb4565b005b34801561044a57600080fd5b50610453610c03565b6040516103d39190613061565b34801561046c57600080fd5b5061040461047b366004612eb5565b610c95565b34801561048c57600080fd5b50610453610d2a565b3480156104a157600080fd5b5061043c6104b0366004612d54565b610db8565b3480156104c157600080fd5b506104cb600e5481565b6040519081526020016103d3565b3480156104e557600080fd5b506008546104cb565b3480156104fa57600080fd5b506104cb610509366004612c24565b60166020526000908152604090205481565b34801561052757600080fd5b5061043c610536366004612eb5565b610ece565b34801561054757600080fd5b506104cb60115481565b34801561055d57600080fd5b5061043c61056c366004612c72565b610efd565b34801561057d57600080fd5b5061059161058c366004612ece565b610f2e565b604080516001600160a01b0390931683526020830191909152016103d3565b3480156105bc57600080fd5b506104cb6105cb366004612d54565b610f5f565b3480156105dc57600080fd5b5061043c6105eb366004612e91565b610ff5565b3480156105fc57600080fd5b5061040473739a49e67d46a2f0f60217901cfd6a86e816cc6281565b34801561062457600080fd5b506103c7610633366004612c24565b611099565b34801561064457600080fd5b5061043c610653366004612df3565b611103565b34801561066457600080fd5b506104047308269c0fa570c4bc91cf054bfedece2a3cc9442b81565b34801561068c57600080fd5b5061043c61069b366004612c72565b61114d565b3480156106ac57600080fd5b506106c06106bb366004612c24565b611168565b6040516103d3919061301d565b3480156106d957600080fd5b5061043c6106e8366004612eb5565b61120a565b3480156106f957600080fd5b50610404739286c3d14c235bf404a335a59f04ff806f6d694481565b34801561072157600080fd5b506104cb610730366004612eb5565b611239565b34801561074157600080fd5b506014546103c7906301000000900460ff1681565b34801561076257600080fd5b5061043c610771366004612e48565b6112cc565b34801561078257600080fd5b506104cb610791366004612c24565b6001600160a01b031660009081526017602052604090205490565b61043c61130d565b3480156107c057600080fd5b506014546103c79062010000900460ff1681565b3480156107e057600080fd5b506104046107ef366004612eb5565b61149f565b34801561080057600080fd5b5061040461080f366004612eb5565b6114c9565b34801561082057600080fd5b50610453611540565b34801561083557600080fd5b506104cb610844366004612c24565b61154d565b34801561085557600080fd5b5061043c6115d4565b34801561086a57600080fd5b5061043c610879366004612eb5565b61160a565b34801561088a57600080fd5b5061043c610899366004612c24565b6001600160a01b0316600090815260176020526040812055565b3480156108bf57600080fd5b5061043c611639565b61043c6108d6366004612eb5565b61176b565b3480156108e757600080fd5b5061043c6108f6366004612d54565b611a05565b34801561090757600080fd5b50600a546001600160a01b0316610404565b34801561092557600080fd5b50610453611a4b565b34801561093a57600080fd5b506014546103c790640100000000900460ff1681565b34801561095c57600080fd5b5061043c61096b366004612d2a565b611a5a565b34801561097c57600080fd5b5061043c611b1f565b34801561099157600080fd5b50610404734ba4a533d9355bbf0ce56baf9fe15e2cccc8313281565b3480156109b957600080fd5b5061043c6109c8366004612cae565b611b5e565b3480156109d957600080fd5b506104046109e8366004612eb5565b611b96565b3480156109f957600080fd5b506104cb60125481565b348015610a0f57600080fd5b50610453611ba6565b348015610a2457600080fd5b50610453610a33366004612eb5565b611bb3565b348015610a4457600080fd5b5061043c610a53366004612eb5565b611d34565b348015610a6457600080fd5b506104cb600f5481565b348015610a7a57600080fd5b5061043c610a89366004612e48565b611d63565b348015610a9a57600080fd5b506103c7610aa9366004612c3f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61043c610ae5366004612eb5565b611da0565b348015610af657600080fd5b50610b0061271081565b60405161ffff90911681526020016103d3565b348015610b1f57600080fd5b5061043c610b2e366004612d7e565b611edc565b348015610b3f57600080fd5b5061043c610b4e366004612e48565b611f1e565b348015610b5f57600080fd5b5061043c610b6e366004612c24565b611f5b565b348015610b7f57600080fd5b506104cb60105481565b60006001600160e01b0319821663780e9d6360e01b1480610bae5750610bae82611ff3565b92915050565b600a546001600160a01b03163314610be75760405162461bcd60e51b8152600401610bde9061313a565b60405180910390fd5b60148054911515620100000262ff000019909216919091179055565b606060008054610c12906132aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3e906132aa565b8015610c8b5780601f10610c6057610100808354040283529160200191610c8b565b820191906000526020600020905b815481529060010190602001808311610c6e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d0e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bde565b506000908152600460205260409020546001600160a01b031690565b600d8054610d37906132aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610d63906132aa565b8015610db05780601f10610d8557610100808354040283529160200191610db0565b820191906000526020600020905b815481529060010190602001808311610d9357829003601f168201915b505050505081565b6000610dc3826114c9565b9050806001600160a01b0316836001600160a01b03161415610e315760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bde565b336001600160a01b0382161480610e4d5750610e4d8133610aa9565b610ebf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bde565b610ec98383612043565b505050565b600a546001600160a01b03163314610ef85760405162461bcd60e51b8152600401610bde9061313a565b601055565b610f0733826120b1565b610f235760405162461bcd60e51b8152600401610bde906131cb565b610ec98383836121a8565b6014546000908190309061271090610f4a9061ffff1686613248565b610f549190613234565b915091509250929050565b6000610f6a8361154d565b8210610fcc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bde565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461101f5760405162461bcd60e51b8152600401610bde9061313a565b6103e88161ffff1611156110815760405162461bcd60e51b815260206004820152602360248201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160448201526218129760e91b6064820152608401610bde565b6014805461ffff191661ffff92909216919091179055565b6000805b6015548110156110fa57826001600160a01b0316601582815481106110c4576110c4613356565b6000918252602090912001546001600160a01b031614156110e85750600192915050565b806110f2816132e5565b91505061109d565b50600092915050565b600a546001600160a01b0316331461112d5760405162461bcd60e51b8152600401610bde9061313a565b601480549115156401000000000264ff0000000019909216919091179055565b610ec983838360405180602001604052806000815250611b5e565b606060006111758361154d565b905060008167ffffffffffffffff8111156111925761119261336c565b6040519080825280602002602001820160405280156111bb578160200160208202803683370190505b50905060005b82811015611202576111d38582610f5f565b8282815181106111e5576111e5613356565b6020908102919091010152806111fa816132e5565b9150506111c1565b509392505050565b600a546001600160a01b031633146112345760405162461bcd60e51b8152600401610bde9061313a565b600e55565b600061124460085490565b82106112a75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bde565b600882815481106112ba576112ba613356565b90600052602060002001549050919050565b600a546001600160a01b031633146112f65760405162461bcd60e51b8152600401610bde9061313a565b805161130990600b906020840190612a78565b5050565b60145462010000900460ff16156113365760405162461bcd60e51b8152600401610bde9061316f565b600061134160085490565b3360009081526017602052604081205491925090600081116113b15760405162461bcd60e51b8152602060048201526024808201527f796f7520617265206e6f7420656e7469746c656420666f7220612066726565206044820152633132b0b960e11b6064820152608401610bde565b6011548111156113d35760405162461bcd60e51b8152600401610bde906130f6565b600f546113e0828561321c565b11156113fe5760405162461bcd60e51b8152600401610bde906130c6565b600a546001600160a01b031633146114395761141a8183613248565b3410156114395760405162461bcd60e51b8152600401610bde9061319f565b60015b8181116114895733600090815260166020526040812080549161145e836132e5565b90915550611477905033611472838761321c565b612353565b80611481816132e5565b91505061143c565b5033600090815260176020526040812055505050565b601881815481106114af57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260408120546001600160a01b031680610bae5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bde565b600b8054610d37906132aa565b60006001600160a01b0382166115b85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bde565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146115fe5760405162461bcd60e51b8152600401610bde9061313a565b611608600061236d565b565b600a546001600160a01b031633146116345760405162461bcd60e51b8152600401610bde9061313a565b601155565b600a546001600160a01b031633146116635760405162461bcd60e51b8152600401610bde9061313a565b47806116a75760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b6044820152606401610bde565b6116db7308269c0fa570c4bc91cf054bfedece2a3cc9442b60646116cc846014613248565b6116d69190613234565b6123bf565b61170073739a49e67d46a2f0f60217901cfd6a86e816cc6260646116cc84600a613248565b611725734ba4a533d9355bbf0ce56baf9fe15e2cccc8313260646116cc84600a613248565b61174a7382341fb007544721efa2e3e74fa7421888b1048960646116cc84600a613248565b611768739286c3d14c235bf404a335a59f04ff806f6d6944476123bf565b50565b60145462010000900460ff16156117945760405162461bcd60e51b8152600401610bde9061316f565b600061179f60085490565b9050600082116117f15760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610bde565b6010548211156118545760405162461bcd60e51b815260206004820152602860248201527f63616e6e6f74206d696e74206d6f7265207468616e2034204e4654206f6e20776044820152671a1a5d195b1a5cdd60c21b6064820152608401610bde565b6011548211156118765760405162461bcd60e51b8152600401610bde906130f6565b600f54611883838361321c565b11156118a15760405162461bcd60e51b8152600401610bde906130c6565b600a546001600160a01b031633146119ba57601454640100000000900460ff1615156001141561198d576118d433611099565b6119205760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610bde565b3360009081526016602052604090205460125461193d848361321c565b111561198b5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610bde565b505b81600e5461199b9190613248565b3410156119ba5760405162461bcd60e51b8152600401610bde9061319f565b60015b828111610ec9573360009081526016602052604081208054916119df836132e5565b909155506119f3905033611472838561321c565b806119fd816132e5565b9150506119bd565b600a546001600160a01b03163314611a2f5760405162461bcd60e51b8152600401610bde9061313a565b6001600160a01b03909116600090815260176020526040902055565b606060018054610c12906132aa565b6001600160a01b038216331415611ab35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bde565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611b495760405162461bcd60e51b8152600401610bde9061313a565b6014805463ff00000019166301000000179055565b611b6833836120b1565b611b845760405162461bcd60e51b8152600401610bde906131cb565b611b9084848484612462565b50505050565b601581815481106114af57600080fd5b600c8054610d37906132aa565b6000818152600260205260409020546060906001600160a01b0316611c325760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bde565b6014546301000000900460ff16611cd557600d8054611c50906132aa565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7c906132aa565b8015611cc95780601f10611c9e57610100808354040283529160200191611cc9565b820191906000526020600020905b815481529060010190602001808311611cac57829003601f168201915b50505050509050919050565b6000611cdf612495565b90506000815111611cff5760405180602001604052806000815250611d2d565b80611d09846124a4565b600c604051602001611d1d93929190612f1c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611d5e5760405162461bcd60e51b8152600401610bde9061313a565b601255565b600a546001600160a01b03163314611d8d5760405162461bcd60e51b8152600401610bde9061313a565b805161130990600c906020840190612a78565b60145462010000900460ff1615611dc95760405162461bcd60e51b8152600401610bde9061316f565b6000611dd460085490565b905060008211611e265760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610bde565b601154821115611e485760405162461bcd60e51b8152600401610bde906130f6565b600f54611e55838361321c565b1115611e735760405162461bcd60e51b8152600401610bde906130c6565b600a546001600160a01b03163314611eb25781600e54611e939190613248565b341015611eb25760405162461bcd60e51b8152600401610bde9061319f565b60015b828111610ec957611eca33611472838561321c565b80611ed4816132e5565b915050611eb5565b600a546001600160a01b03163314611f065760405162461bcd60e51b8152600401610bde9061313a565b611f1260156000612afc565b610ec960158383612b1a565b600a546001600160a01b03163314611f485760405162461bcd60e51b8152600401610bde9061313a565b805161130990600d906020840190612a78565b600a546001600160a01b03163314611f855760405162461bcd60e51b8152600401610bde9061313a565b6001600160a01b038116611fea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bde565b6117688161236d565b60006001600160e01b031982166380ac58cd60e01b148061202457506001600160e01b03198216635b5e139f60e01b145b80610bae57506301ffc9a760e01b6001600160e01b0319831614610bae565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612078826114c9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661212a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bde565b6000612135836114c9565b9050806001600160a01b0316846001600160a01b031614806121705750836001600160a01b031661216584610c95565b6001600160a01b0316145b806121a057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166121bb826114c9565b6001600160a01b0316146122235760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bde565b6001600160a01b0382166122855760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bde565b6122908383836125a2565b61229b600082612043565b6001600160a01b03831660009081526003602052604081208054600192906122c4908490613267565b90915550506001600160a01b03821660009081526003602052604081208054600192906122f290849061321c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61130982826040518060200160405280600081525061265a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461240c576040519150601f19603f3d011682016040523d82523d6000602084013e612411565b606091505b5050905080610ec95760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f20776964746864726177204574686572000000000000006044820152606401610bde565b61246d8484846121a8565b6124798484848461268d565b611b905760405162461bcd60e51b8152600401610bde90613074565b6060600b8054610c12906132aa565b6060816124c85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124f257806124dc816132e5565b91506124eb9050600a83613234565b91506124cc565b60008167ffffffffffffffff81111561250d5761250d61336c565b6040519080825280601f01601f191660200182016040528015612537576020820181803683370190505b5090505b84156121a05761254c600183613267565b9150612559600a86613300565b61256490603061321c565b60f81b81838151811061257957612579613356565b60200101906001600160f81b031916908160001a90535061259b600a86613234565b945061253b565b6001600160a01b0383166125fd576125f881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612620565b816001600160a01b0316836001600160a01b03161461262057612620838261279a565b6001600160a01b03821661263757610ec981612837565b826001600160a01b0316826001600160a01b031614610ec957610ec982826128e6565b612664838361292a565b612671600084848461268d565b610ec95760405162461bcd60e51b8152600401610bde90613074565b60006001600160a01b0384163b1561278f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906126d1903390899088908890600401612fe0565b602060405180830381600087803b1580156126eb57600080fd5b505af192505050801561271b575060408051601f3d908101601f1916820190925261271891810190612e2b565b60015b612775573d808015612749576040519150601f19603f3d011682016040523d82523d6000602084013e61274e565b606091505b50805161276d5760405162461bcd60e51b8152600401610bde90613074565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121a0565b506001949350505050565b600060016127a78461154d565b6127b19190613267565b600083815260076020526040902054909150808214612804576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061284990600190613267565b6000838152600960205260408120546008805493945090928490811061287157612871613356565b90600052602060002001549050806008838154811061289257612892613356565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806128ca576128ca613340565b6001900381819060005260206000200160009055905550505050565b60006128f18361154d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166129805760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bde565b6000818152600260205260409020546001600160a01b0316156129e55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bde565b6129f1600083836125a2565b6001600160a01b0382166000908152600360205260408120805460019290612a1a90849061321c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612a84906132aa565b90600052602060002090601f016020900481019282612aa65760008555612aec565b82601f10612abf57805160ff1916838001178555612aec565b82800160010185558215612aec579182015b82811115612aec578251825591602001919060010190612ad1565b50612af8929150612b6d565b5090565b50805460008255906000526020600020908101906117689190612b6d565b828054828255906000526020600020908101928215612aec579160200282015b82811115612aec5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612b3a565b5b80821115612af85760008155600101612b6e565b600067ffffffffffffffff80841115612b9d57612b9d61336c565b604051601f8501601f19908116603f01168101908282118183101715612bc557612bc561336c565b81604052809350858152868686011115612bde57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612c0f57600080fd5b919050565b80358015158114612c0f57600080fd5b600060208284031215612c3657600080fd5b611d2d82612bf8565b60008060408385031215612c5257600080fd5b612c5b83612bf8565b9150612c6960208401612bf8565b90509250929050565b600080600060608486031215612c8757600080fd5b612c9084612bf8565b9250612c9e60208501612bf8565b9150604084013590509250925092565b60008060008060808587031215612cc457600080fd5b612ccd85612bf8565b9350612cdb60208601612bf8565b925060408501359150606085013567ffffffffffffffff811115612cfe57600080fd5b8501601f81018713612d0f57600080fd5b612d1e87823560208401612b82565b91505092959194509250565b60008060408385031215612d3d57600080fd5b612d4683612bf8565b9150612c6960208401612c14565b60008060408385031215612d6757600080fd5b612d7083612bf8565b946020939093013593505050565b60008060208385031215612d9157600080fd5b823567ffffffffffffffff80821115612da957600080fd5b818501915085601f830112612dbd57600080fd5b813581811115612dcc57600080fd5b8660208260051b8501011115612de157600080fd5b60209290920196919550909350505050565b600060208284031215612e0557600080fd5b611d2d82612c14565b600060208284031215612e2057600080fd5b8135611d2d81613382565b600060208284031215612e3d57600080fd5b8151611d2d81613382565b600060208284031215612e5a57600080fd5b813567ffffffffffffffff811115612e7157600080fd5b8201601f81018413612e8257600080fd5b6121a084823560208401612b82565b600060208284031215612ea357600080fd5b813561ffff81168114611d2d57600080fd5b600060208284031215612ec757600080fd5b5035919050565b60008060408385031215612ee157600080fd5b50508035926020909101359150565b60008151808452612f0881602086016020860161327e565b601f01601f19169290920160200192915050565b600084516020612f2f8285838a0161327e565b855191840191612f428184848a0161327e565b8554920191600090600181811c9080831680612f5f57607f831692505b858310811415612f7d57634e487b7160e01b85526022600452602485fd5b808015612f915760018114612fa257612fcf565b60ff19851688528388019550612fcf565b60008b81526020902060005b85811015612fc75781548a820152908401908801612fae565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061301390830184612ef0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561305557835183529284019291840191600101613039565b50909695505050505050565b602081526000611d2d6020830184612ef0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601690820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604082015260600190565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604082015260600190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561322f5761322f613314565b500190565b6000826132435761324361332a565b500490565b600081600019048311821515161561326257613262613314565b500290565b60008282101561327957613279613314565b500390565b60005b83811015613299578181015183820152602001613281565b83811115611b905750506000910152565b600181811c908216806132be57607f821691505b602082108114156132df57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132f9576132f9613314565b5060010190565b60008261330f5761330f61332a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461176857600080fdfea2646970667358221220a5d5c0f4fc9993cefc374308fc3fa462f2fa99115ea6cc964eb5fb1baa6517af64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000e426172656c79426561727331306b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000242420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d566f6b316a4a725354576d55764d6e3233686235556e65417753386d644d765a556b4669336f6d374c45684e2f00000000000000000000000000000000000000000000000000000000000000000000000000000000003c697066733a2f2f516d51344837686d6a7a7154457272544a4e5178475138676366686938754433716a6676396570396266426a48382f312e6a736f6e00000000

-----Decoded View---------------
Arg [0] : _name (string): BarelyBears10k
Arg [1] : _symbol (string): BB
Arg [2] : _initBaseURI (string): ipfs://QmVok1jJrSTWmUvMn23hb5UneAwS8mdMvZUkFi3om7LEhN/
Arg [3] : _initNotRevealedUri (string): ipfs://QmQ4H7hmjzqTErrTJNQxGQ8gcfhi8uD3qjfv9ep9bfBjH8/1.json

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 426172656c79426561727331306b000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4242000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d566f6b316a4a725354576d55764d6e3233686235556e65
Arg [10] : 417753386d644d765a556b4669336f6d374c45684e2f00000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [12] : 697066733a2f2f516d51344837686d6a7a7154457272544a4e51784751386763
Arg [13] : 66686938754433716a6676396570396266426a48382f312e6a736f6e00000000


Deployed Bytecode Sourcemap

47017:8211:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36072:224;;;;;;;;;;-1:-1:-1;36072:224:0;;;;;:::i;:::-;;:::i;:::-;;;9236:14:1;;9229:22;9211:41;;9199:2;9184:18;36072:224:0;;;;;;;;48028:83;;;;;;;;;;;;48069:42;48028:83;;;;;-1:-1:-1;;;;;7618:32:1;;;7600:51;;7588:2;7573:18;48028:83:0;7454:203:1;53458:73:0;;;;;;;;;;-1:-1:-1;53458:73:0;;;;;:::i;:::-;;:::i;:::-;;23964:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25523:221::-;;;;;;;;;;-1:-1:-1;25523:221:0;;;;;:::i;:::-;;:::i;47175:28::-;;;;;;;;;;;;;:::i;25046:411::-;;;;;;;;;;-1:-1:-1;25046:411:0;;;;;:::i;:::-;;:::i;47208:32::-;;;;;;;;;;;;;;;;;;;21472:25:1;;;21460:2;21445:18;47208:32:0;21326:177:1;36712:113:0;;;;;;;;;;-1:-1:-1;36800:10:0;:17;36712:113;;48116:55;;;;;;;;;;-1:-1:-1;48116:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;52814:152;;;;;;;;;;-1:-1:-1;52814:152:0;;;;;:::i;:::-;;:::i;47328:33::-;;;;;;;;;;;;;;;;26413:339;;;;;;;;;;-1:-1:-1;26413:339:0;;;;;:::i;:::-;;:::i;54715:218::-;;;;;;;;;;-1:-1:-1;54715:218:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;8347:32:1;;;8329:51;;8411:2;8396:18;;8389:34;;;;8302:18;54715:218:0;8155:274:1;36380:256:0;;;;;;;;;;-1:-1:-1;36380:256:0;;;;;:::i;:::-;;:::i;55032:193::-;;;;;;;;;;-1:-1:-1;55032:193:0;;;;;:::i;:::-;;:::i;47856:79::-;;;;;;;;;;;;47893:42;47856:79;;51425:239;;;;;;;;;;-1:-1:-1;51425:239:0;;;;;:::i;:::-;;:::i;53721:95::-;;;;;;;;;;-1:-1:-1;53721:95:0;;;;;:::i;:::-;;:::i;47768:83::-;;;;;;;;;;;;47809:42;47768:83;;26823:185;;;;;;;;;;-1:-1:-1;26823:185:0;;;;;:::i;:::-;;:::i;51670:348::-;;;;;;;;;;-1:-1:-1;51670:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;52728:80::-;;;;;;;;;;-1:-1:-1;52728:80:0;;;;;:::i;:::-;;:::i;47680:83::-;;;;;;;;;;;;47721:42;47680:83;;36902:233;;;;;;;;;;-1:-1:-1;36902:233:0;;;;;:::i;:::-;;:::i;47566:28::-;;;;;;;;;;-1:-1:-1;47566:28:0;;;;;;;;;;;53098:98;;;;;;;;;;-1:-1:-1;53098:98:0;;;;;:::i;:::-;;:::i;48886:130::-;;;;;;;;;;-1:-1:-1;48886:130:0;;;;;:::i;:::-;-1:-1:-1;;;;;48982:17:0;48957:4;48982:17;;;:7;:17;;;;;:25;;48886:130;49618:746;;;:::i;47535:26::-;;;;;;;;;;-1:-1:-1;47535:26:0;;;;;;;;;;;48670:29;;;;;;;;;;-1:-1:-1;48670:29:0;;;;;:::i;:::-;;:::i;23658:239::-;;;;;;;;;;-1:-1:-1;23658:239:0;;;;;:::i;:::-;;:::i;47107:21::-;;;;;;;;;;;;;:::i;23388:208::-;;;;;;;;;;-1:-1:-1;23388:208:0;;;;;:::i;:::-;;:::i;43861:94::-;;;;;;;;;;;;;:::i;52974:116::-;;;;;;;;;;-1:-1:-1;52974:116:0;;;;;:::i;:::-;;:::i;48718:156::-;;;;;;;;;;-1:-1:-1;48718:156:0;;;;;:::i;:::-;-1:-1:-1;;;;;48813:17:0;48783:27;48813:17;;;:7;:17;;;;;48848:18;48718:156;53975:436;;;;;;;;;;;;;:::i;50372:1043::-;;;;;;:::i;:::-;;:::i;53539:178::-;;;;;;;;;;-1:-1:-1;53539:178:0;;;;;:::i;:::-;;:::i;43210:87::-;;;;;;;;;;-1:-1:-1;43283:6:0;;-1:-1:-1;;;;;43283:6:0;43210:87;;24133:104;;;;;;;;;;;;;:::i;47599:34::-;;;;;;;;;;-1:-1:-1;47599:34:0;;;;;;;;;;;25816:295;;;;;;;;;;-1:-1:-1;25816:295:0;;;;;:::i;:::-;;:::i;52543:65::-;;;;;;;;;;;;;:::i;47940:83::-;;;;;;;;;;;;47981:42;47940:83;;27079:328;;;;;;;;;;-1:-1:-1;27079:328:0;;;;;:::i;:::-;;:::i;47638:37::-;;;;;;;;;;-1:-1:-1;47638:37:0;;;;;:::i;:::-;;:::i;47366:::-;;;;;;;;;;;;;;;;47133;;;;;;;;;;;;;:::i;52024:497::-;;;;;;;;;;-1:-1:-1;52024:497:0;;;;;:::i;:::-;;:::i;52616:104::-;;;;;;;;;;-1:-1:-1;52616:104:0;;;;;:::i;:::-;;:::i;47245:32::-;;;;;;;;;;;;;;;;53202:122;;;;;;;;;;-1:-1:-1;53202:122:0;;;;;:::i;:::-;;:::i;26182:164::-;;;;;;;;;;-1:-1:-1;26182:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26303:25:0;;;26279:4;26303:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26182:164;49022:590;;;;;;:::i;:::-;;:::i;47495:35::-;;;;;;;;;;;;47525:5;47495:35;;;;;21307:6:1;21295:19;;;21277:38;;21265:2;21250:18;47495:35:0;21133:188:1;53824:144:0;;;;;;;;;;-1:-1:-1;53824:144:0;;;;;:::i;:::-;;:::i;53332:120::-;;;;;;;;;;-1:-1:-1;53332:120:0;;;;;:::i;:::-;;:::i;44110:192::-;;;;;;;;;;-1:-1:-1;44110:192:0;;;;;:::i;:::-;;:::i;47282:41::-;;;;;;;;;;;;;;;;36072:224;36174:4;-1:-1:-1;;;;;;36198:50:0;;-1:-1:-1;;;36198:50:0;;:90;;;36252:36;36276:11;36252:23;:36::i;:::-;36191:97;36072:224;-1:-1:-1;;36072:224:0:o;53458:73::-;43283:6;;-1:-1:-1;;;;;43283:6:0;21573:10;43430:23;43422:68;;;;-1:-1:-1;;;43422:68:0;;;;;;;:::i;:::-;;;;;;;;;53510:6:::1;:15:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;53510:15:0;;::::1;::::0;;;::::1;::::0;;53458:73::o;23964:100::-;24018:13;24051:5;24044:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23964:100;:::o;25523:221::-;25599:7;29006:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29006:16:0;25619:73;;;;-1:-1:-1;;;25619:73:0;;15985:2:1;25619:73:0;;;15967:21:1;16024:2;16004:18;;;15997:30;16063:34;16043:18;;;16036:62;-1:-1:-1;;;16114:18:1;;;16107:42;16166:19;;25619:73:0;15783:408:1;25619:73:0;-1:-1:-1;25712:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25712:24:0;;25523:221::o;47175:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25046:411::-;25127:13;25143:23;25158:7;25143:14;:23::i;:::-;25127:39;;25191:5;-1:-1:-1;;;;;25185:11:0;:2;-1:-1:-1;;;;;25185:11:0;;;25177:57;;;;-1:-1:-1;;;25177:57:0;;18638:2:1;25177:57:0;;;18620:21:1;18677:2;18657:18;;;18650:30;18716:34;18696:18;;;18689:62;-1:-1:-1;;;18767:18:1;;;18760:31;18808:19;;25177:57:0;18436:397:1;25177:57:0;21573:10;-1:-1:-1;;;;;25269:21:0;;;;:62;;-1:-1:-1;25294:37:0;25311:5;21573:10;26182:164;:::i;25294:37::-;25247:168;;;;-1:-1:-1;;;25247:168:0;;13217:2:1;25247:168:0;;;13199:21:1;13256:2;13236:18;;;13229:30;13295:34;13275:18;;;13268:62;13366:26;13346:18;;;13339:54;13410:19;;25247:168:0;13015:420:1;25247:168:0;25428:21;25437:2;25441:7;25428:8;:21::i;:::-;25116:341;25046:411;;:::o;52814:152::-;43283:6;;-1:-1:-1;;;;;43283:6:0;21573:10;43430:23;43422:68;;;;-1:-1:-1;;;43422:68:0;;;;;;;:::i;:::-;52909:22:::1;:51:::0;52814:152::o;26413:339::-;26608:41;21573:10;26641:7;26608:18;:41::i;:::-;26600:103;;;;-1:-1:-1;;;26600:103:0;;;;;;;:::i;:::-;26716:28;26726:4;26732:2;26736:7;26716:9;:28::i;54715:218::-;54909:7;;54815:16;;;;54888:4;;47525:5;;54896:20;;54895:29;54909:7;54896:10;:20;:::i;:::-;54895:29;;;;:::i;:::-;54872:53;;;;54715:218;;;;;:::o;36380:256::-;36477:7;36513:23;36530:5;36513:16;:23::i;:::-;36505:5;:31;36497:87;;;;-1:-1:-1;;;36497:87:0;;9689:2:1;36497:87:0;;;9671:21:1;9728:2;9708:18;;;9701:30;9767:34;9747:18;;;9740:62;-1:-1:-1;;;9818:18:1;;;9811:41;9869:19;;36497:87:0;9487:407:1;36497:87:0;-1:-1:-1;;;;;;36602:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36380:256::o;55032:193::-;43283:6;;-1:-1:-1;;;;;43283:6:0;21573:10;43430:23;43422:68;;;;-1:-1:-1;;;43422:68:0;;;;;;;:::i;:::-;55142:4:::1;55130:8;:16;;;;55105:81;;;::::0;-1:-1:-1;;;55105:81:0;;12813:2:1;55105:81:0::1;::::0;::::1;12795:21:1::0;12852:2;12832:18;;;12825:30;12891:34;12871:18;;;12864:62;-1:-1:-1;;;12942:18:1;;;12935:33;12985:19;;55105:81:0::1;12611:399:1::0;55105:81:0::1;55199:7;:18:::0;;-1:-1:-1;;55199:18:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;55032:193::o;51425:239::-;51484:4;;51497:143;51518:20;:27;51514:31;;51497:143;;;51592:5;-1:-1:-1;;;;;51565:32:0;:20;51586:1;51565:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;51565:23:0;:32;51561:72;;;-1:-1:-1;51619:4:0;;51425:239;-1:-1:-1;;51425:239:0:o;51561:72::-;51547:3;;;;:::i;:::-;;;;51497:143;;;-1:-1:-1;51653:5:0;;51425:239;-1:-1:-1;;51425:239:0:o;53721:95::-;43283:6;;-1:-1:-1;;;;;43283:6:0;21573:10;43430:23;43422:68;;;;-1:-1:-1;;;43422:68:0;;;;;;;:::i;:::-;53786:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;53786:24:0;;::::1;::::0;;;::::1;::::0;;53721:95::o;26823:185::-;26961:39;26978:4;26984:2;26988:7;26961:39;;;;;;;;;;;;:16;:39::i;51670:348::-;51745:16;51773:23;51799:17;51809:6;51799:9;:17::i;:::-;51773:43;;51823:25;51865:15;51851:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51851:30:0;;51823:58;;51893:9;51888:103;51908:15;51904:1;:19;51888:103;;;51953:30;51973:6;51981:1;51953:19;:30::i;:::-;51939:8;51948:1;51939:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;51925:3;;;;:::i;:::-;;;;51888:103;;;-1:-1:-1;52004:8:0;51670:348;-1:-1:-1;;;51670:348:0:o;52728:80::-;43283:6;;-1:-1:-1;;;;;43283:6:0;21573:10;43430:23;43422:68;;;;-1:-1:-1;;;43422:68:0;;;;;;;:::i;:::-;52787:4:::1;:15:::0;52728:80::o;36902:233::-;36977:7;37013:30;36800:10;:17;;36712:113;37013:30;37005:5;:38;36997:95;;;;-1:-1:-1;;;36997:95:0;;20214:2:1;36997:95:0;;;20196:21:1;20253:2;20233:18;;;20226:30;20292:34;20272:18;;;20265:62;-1:-1:-1;;;20343:18:1;;;20336:42;20395:19;;36997:95:0;20012:408:1;36997:95:0;37110:10;37121:5;37110:17;;;;;;;;:::i;:::-;;;;;;;;;37103:24;;36902:233;;;:::o;53098:98::-;43283:6;;-1:-1:-1;;;;;43283:6:0;21573:10;43430:23;43422:68;;;;-1:-1:-1;;;43422:68:0;;;;;;;:::i;:::-;53169:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53098:98:::0;:::o;49618:746::-;49669:6;;;;;;;49668:7;49660:42;;;;-1:-1:-1;;;49660:42:0;;;;;;;:::i;:::-;49709:14;49726:13;36800:10;:17;;36712:113;49726:13;49814:10;49746:12;48982:17;;;:7;:17;;;;;:25;49709:30;;-1:-1:-1;49746:12:0;49854:1;49840:11;:15;49832:64;;;;-1:-1:-1;;;49832:64:0;;15219:2:1;49832:64:0;;;15201:21:1;15258:2;15238:18;;;15231:30;15297:34;15277:18;;;15270:62;-1:-1:-1;;;15348:18:1;;;15341:34;15392:19;;49832:64:0;15017:400:1;49832:64:0;49926:13;;49911:11;:28;;49903:77;;;;-1:-1:-1;;;49903:77:0;;;;;;;:::i;:::-;50019:9;;49995:20;50004:11;49995:6;:20;:::i;:::-;:33;;49987:68;;;;-1:-1:-1;;;49987:68:0;;;;;;;:::i;:::-;43283:6;;-1:-1:-1;;;;;43283:6:0;50068:10;:21;50064:108;;50123:18;50130:11;50123:4;:18;:::i;:::-;50110:9;:31;;50102:62;;;;-1:-1:-1;;;50102:62:0;;;;;;;:::i;:::-;50201:1;50184:138;50209:11;50204:1;:16;50184:138;;50259:10;50238:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;50281:33:0;;-1:-1:-1;50291:10:0;50303;50312:1;50303:6;:10;:::i;:::-;50281:9;:33::i;:::-;50222:3;;;;:::i;:::-;;;;50184:138;;;-1:-1:-1;50347:10:0;48783:27;48813:17;;;:7;:17;;;;;48848:18;25116:341;25046:411;;:::o;48670:29::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48670:29:0;;-1:-1:-1;48670:29:0;:::o;23658:239::-;23730:7;23766:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23766:16:0;23801:19;23793:73;;;;-1:-1:-1;;;23793:73:0;;14053:2:1;23793:73:0;;;14035:21:1;14092:2;14072:18;;;14065:30;14131:34;14111:18;;;14104:62;-1:-1:-1;;;14182:18:1;;;14175:39;14231:19;;23793:73:0;13851:405:1;47107:21:0;;;;;;;:::i;23388:208::-;23460:7;-1:-1:-1;;;;;23488:19:0;;23480:74;;;;-1:-1:-1;;;23480:74:0;;13642:2:1;23480:74:0;;;13624:21:1;13681:2;13661:18;;;13654:30;13720:34;13700:18;;;13693:62;-1:-1:-1;;;13771:18:1;;;13764:40;13821:19;;23480:74:0;13440:406:1;23480:74:0;-1:-1:-1;;;;;;23572:16:0;;;;;:9;:16;;;;;;;23388:208::o;43861:94::-;43283:6;;-1:-1:-1;;;;;43283:6:0;21573:10;43430:23;43422:68;;;;-1:-1:-1;;;43422:68:0;;;;;;;:::i;:::-;43926:21:::1;43944:1;43926:9;:21::i;:::-;43861:94::o:0;52974:116::-;43283:6;;-1:-1:-1;;;;;43283:6:0;21573:10;43430:23;43422:68;;;;-1:-1:-1;;;43422:68:0;;;;;;;:::i;:::-;53051:13:::1;:33:::0;52974:116::o;53975:436::-;43283:6;;-1:-1:-1;;;;;43283:6:0;21573:10;43430:23;43422:68;;;;-1:-1:-1;;;43422:68:0;;;;;;;:::i;:::-;54042:21:::1;54080:11:::0;54072:43:::1;;;::::0;-1:-1:-1;;;54072:43:0;;16398:2:1;54072:43:0::1;::::0;::::1;16380:21:1::0;16437:2;16417:18;;;16410:30;-1:-1:-1;;;16456:18:1;;;16449:49;16515:18;;54072:43:0::1;16196:343:1::0;54072:43:0::1;54124:50;47809:42;54169:3;54153:12;:7:::0;54163:2:::1;54153:12;:::i;:::-;54152:20;;;;:::i;:::-;54124:10;:50::i;:::-;54183:46;47893:42;54224:3;54208:12;:7:::0;54218:2:::1;54208:12;:::i;54183:46::-;54238:50;47981:42;54283:3;54267:12;:7:::0;54277:2:::1;54267:12;:::i;54238:50::-;54297;48069:42;54342:3;54326:12;:7:::0;54336:2:::1;54326:12;:::i;54297:50::-;54356:49;47721:42;54383:21;54356:10;:49::i;:::-;54015:396;53975:436::o:0;50372:1043::-;50447:6;;;;;;;50446:7;50438:42;;;;-1:-1:-1;;;50438:42:0;;;;;;;:::i;:::-;50487:14;50504:13;36800:10;:17;;36712:113;50504:13;50487:30;;50546:1;50532:11;:15;50524:55;;;;-1:-1:-1;;;50524:55:0;;20979:2:1;50524:55:0;;;20961:21:1;21018:2;20998:18;;;20991:30;21057:29;21037:18;;;21030:57;21104:18;;50524:55:0;20777:351:1;50524:55:0;50609:22;;50594:11;:37;;50586:90;;;;-1:-1:-1;;;50586:90:0;;19040:2:1;50586:90:0;;;19022:21:1;19079:2;19059:18;;;19052:30;19118:34;19098:18;;;19091:62;-1:-1:-1;;;19169:18:1;;;19162:38;19217:19;;50586:90:0;18838:404:1;50586:90:0;50706:13;;50691:11;:28;;50683:77;;;;-1:-1:-1;;;50683:77:0;;;;;;;:::i;:::-;50799:9;;50775:20;50784:11;50775:6;:20;:::i;:::-;:33;;50767:68;;;;-1:-1:-1;;;50767:68:0;;;;;;;:::i;:::-;43283:6;;-1:-1:-1;;;;;43283:6:0;50848:10;:21;50844:416;;50885:15;;;;;;;:23;;50904:4;50885:23;50882:298;;;50933:25;50947:10;50933:13;:25::i;:::-;50925:61;;;;-1:-1:-1;;;50925:61:0;;20627:2:1;50925:61:0;;;20609:21:1;20666:2;20646:18;;;20639:30;20705:25;20685:18;;;20678:53;20748:18;;50925:61:0;20425:347:1;50925:61:0;51049:10;51001:24;51028:32;;;:20;:32;;;;;;51117:18;;51083:30;51102:11;51028:32;51083:30;:::i;:::-;:52;;51075:93;;;;-1:-1:-1;;;51075:93:0;;11284:2:1;51075:93:0;;;11266:21:1;11323:2;11303:18;;;11296:30;11362;11342:18;;;11335:58;11410:18;;51075:93:0;11082:352:1;51075:93:0;50910:270;50882:298;51218:11;51211:4;;:18;;;;:::i;:::-;51198:9;:31;;51190:62;;;;-1:-1:-1;;;51190:62:0;;;;;;;:::i;:::-;51289:1;51272:138;51297:11;51292:1;:16;51272:138;;51347:10;51326:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;51369:33:0;;-1:-1:-1;51379:10:0;51391;51400:1;51391:6;:10;:::i;51369:33::-;51310:3;;;;:::i;:::-;;;;51272:138;;53539:178;43283:6;;-1:-1:-1;;;;;43283:6:0;21573:10;43430:23;43422:68;;;;-1:-1:-1;;;43422:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53654:17:0;;::::1;53624:27;53654:17:::0;;;:7:::1;:17;::::0;;;;53686:25;53539:178::o;24133:104::-;24189:13;24222:7;24215:14;;;;;:::i;25816:295::-;-1:-1:-1;;;;;25919:24:0;;21573:10;25919:24;;25911:62;;;;-1:-1:-1;;;25911:62:0;;12046:2:1;25911:62:0;;;12028:21:1;12085:2;12065:18;;;12058:30;12124:27;12104:18;;;12097:55;12169:18;;25911:62:0;11844:349:1;25911:62:0;21573:10;25986:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25986:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25986:53:0;;;;;;;;;;26055:48;;9211:41:1;;;25986:42:0;;21573:10;26055:48;;9184:18:1;26055:48:0;;;;;;;25816:295;;:::o;52543:65::-;43283:6;;-1:-1:-1;;;;;43283:6:0;21573:10;43430:23;43422:68;;;;-1:-1:-1;;;43422:68:0;;;;;;;:::i;:::-;52587:8:::1;:15:::0;;-1:-1:-1;;52587:15:0::1;::::0;::::1;::::0;;52543:65::o;27079:328::-;27254:41;21573:10;27287:7;27254:18;:41::i;:::-;27246:103;;;;-1:-1:-1;;;27246:103:0;;;;;;;:::i;:::-;27360:39;27374:4;27380:2;27384:7;27393:5;27360:13;:39::i;:::-;27079:328;;;;:::o;47638:37::-;;;;;;;;;;;;47133;;;;;;;:::i;52024:497::-;28982:4;29006:16;;;:7;:16;;;;;;52122:13;;-1:-1:-1;;;;;29006:16:0;52147:97;;;;-1:-1:-1;;;52147:97:0;;17868:2:1;52147:97:0;;;17850:21:1;17907:2;17887:18;;;17880:30;17946:34;17926:18;;;17919:62;-1:-1:-1;;;17997:18:1;;;17990:45;18052:19;;52147:97:0;17666:411:1;52147:97:0;52260:8;;;;;;;52257:62;;52297:14;52290:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52024:497;;;:::o;52257:62::-;52327:28;52358:10;:8;:10::i;:::-;52327:41;;52413:1;52388:14;52382:28;:32;:133;;;;;;;;;;;;;;;;;52450:14;52466:18;:7;:16;:18::i;:::-;52486:13;52433:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52382:133;52375:140;52024:497;-1:-1:-1;;;52024:497:0:o;52616:104::-;43283:6;;-1:-1:-1;;;;;43283:6:0;21573:10;43430:23;43422:68;;;;-1:-1:-1;;;43422:68:0;;;;;;;:::i;:::-;52687:18:::1;:27:::0;52616:104::o;53202:122::-;43283:6;;-1:-1:-1;;;;;43283:6:0;21573:10;43430:23;43422:68;;;;-1:-1:-1;;;43422:68:0;;;;;;;:::i;:::-;53285:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;49022:590::-:0;49094:6;;;;;;;49093:7;49085:42;;;;-1:-1:-1;;;49085:42:0;;;;;;;:::i;:::-;49134:14;49151:13;36800:10;:17;;36712:113;49151:13;49134:30;;49193:1;49179:11;:15;49171:55;;;;-1:-1:-1;;;49171:55:0;;20979:2:1;49171:55:0;;;20961:21:1;21018:2;20998:18;;;20991:30;21057:29;21037:18;;;21030:57;21104:18;;49171:55:0;20777:351:1;49171:55:0;49256:13;;49241:11;:28;;49233:77;;;;-1:-1:-1;;;49233:77:0;;;;;;;:::i;:::-;49349:9;;49325:20;49334:11;49325:6;:20;:::i;:::-;:33;;49317:68;;;;-1:-1:-1;;;49317:68:0;;;;;;;:::i;:::-;43283:6;;-1:-1:-1;;;;;43283:6:0;49398:10;:21;49394:108;;49460:11;49453:4;;:18;;;;:::i;:::-;49440:9;:31;;49432:62;;;;-1:-1:-1;;;49432:62:0;;;;;;;:::i;:::-;49531:1;49514:93;49539:11;49534:1;:16;49514:93;;49566:33;49576:10;49588;49597:1;49588:6;:10;:::i;49566:33::-;49552:3;;;;:::i;:::-;;;;49514:93;;53824:144;43283:6;;-1:-1:-1;;;;;43283:6:0;21573:10;43430:23;43422:68;;;;-1:-1:-1;;;43422:68:0;;;;;;;:::i;:::-;53899:27:::1;53906:20;;53899:27;:::i;:::-;53933:29;:20;53956:6:::0;;53933:29:::1;:::i;53332:120::-:0;43283:6;;-1:-1:-1;;;;;43283:6:0;21573:10;43430:23;43422:68;;;;-1:-1:-1;;;43422:68:0;;;;;;;:::i;:::-;53414:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;44110:192::-:0;43283:6;;-1:-1:-1;;;;;43283:6:0;21573:10;43430:23;43422:68;;;;-1:-1:-1;;;43422:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44199:22:0;::::1;44191:73;;;::::0;-1:-1:-1;;;44191:73:0;;10520:2:1;44191:73:0::1;::::0;::::1;10502:21:1::0;10559:2;10539:18;;;10532:30;10598:34;10578:18;;;10571:62;-1:-1:-1;;;10649:18:1;;;10642:36;10695:19;;44191:73:0::1;10318:402:1::0;44191:73:0::1;44275:19;44285:8;44275:9;:19::i;23019:305::-:0;23121:4;-1:-1:-1;;;;;;23158:40:0;;-1:-1:-1;;;23158:40:0;;:105;;-1:-1:-1;;;;;;;23215:48:0;;-1:-1:-1;;;23215:48:0;23158:105;:158;;;-1:-1:-1;;;;;;;;;;8959:40:0;;;23280:36;8850:157;32899:174;32974:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32974:29:0;-1:-1:-1;;;;;32974:29:0;;;;;;;;:24;;33028:23;32974:24;33028:14;:23::i;:::-;-1:-1:-1;;;;;33019:46:0;;;;;;;;;;;32899:174;;:::o;29211:348::-;29304:4;29006:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29006:16:0;29321:73;;;;-1:-1:-1;;;29321:73:0;;12400:2:1;29321:73:0;;;12382:21:1;12439:2;12419:18;;;12412:30;12478:34;12458:18;;;12451:62;-1:-1:-1;;;12529:18:1;;;12522:42;12581:19;;29321:73:0;12198:408:1;29321:73:0;29405:13;29421:23;29436:7;29421:14;:23::i;:::-;29405:39;;29474:5;-1:-1:-1;;;;;29463:16:0;:7;-1:-1:-1;;;;;29463:16:0;;:51;;;;29507:7;-1:-1:-1;;;;;29483:31:0;:20;29495:7;29483:11;:20::i;:::-;-1:-1:-1;;;;;29483:31:0;;29463:51;:87;;;-1:-1:-1;;;;;;26303:25:0;;;26279:4;26303:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29518:32;29455:96;29211:348;-1:-1:-1;;;;29211:348:0:o;32203:578::-;32362:4;-1:-1:-1;;;;;32335:31:0;:23;32350:7;32335:14;:23::i;:::-;-1:-1:-1;;;;;32335:31:0;;32327:85;;;;-1:-1:-1;;;32327:85:0;;17458:2:1;32327:85:0;;;17440:21:1;17497:2;17477:18;;;17470:30;17536:34;17516:18;;;17509:62;-1:-1:-1;;;17587:18:1;;;17580:39;17636:19;;32327:85:0;17256:405:1;32327:85:0;-1:-1:-1;;;;;32431:16:0;;32423:65;;;;-1:-1:-1;;;32423:65:0;;11641:2:1;32423:65:0;;;11623:21:1;11680:2;11660:18;;;11653:30;11719:34;11699:18;;;11692:62;-1:-1:-1;;;11770:18:1;;;11763:34;11814:19;;32423:65:0;11439:400:1;32423:65:0;32501:39;32522:4;32528:2;32532:7;32501:20;:39::i;:::-;32605:29;32622:1;32626:7;32605:8;:29::i;:::-;-1:-1:-1;;;;;32647:15:0;;;;;;:9;:15;;;;;:20;;32666:1;;32647:15;:20;;32666:1;;32647:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32678:13:0;;;;;;:9;:13;;;;;:18;;32695:1;;32678:13;:18;;32695:1;;32678:18;:::i;:::-;;;;-1:-1:-1;;32707:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32707:21:0;-1:-1:-1;;;;;32707:21:0;;;;;;;;;32746:27;;32707:16;;32746:27;;;;;;;32203:578;;;:::o;29901:110::-;29977:26;29987:2;29991:7;29977:26;;;;;;;;;;;;:9;:26::i;44310:173::-;44385:6;;;-1:-1:-1;;;;;44402:17:0;;;-1:-1:-1;;;;;;44402:17:0;;;;;;;44435:40;;44385:6;;;44402:17;44385:6;;44435:40;;44366:16;;44435:40;44355:128;44310:173;:::o;54417:185::-;54489:12;54507:8;-1:-1:-1;;;;;54507:13:0;54529:7;54507:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54488:54;;;54558:7;54550:45;;;;-1:-1:-1;;;54550:45:0;;18284:2:1;54550:45:0;;;18266:21:1;18323:2;18303:18;;;18296:30;18362:27;18342:18;;;18335:55;18407:18;;54550:45:0;18082:349:1;28289:315:0;28446:28;28456:4;28462:2;28466:7;28446:9;:28::i;:::-;28493:48;28516:4;28522:2;28526:7;28535:5;28493:22;:48::i;:::-;28485:111;;;;-1:-1:-1;;;28485:111:0;;;;;;;:::i;48439:102::-;48499:13;48528:7;48521:14;;;;;:::i;9325:723::-;9381:13;9602:10;9598:53;;-1:-1:-1;;9629:10:0;;;;;;;;;;;;-1:-1:-1;;;9629:10:0;;;;;9325:723::o;9598:53::-;9676:5;9661:12;9717:78;9724:9;;9717:78;;9750:8;;;;:::i;:::-;;-1:-1:-1;9773:10:0;;-1:-1:-1;9781:2:0;9773:10;;:::i;:::-;;;9717:78;;;9805:19;9837:6;9827:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9827:17:0;;9805:39;;9855:154;9862:10;;9855:154;;9889:11;9899:1;9889:11;;:::i;:::-;;-1:-1:-1;9958:10:0;9966:2;9958:5;:10;:::i;:::-;9945:24;;:2;:24;:::i;:::-;9932:39;;9915:6;9922;9915:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9915:56:0;;;;;;;;-1:-1:-1;9986:11:0;9995:2;9986:11;;:::i;:::-;;;9855:154;;37748:589;-1:-1:-1;;;;;37954:18:0;;37950:187;;37989:40;38021:7;39164:10;:17;;39137:24;;;;:15;:24;;;;;:44;;;39192:24;;;;;;;;;;;;39060:164;37989:40;37950:187;;;38059:2;-1:-1:-1;;;;;38051:10:0;:4;-1:-1:-1;;;;;38051:10:0;;38047:90;;38078:47;38111:4;38117:7;38078:32;:47::i;:::-;-1:-1:-1;;;;;38151:16:0;;38147:183;;38184:45;38221:7;38184:36;:45::i;38147:183::-;38257:4;-1:-1:-1;;;;;38251:10:0;:2;-1:-1:-1;;;;;38251:10:0;;38247:83;;38278:40;38306:2;38310:7;38278:27;:40::i;30238:321::-;30368:18;30374:2;30378:7;30368:5;:18::i;:::-;30419:54;30450:1;30454:2;30458:7;30467:5;30419:22;:54::i;:::-;30397:154;;;;-1:-1:-1;;;30397:154:0;;;;;;;:::i;33638:799::-;33793:4;-1:-1:-1;;;;;33814:13:0;;12173:20;12221:8;33810:620;;33850:72;;-1:-1:-1;;;33850:72:0;;-1:-1:-1;;;;;33850:36:0;;;;;:72;;21573:10;;33901:4;;33907:7;;33916:5;;33850:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33850:72:0;;;;;;;;-1:-1:-1;;33850:72:0;;;;;;;;;;;;:::i;:::-;;;33846:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34092:13:0;;34088:272;;34135:60;;-1:-1:-1;;;34135:60:0;;;;;;;:::i;34088:272::-;34310:6;34304:13;34295:6;34291:2;34287:15;34280:38;33846:529;-1:-1:-1;;;;;;33973:51:0;-1:-1:-1;;;33973:51:0;;-1:-1:-1;33966:58:0;;33810:620;-1:-1:-1;34414:4:0;33638:799;;;;;;:::o;39851:988::-;40117:22;40167:1;40142:22;40159:4;40142:16;:22::i;:::-;:26;;;;:::i;:::-;40179:18;40200:26;;;:17;:26;;;;;;40117:51;;-1:-1:-1;40333:28:0;;;40329:328;;-1:-1:-1;;;;;40400:18:0;;40378:19;40400:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40451:30;;;;;;:44;;;40568:30;;:17;:30;;;;;:43;;;40329:328;-1:-1:-1;40753:26:0;;;;:17;:26;;;;;;;;40746:33;;;-1:-1:-1;;;;;40797:18:0;;;;;:12;:18;;;;;:34;;;;;;;40790:41;39851:988::o;41134:1079::-;41412:10;:17;41387:22;;41412:21;;41432:1;;41412:21;:::i;:::-;41444:18;41465:24;;;:15;:24;;;;;;41838:10;:26;;41387:46;;-1:-1:-1;41465:24:0;;41387:46;;41838:26;;;;;;:::i;:::-;;;;;;;;;41816:48;;41902:11;41877:10;41888;41877:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41982:28;;;:15;:28;;;;;;;:41;;;42154:24;;;;;42147:31;42189:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41205:1008;;;41134:1079;:::o;38638:221::-;38723:14;38740:20;38757:2;38740:16;:20::i;:::-;-1:-1:-1;;;;;38771:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38816:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38638:221:0:o;30895:382::-;-1:-1:-1;;;;;30975:16:0;;30967:61;;;;-1:-1:-1;;;30967:61:0;;15624:2:1;30967:61:0;;;15606:21:1;;;15643:18;;;15636:30;15702:34;15682:18;;;15675:62;15754:18;;30967:61:0;15422:356:1;30967:61:0;28982:4;29006:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29006:16:0;:30;31039:58;;;;-1:-1:-1;;;31039:58:0;;10927:2:1;31039:58:0;;;10909:21:1;10966:2;10946:18;;;10939:30;11005;10985:18;;;10978:58;11053:18;;31039:58:0;10725:352:1;31039:58:0;31110:45;31139:1;31143:2;31147:7;31110:20;:45::i;:::-;-1:-1:-1;;;;;31168:13:0;;;;;;:9;:13;;;;;:18;;31185:1;;31168:13;:18;;31185:1;;31168:18;:::i;:::-;;;;-1:-1:-1;;31197:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31197:21:0;-1:-1:-1;;;;;31197:21:0;;;;;;;;31236:33;;31197:16;;;31236:33;;31197:16;;31236:33;30895:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:272::-;4793:6;4846:2;4834:9;4825:7;4821:23;4817:32;4814:52;;;4862:1;4859;4852:12;4814:52;4901:9;4888:23;4951:6;4944:5;4940:18;4933:5;4930:29;4920:57;;4973:1;4970;4963:12;5012:180;5071:6;5124:2;5112:9;5103:7;5099:23;5095:32;5092:52;;;5140:1;5137;5130:12;5092:52;-1:-1:-1;5163:23:1;;5012:180;-1:-1:-1;5012:180:1:o;5197:248::-;5265:6;5273;5326:2;5314:9;5305:7;5301:23;5297:32;5294:52;;;5342:1;5339;5332:12;5294:52;-1:-1:-1;;5365:23:1;;;5435:2;5420:18;;;5407:32;;-1:-1:-1;5197:248:1:o;5450:257::-;5491:3;5529:5;5523:12;5556:6;5551:3;5544:19;5572:63;5628:6;5621:4;5616:3;5612:14;5605:4;5598:5;5594:16;5572:63;:::i;:::-;5689:2;5668:15;-1:-1:-1;;5664:29:1;5655:39;;;;5696:4;5651:50;;5450:257;-1:-1:-1;;5450:257:1:o;5712:1527::-;5936:3;5974:6;5968:13;6000:4;6013:51;6057:6;6052:3;6047:2;6039:6;6035:15;6013:51;:::i;:::-;6127:13;;6086:16;;;;6149:55;6127:13;6086:16;6171:15;;;6149:55;:::i;:::-;6293:13;;6226:20;;;6266:1;;6353;6375:18;;;;6428;;;;6455:93;;6533:4;6523:8;6519:19;6507:31;;6455:93;6596:2;6586:8;6583:16;6563:18;6560:40;6557:167;;;-1:-1:-1;;;6623:33:1;;6679:4;6676:1;6669:15;6709:4;6630:3;6697:17;6557:167;6740:18;6767:110;;;;6891:1;6886:328;;;;6733:481;;6767:110;-1:-1:-1;;6802:24:1;;6788:39;;6847:20;;;;-1:-1:-1;6767:110:1;;6886:328;21581:1;21574:14;;;21618:4;21605:18;;6981:1;6995:169;7009:8;7006:1;7003:15;6995:169;;;7091:14;;7076:13;;;7069:37;7134:16;;;;7026:10;;6995:169;;;6999:3;;7195:8;7188:5;7184:20;7177:27;;6733:481;-1:-1:-1;7230:3:1;;5712:1527;-1:-1:-1;;;;;;;;;;;5712:1527:1:o;7662:488::-;-1:-1:-1;;;;;7931:15:1;;;7913:34;;7983:15;;7978:2;7963:18;;7956:43;8030:2;8015:18;;8008:34;;;8078:3;8073:2;8058:18;;8051:31;;;7856:4;;8099:45;;8124:19;;8116:6;8099:45;:::i;:::-;8091:53;7662:488;-1:-1:-1;;;;;;7662:488:1:o;8434:632::-;8605:2;8657:21;;;8727:13;;8630:18;;;8749:22;;;8576:4;;8605:2;8828:15;;;;8802:2;8787:18;;;8576:4;8871:169;8885:6;8882:1;8879:13;8871:169;;;8946:13;;8934:26;;9015:15;;;;8980:12;;;;8907:1;8900:9;8871:169;;;-1:-1:-1;9057:3:1;;8434:632;-1:-1:-1;;;;;;8434:632:1:o;9263:219::-;9412:2;9401:9;9394:21;9375:4;9432:44;9472:2;9461:9;9457:18;9449:6;9432:44;:::i;9899:414::-;10101:2;10083:21;;;10140:2;10120:18;;;10113:30;10179:34;10174:2;10159:18;;10152:62;-1:-1:-1;;;10245:2:1;10230:18;;10223:48;10303:3;10288:19;;9899:414::o;14261:346::-;14463:2;14445:21;;;14502:2;14482:18;;;14475:30;-1:-1:-1;;;14536:2:1;14521:18;;14514:52;14598:2;14583:18;;14261:346::o;14612:400::-;14814:2;14796:21;;;14853:2;14833:18;;;14826:30;14892:34;14887:2;14872:18;;14865:62;-1:-1:-1;;;14958:2:1;14943:18;;14936:34;15002:3;14987:19;;14612:400::o;16544:356::-;16746:2;16728:21;;;16765:18;;;16758:30;16824:34;16819:2;16804:18;;16797:62;16891:2;16876:18;;16544:356::o;16905:346::-;17107:2;17089:21;;;17146:2;17126:18;;;17119:30;-1:-1:-1;;;17180:2:1;17165:18;;17158:52;17242:2;17227:18;;16905:346::o;19247:342::-;19449:2;19431:21;;;19488:2;19468:18;;;19461:30;-1:-1:-1;;;19522:2:1;19507:18;;19500:48;19580:2;19565:18;;19247:342::o;19594:413::-;19796:2;19778:21;;;19835:2;19815:18;;;19808:30;19874:34;19869:2;19854:18;;19847:62;-1:-1:-1;;;19940:2:1;19925:18;;19918:47;19997:3;19982:19;;19594:413::o;21634:128::-;21674:3;21705:1;21701:6;21698:1;21695:13;21692:39;;;21711:18;;:::i;:::-;-1:-1:-1;21747:9:1;;21634:128::o;21767:120::-;21807:1;21833;21823:35;;21838:18;;:::i;:::-;-1:-1:-1;21872:9:1;;21767:120::o;21892:168::-;21932:7;21998:1;21994;21990:6;21986:14;21983:1;21980:21;21975:1;21968:9;21961:17;21957:45;21954:71;;;22005:18;;:::i;:::-;-1:-1:-1;22045:9:1;;21892:168::o;22065:125::-;22105:4;22133:1;22130;22127:8;22124:34;;;22138:18;;:::i;:::-;-1:-1:-1;22175:9:1;;22065:125::o;22195:258::-;22267:1;22277:113;22291:6;22288:1;22285:13;22277:113;;;22367:11;;;22361:18;22348:11;;;22341:39;22313:2;22306:10;22277:113;;;22408:6;22405:1;22402:13;22399:48;;;-1:-1:-1;;22443:1:1;22425:16;;22418:27;22195:258::o;22458:380::-;22537:1;22533:12;;;;22580;;;22601:61;;22655:4;22647:6;22643:17;22633:27;;22601:61;22708:2;22700:6;22697:14;22677:18;22674:38;22671:161;;;22754:10;22749:3;22745:20;22742:1;22735:31;22789:4;22786:1;22779:15;22817:4;22814:1;22807:15;22671:161;;22458:380;;;:::o;22843:135::-;22882:3;-1:-1:-1;;22903:17:1;;22900:43;;;22923:18;;:::i;:::-;-1:-1:-1;22970:1:1;22959:13;;22843:135::o;22983:112::-;23015:1;23041;23031:35;;23046:18;;:::i;:::-;-1:-1:-1;23080:9:1;;22983:112::o;23100:127::-;23161:10;23156:3;23152:20;23149:1;23142:31;23192:4;23189:1;23182:15;23216:4;23213:1;23206:15;23232:127;23293:10;23288:3;23284:20;23281:1;23274:31;23324:4;23321:1;23314:15;23348:4;23345:1;23338:15;23364:127;23425:10;23420:3;23416:20;23413:1;23406:31;23456:4;23453:1;23446:15;23480:4;23477:1;23470:15;23496:127;23557:10;23552:3;23548:20;23545:1;23538:31;23588:4;23585:1;23578:15;23612:4;23609:1;23602:15;23628:127;23689:10;23684:3;23680:20;23677:1;23670:31;23720:4;23717:1;23710:15;23744:4;23741:1;23734:15;23760:131;-1:-1:-1;;;;;;23834:32:1;;23824:43;;23814:71;;23881:1;23878;23871:12

Swarm Source

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