ETH Price: $3,441.55 (-1.04%)
Gas: 4 Gwei

Token

Bored Koda Klub (BKK)
 

Overview

Max Total Supply

9,854 BKK

Holders

2,050

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BKK
0x98ab6b1b4272637bac913cc7a4f48f4cfa456e2b
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:
BoredKodaKlub

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 2022-05-22
*/

/**
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]


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



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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



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

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

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

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

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





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



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





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



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

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

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

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

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

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

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

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

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

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

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

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





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



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




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



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

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

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





// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)



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

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

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





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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




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



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


// File contracts/ERC721A.sol


// Creator: Chiru Labs


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

      currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract BoredKodaKlub is ERC721A, Ownable {

    string public baseURI = "ipfs://";
    string public contractURI = "ipfs://";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX_FREE = 10;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant FREE_MAX_SUPPLY = 4000;
    uint256 public MAX_SUPPLY = 9854;
    uint256 public price = 0.0069 ether;

    bool public paused = false;

    constructor() ERC721A("Bored Koda Klub", "BKK") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");

        if(FREE_MAX_SUPPLY >= totalSupply()){
            require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx");
        }else{
            require(MAX_PER_TX >= _amount , "Excess max per paid tx");
            require(_amount * price == msg.value, "Invalid funds provided");
        }

        _safeMint(_caller, _amount);
    }



    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
}

function setMAX_SUPPLY(uint256 newSupply) public onlyOwner {
        MAX_SUPPLY = newSupply;
}


    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000805560c06040526007608081905266697066733a2f2f60c81b60a09081526200002e91600891906200016a565b5060408051808201909152600780825266697066733a2f2f60c81b60209092019182526200005f916009916200016a565b5061267e600a556618838370f34000600b55600c805460ff191690553480156200008857600080fd5b50604080518082018252600f81526e2137b932b21025b7b2309025b63ab160891b602080830191825283518085019094526003845262424b4b60e81b908401528151919291620000db916001916200016a565b508051620000f19060029060208401906200016a565b5050506200010e620001086200011460201b60201c565b62000118565b6200024d565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001789062000210565b90600052602060002090601f0160209004810192826200019c5760008555620001e7565b82601f10620001b757805160ff1916838001178555620001e7565b82800160010185558215620001e7579182015b82811115620001e7578251825591602001919060010190620001ca565b50620001f5929150620001f9565b5090565b5b80821115620001f55760008155600101620001fa565b600181811c908216806200022557607f821691505b602082108114156200024757634e487b7160e01b600052602260045260246000fd5b50919050565b61238d806200025d6000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d485146105d3578063e985e9c5146105e8578063ec9496ba14610631578063f2fde38b14610651578063f43a22dc1461038f57600080fd5b8063b88d4fde1461053a578063c66828621461055a578063c87b56dd1461058b578063cd7c0326146105ab57600080fd5b8063938e3d7b116100e7578063938e3d7b146104bc57806395d89b41146104dc578063a035b1fe146104f1578063a0712d6814610507578063a22cb4651461051a57600080fd5b8063715018a6146104535780638069876d146104685780638da5cb5b1461047e57806391b7f5ed1461049c57600080fd5b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146103c45780635c975abb146103e45780636352211e146103fe5780636c0360eb1461041e57806370a082311461043357600080fd5b80633ccfd60b1461035a57806342842e0e1461036f578063463fff791461038f5780634f6ccce7146103a457600080fd5b8063095ea7b3116101e2578063095ea7b3146102c557806318160ddd146102e557806323b872dd146103045780632f745c591461032457806332cb6b0c1461034457600080fd5b806301ffc9a71461021457806302329a291461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004611f4c565b610671565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50610269610264366004611f31565b6106de565b005b34801561027757600080fd5b50610280610724565b6040516102409190612114565b34801561029957600080fd5b506102ad6102a8366004611fcf565b6107b6565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b506102696102e0366004611f07565b610841565b3480156102f157600080fd5b506000545b604051908152602001610240565b34801561031057600080fd5b5061026961031f366004611e25565b610959565b34801561033057600080fd5b506102f661033f366004611f07565b610964565b34801561035057600080fd5b506102f6600a5481565b34801561036657600080fd5b50610269610ad2565b34801561037b57600080fd5b5061026961038a366004611e25565b610b8b565b34801561039b57600080fd5b506102f6600a81565b3480156103b057600080fd5b506102f66103bf366004611fcf565b610ba6565b3480156103d057600080fd5b506102696103df366004611f86565b610c08565b3480156103f057600080fd5b50600c546102349060ff1681565b34801561040a57600080fd5b506102ad610419366004611fcf565b610c45565b34801561042a57600080fd5b50610280610c57565b34801561043f57600080fd5b506102f661044e366004611dd0565b610ce5565b34801561045f57600080fd5b50610269610d76565b34801561047457600080fd5b506102f6610fa081565b34801561048a57600080fd5b506007546001600160a01b03166102ad565b3480156104a857600080fd5b506102696104b7366004611fcf565b610dac565b3480156104c857600080fd5b506102696104d7366004611f86565b610ddb565b3480156104e857600080fd5b50610280610e18565b3480156104fd57600080fd5b506102f6600b5481565b610269610515366004611fcf565b610e27565b34801561052657600080fd5b50610269610535366004611edd565b611046565b34801561054657600080fd5b50610269610555366004611e61565b61110b565b34801561056657600080fd5b5061028060405180604001604052806005815260200164173539b7b760d91b81525081565b34801561059757600080fd5b506102806105a6366004611fcf565b611144565b3480156105b757600080fd5b506102ad73a5409ec958c83c3f309868babaca7c86dcb077c181565b3480156105df57600080fd5b50610280611210565b3480156105f457600080fd5b50610234610603366004611df2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561063d57600080fd5b5061026961064c366004611fcf565b61121d565b34801561065d57600080fd5b5061026961066c366004611dd0565b61124c565b60006001600160e01b031982166380ac58cd60e01b14806106a257506001600160e01b03198216635b5e139f60e01b145b806106bd57506001600160e01b0319821663780e9d6360e01b145b806106d857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107115760405162461bcd60e51b815260040161070890612127565b60405180910390fd5b600c805460ff1916911515919091179055565b6060600180546107339061227f565b80601f016020809104026020016040519081016040528092919081815260200182805461075f9061227f565b80156107ac5780601f10610781576101008083540402835291602001916107ac565b820191906000526020600020905b81548152906001019060200180831161078f57829003601f168201915b5050505050905090565b60006107c3826000541190565b6108255760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610708565b506000908152600560205260409020546001600160a01b031690565b600061084c82610c45565b9050806001600160a01b0316836001600160a01b031614156108bb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610708565b336001600160a01b03821614806108d757506108d78133610603565b6109495760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610708565b6109548383836112e7565b505050565b610954838383611343565b600061096f83610ce5565b82106109c85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610708565b600080549080805b83811015610a72576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a2357805192505b876001600160a01b0316836001600160a01b03161415610a5f5786841415610a51575093506106d892505050565b83610a5b816122ba565b9450505b5080610a6a816122ba565b9150506109d0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610708565b6007546001600160a01b03163314610afc5760405162461bcd60e51b815260040161070890612127565b6040514790600090339083908381818185875af1925050503d8060008114610b40576040519150601f19603f3d011682016040523d82523d6000602084013e610b45565b606091505b5050905080610b875760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610708565b5050565b6109548383836040518060200160405280600081525061110b565b600080548210610c045760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610708565b5090565b6007546001600160a01b03163314610c325760405162461bcd60e51b815260040161070890612127565b8051610b87906008906020840190611c9e565b6000610c508261168a565b5192915050565b60088054610c649061227f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c909061227f565b8015610cdd5780601f10610cb257610100808354040283529160200191610cdd565b820191906000526020600020905b815481529060010190602001808311610cc057829003601f168201915b505050505081565b60006001600160a01b038216610d515760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610708565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610da05760405162461bcd60e51b815260040161070890612127565b610daa600061176a565b565b6007546001600160a01b03163314610dd65760405162461bcd60e51b815260040161070890612127565b600b55565b6007546001600160a01b03163314610e055760405162461bcd60e51b815260040161070890612127565b8051610b87906009906020840190611c9e565b6060600280546107339061227f565b600c54339060ff1615610e655760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610708565b81610e6f60005490565b610e7991906121da565b600a541015610ebf5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610708565b60008211610efc5760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b6044820152606401610708565b326001600160a01b03821614610f435760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610708565b600054610fa010610f9d5781600a1015610f985760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b6044820152606401610708565b61103c565b81600a1015610fe75760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b6044820152606401610708565b34600b5483610ff69190612206565b1461103c5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610708565b610b8781836117bc565b6001600160a01b03821633141561109f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610708565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611116848484611343565b611122848484846117d6565b61113e5760405162461bcd60e51b81526004016107089061215c565b50505050565b6060611151826000541190565b6111955760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610708565b6000600880546111a49061227f565b9050116111c057604051806020016040528060008152506106d8565b60086111cb836118e4565b60405180604001604052806005815260200164173539b7b760d91b8152506040516020016111fb93929190612030565b60405160208183030381529060405292915050565b60098054610c649061227f565b6007546001600160a01b031633146112475760405162461bcd60e51b815260040161070890612127565b600a55565b6007546001600160a01b031633146112765760405162461bcd60e51b815260040161070890612127565b6001600160a01b0381166112db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610708565b6112e48161176a565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061134e8261168a565b80519091506000906001600160a01b0316336001600160a01b0316148061138557503361137a846107b6565b6001600160a01b0316145b80611397575081516113979033610603565b9050806114015760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610708565b846001600160a01b031682600001516001600160a01b0316146114755760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610708565b6001600160a01b0384166114d95760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610708565b6114e960008484600001516112e7565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906115ae9085906121da565b6000818152600360205260409020549091506001600160a01b0316611640576115d8816000541190565b156116405760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526116a9826000541190565b6117085760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610708565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611757579392505050565b508061176281612268565b91505061170a565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b878282604051806020016040528060008152506119e2565b60006001600160a01b0384163b156118d857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061181a9033908990889088906004016120e1565b602060405180830381600087803b15801561183457600080fd5b505af1925050508015611864575060408051601f3d908101601f1916820190925261186191810190611f69565b60015b6118be573d808015611892576040519150601f19603f3d011682016040523d82523d6000602084013e611897565b606091505b5080516118b65760405162461bcd60e51b81526004016107089061215c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118dc565b5060015b949350505050565b6060816119085750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611932578061191c816122ba565b915061192b9050600a836121f2565b915061190c565b60008167ffffffffffffffff81111561194d5761194d61232b565b6040519080825280601f01601f191660200182016040528015611977576020820181803683370190505b5090505b84156118dc5761198c600183612225565b9150611999600a866122d5565b6119a49060306121da565b60f81b8183815181106119b9576119b9612315565b60200101906001600160f81b031916908160001a9053506119db600a866121f2565b945061197b565b6000546001600160a01b038416611a455760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610708565b611a50816000541190565b15611a9d5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610708565b60008311611af95760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610708565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b559087906121af565b6001600160801b03168152602001858360200151611b7391906121af565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611c935760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c5760008884886117d6565b611c735760405162461bcd60e51b81526004016107089061215c565b81611c7d816122ba565b9250508080611c8b906122ba565b915050611c0a565b506000819055611682565b828054611caa9061227f565b90600052602060002090601f016020900481019282611ccc5760008555611d12565b82601f10611ce557805160ff1916838001178555611d12565b82800160010185558215611d12579182015b82811115611d12578251825591602001919060010190611cf7565b50610c049291505b80821115610c045760008155600101611d1a565b600067ffffffffffffffff80841115611d4957611d4961232b565b604051601f8501601f19908116603f01168101908282118183101715611d7157611d7161232b565b81604052809350858152868686011115611d8a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611dbb57600080fd5b919050565b80358015158114611dbb57600080fd5b600060208284031215611de257600080fd5b611deb82611da4565b9392505050565b60008060408385031215611e0557600080fd5b611e0e83611da4565b9150611e1c60208401611da4565b90509250929050565b600080600060608486031215611e3a57600080fd5b611e4384611da4565b9250611e5160208501611da4565b9150604084013590509250925092565b60008060008060808587031215611e7757600080fd5b611e8085611da4565b9350611e8e60208601611da4565b925060408501359150606085013567ffffffffffffffff811115611eb157600080fd5b8501601f81018713611ec257600080fd5b611ed187823560208401611d2e565b91505092959194509250565b60008060408385031215611ef057600080fd5b611ef983611da4565b9150611e1c60208401611dc0565b60008060408385031215611f1a57600080fd5b611f2383611da4565b946020939093013593505050565b600060208284031215611f4357600080fd5b611deb82611dc0565b600060208284031215611f5e57600080fd5b8135611deb81612341565b600060208284031215611f7b57600080fd5b8151611deb81612341565b600060208284031215611f9857600080fd5b813567ffffffffffffffff811115611faf57600080fd5b8201601f81018413611fc057600080fd5b6118dc84823560208401611d2e565b600060208284031215611fe157600080fd5b5035919050565b6000815180845261200081602086016020860161223c565b601f01601f19169290920160200192915050565b6000815161202681856020860161223c565b9290920192915050565b600080855481600182811c91508083168061204c57607f831692505b602080841082141561206c57634e487b7160e01b86526022600452602486fd5b8180156120805760018114612091576120be565b60ff198616895284890196506120be565b60008c81526020902060005b868110156120b65781548b82015290850190830161209d565b505084890196505b5050505050506120d76120d18287612014565b85612014565b9695505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120d790830184611fe8565b602081526000611deb6020830184611fe8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156121d1576121d16122e9565b01949350505050565b600082198211156121ed576121ed6122e9565b500190565b600082612201576122016122ff565b500490565b6000816000190483118215151615612220576122206122e9565b500290565b600082821015612237576122376122e9565b500390565b60005b8381101561225757818101518382015260200161223f565b8381111561113e5750506000910152565b600081612277576122776122e9565b506000190190565b600181811c9082168061229357607f821691505b602082108114156122b457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122ce576122ce6122e9565b5060010190565b6000826122e4576122e46122ff565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112e457600080fdfea2646970667358221220879f5d640218e5defd3a8e211fbba49fe9199e6c805dbde83fb0b96d7dceb81664736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d485146105d3578063e985e9c5146105e8578063ec9496ba14610631578063f2fde38b14610651578063f43a22dc1461038f57600080fd5b8063b88d4fde1461053a578063c66828621461055a578063c87b56dd1461058b578063cd7c0326146105ab57600080fd5b8063938e3d7b116100e7578063938e3d7b146104bc57806395d89b41146104dc578063a035b1fe146104f1578063a0712d6814610507578063a22cb4651461051a57600080fd5b8063715018a6146104535780638069876d146104685780638da5cb5b1461047e57806391b7f5ed1461049c57600080fd5b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146103c45780635c975abb146103e45780636352211e146103fe5780636c0360eb1461041e57806370a082311461043357600080fd5b80633ccfd60b1461035a57806342842e0e1461036f578063463fff791461038f5780634f6ccce7146103a457600080fd5b8063095ea7b3116101e2578063095ea7b3146102c557806318160ddd146102e557806323b872dd146103045780632f745c591461032457806332cb6b0c1461034457600080fd5b806301ffc9a71461021457806302329a291461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004611f4c565b610671565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50610269610264366004611f31565b6106de565b005b34801561027757600080fd5b50610280610724565b6040516102409190612114565b34801561029957600080fd5b506102ad6102a8366004611fcf565b6107b6565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b506102696102e0366004611f07565b610841565b3480156102f157600080fd5b506000545b604051908152602001610240565b34801561031057600080fd5b5061026961031f366004611e25565b610959565b34801561033057600080fd5b506102f661033f366004611f07565b610964565b34801561035057600080fd5b506102f6600a5481565b34801561036657600080fd5b50610269610ad2565b34801561037b57600080fd5b5061026961038a366004611e25565b610b8b565b34801561039b57600080fd5b506102f6600a81565b3480156103b057600080fd5b506102f66103bf366004611fcf565b610ba6565b3480156103d057600080fd5b506102696103df366004611f86565b610c08565b3480156103f057600080fd5b50600c546102349060ff1681565b34801561040a57600080fd5b506102ad610419366004611fcf565b610c45565b34801561042a57600080fd5b50610280610c57565b34801561043f57600080fd5b506102f661044e366004611dd0565b610ce5565b34801561045f57600080fd5b50610269610d76565b34801561047457600080fd5b506102f6610fa081565b34801561048a57600080fd5b506007546001600160a01b03166102ad565b3480156104a857600080fd5b506102696104b7366004611fcf565b610dac565b3480156104c857600080fd5b506102696104d7366004611f86565b610ddb565b3480156104e857600080fd5b50610280610e18565b3480156104fd57600080fd5b506102f6600b5481565b610269610515366004611fcf565b610e27565b34801561052657600080fd5b50610269610535366004611edd565b611046565b34801561054657600080fd5b50610269610555366004611e61565b61110b565b34801561056657600080fd5b5061028060405180604001604052806005815260200164173539b7b760d91b81525081565b34801561059757600080fd5b506102806105a6366004611fcf565b611144565b3480156105b757600080fd5b506102ad73a5409ec958c83c3f309868babaca7c86dcb077c181565b3480156105df57600080fd5b50610280611210565b3480156105f457600080fd5b50610234610603366004611df2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561063d57600080fd5b5061026961064c366004611fcf565b61121d565b34801561065d57600080fd5b5061026961066c366004611dd0565b61124c565b60006001600160e01b031982166380ac58cd60e01b14806106a257506001600160e01b03198216635b5e139f60e01b145b806106bd57506001600160e01b0319821663780e9d6360e01b145b806106d857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107115760405162461bcd60e51b815260040161070890612127565b60405180910390fd5b600c805460ff1916911515919091179055565b6060600180546107339061227f565b80601f016020809104026020016040519081016040528092919081815260200182805461075f9061227f565b80156107ac5780601f10610781576101008083540402835291602001916107ac565b820191906000526020600020905b81548152906001019060200180831161078f57829003601f168201915b5050505050905090565b60006107c3826000541190565b6108255760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610708565b506000908152600560205260409020546001600160a01b031690565b600061084c82610c45565b9050806001600160a01b0316836001600160a01b031614156108bb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610708565b336001600160a01b03821614806108d757506108d78133610603565b6109495760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610708565b6109548383836112e7565b505050565b610954838383611343565b600061096f83610ce5565b82106109c85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610708565b600080549080805b83811015610a72576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a2357805192505b876001600160a01b0316836001600160a01b03161415610a5f5786841415610a51575093506106d892505050565b83610a5b816122ba565b9450505b5080610a6a816122ba565b9150506109d0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610708565b6007546001600160a01b03163314610afc5760405162461bcd60e51b815260040161070890612127565b6040514790600090339083908381818185875af1925050503d8060008114610b40576040519150601f19603f3d011682016040523d82523d6000602084013e610b45565b606091505b5050905080610b875760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610708565b5050565b6109548383836040518060200160405280600081525061110b565b600080548210610c045760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610708565b5090565b6007546001600160a01b03163314610c325760405162461bcd60e51b815260040161070890612127565b8051610b87906008906020840190611c9e565b6000610c508261168a565b5192915050565b60088054610c649061227f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c909061227f565b8015610cdd5780601f10610cb257610100808354040283529160200191610cdd565b820191906000526020600020905b815481529060010190602001808311610cc057829003601f168201915b505050505081565b60006001600160a01b038216610d515760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610708565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610da05760405162461bcd60e51b815260040161070890612127565b610daa600061176a565b565b6007546001600160a01b03163314610dd65760405162461bcd60e51b815260040161070890612127565b600b55565b6007546001600160a01b03163314610e055760405162461bcd60e51b815260040161070890612127565b8051610b87906009906020840190611c9e565b6060600280546107339061227f565b600c54339060ff1615610e655760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610708565b81610e6f60005490565b610e7991906121da565b600a541015610ebf5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610708565b60008211610efc5760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b6044820152606401610708565b326001600160a01b03821614610f435760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610708565b600054610fa010610f9d5781600a1015610f985760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b6044820152606401610708565b61103c565b81600a1015610fe75760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b6044820152606401610708565b34600b5483610ff69190612206565b1461103c5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610708565b610b8781836117bc565b6001600160a01b03821633141561109f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610708565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611116848484611343565b611122848484846117d6565b61113e5760405162461bcd60e51b81526004016107089061215c565b50505050565b6060611151826000541190565b6111955760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610708565b6000600880546111a49061227f565b9050116111c057604051806020016040528060008152506106d8565b60086111cb836118e4565b60405180604001604052806005815260200164173539b7b760d91b8152506040516020016111fb93929190612030565b60405160208183030381529060405292915050565b60098054610c649061227f565b6007546001600160a01b031633146112475760405162461bcd60e51b815260040161070890612127565b600a55565b6007546001600160a01b031633146112765760405162461bcd60e51b815260040161070890612127565b6001600160a01b0381166112db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610708565b6112e48161176a565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061134e8261168a565b80519091506000906001600160a01b0316336001600160a01b0316148061138557503361137a846107b6565b6001600160a01b0316145b80611397575081516113979033610603565b9050806114015760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610708565b846001600160a01b031682600001516001600160a01b0316146114755760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610708565b6001600160a01b0384166114d95760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610708565b6114e960008484600001516112e7565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906115ae9085906121da565b6000818152600360205260409020549091506001600160a01b0316611640576115d8816000541190565b156116405760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526116a9826000541190565b6117085760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610708565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611757579392505050565b508061176281612268565b91505061170a565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b878282604051806020016040528060008152506119e2565b60006001600160a01b0384163b156118d857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061181a9033908990889088906004016120e1565b602060405180830381600087803b15801561183457600080fd5b505af1925050508015611864575060408051601f3d908101601f1916820190925261186191810190611f69565b60015b6118be573d808015611892576040519150601f19603f3d011682016040523d82523d6000602084013e611897565b606091505b5080516118b65760405162461bcd60e51b81526004016107089061215c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118dc565b5060015b949350505050565b6060816119085750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611932578061191c816122ba565b915061192b9050600a836121f2565b915061190c565b60008167ffffffffffffffff81111561194d5761194d61232b565b6040519080825280601f01601f191660200182016040528015611977576020820181803683370190505b5090505b84156118dc5761198c600183612225565b9150611999600a866122d5565b6119a49060306121da565b60f81b8183815181106119b9576119b9612315565b60200101906001600160f81b031916908160001a9053506119db600a866121f2565b945061197b565b6000546001600160a01b038416611a455760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610708565b611a50816000541190565b15611a9d5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610708565b60008311611af95760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610708565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b559087906121af565b6001600160801b03168152602001858360200151611b7391906121af565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611c935760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c5760008884886117d6565b611c735760405162461bcd60e51b81526004016107089061215c565b81611c7d816122ba565b9250508080611c8b906122ba565b915050611c0a565b506000819055611682565b828054611caa9061227f565b90600052602060002090601f016020900481019282611ccc5760008555611d12565b82601f10611ce557805160ff1916838001178555611d12565b82800160010185558215611d12579182015b82811115611d12578251825591602001919060010190611cf7565b50610c049291505b80821115610c045760008155600101611d1a565b600067ffffffffffffffff80841115611d4957611d4961232b565b604051601f8501601f19908116603f01168101908282118183101715611d7157611d7161232b565b81604052809350858152868686011115611d8a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611dbb57600080fd5b919050565b80358015158114611dbb57600080fd5b600060208284031215611de257600080fd5b611deb82611da4565b9392505050565b60008060408385031215611e0557600080fd5b611e0e83611da4565b9150611e1c60208401611da4565b90509250929050565b600080600060608486031215611e3a57600080fd5b611e4384611da4565b9250611e5160208501611da4565b9150604084013590509250925092565b60008060008060808587031215611e7757600080fd5b611e8085611da4565b9350611e8e60208601611da4565b925060408501359150606085013567ffffffffffffffff811115611eb157600080fd5b8501601f81018713611ec257600080fd5b611ed187823560208401611d2e565b91505092959194509250565b60008060408385031215611ef057600080fd5b611ef983611da4565b9150611e1c60208401611dc0565b60008060408385031215611f1a57600080fd5b611f2383611da4565b946020939093013593505050565b600060208284031215611f4357600080fd5b611deb82611dc0565b600060208284031215611f5e57600080fd5b8135611deb81612341565b600060208284031215611f7b57600080fd5b8151611deb81612341565b600060208284031215611f9857600080fd5b813567ffffffffffffffff811115611faf57600080fd5b8201601f81018413611fc057600080fd5b6118dc84823560208401611d2e565b600060208284031215611fe157600080fd5b5035919050565b6000815180845261200081602086016020860161223c565b601f01601f19169290920160200192915050565b6000815161202681856020860161223c565b9290920192915050565b600080855481600182811c91508083168061204c57607f831692505b602080841082141561206c57634e487b7160e01b86526022600452602486fd5b8180156120805760018114612091576120be565b60ff198616895284890196506120be565b60008c81526020902060005b868110156120b65781548b82015290850190830161209d565b505084890196505b5050505050506120d76120d18287612014565b85612014565b9695505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120d790830184611fe8565b602081526000611deb6020830184611fe8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156121d1576121d16122e9565b01949350505050565b600082198211156121ed576121ed6122e9565b500190565b600082612201576122016122ff565b500490565b6000816000190483118215151615612220576122206122e9565b500290565b600082821015612237576122376122e9565b500390565b60005b8381101561225757818101518382015260200161223f565b8381111561113e5750506000910152565b600081612277576122776122e9565b506000190190565b600181811c9082168061229357607f821691505b602082108114156122b457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122ce576122ce6122e9565b5060010190565b6000826122e4576122e46122ff565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112e457600080fdfea2646970667358221220879f5d640218e5defd3a8e211fbba49fe9199e6c805dbde83fb0b96d7dceb81664736f6c63430008070033

Deployed Bytecode Sourcemap

38083:2375:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26097:372;;;;;;;;;;-1:-1:-1;26097:372:0;;;;;:::i;:::-;;:::i;:::-;;;7082:14:1;;7075:22;7057:41;;7045:2;7030:18;26097:372:0;;;;;;;;39582:81;;;;;;;;;;-1:-1:-1;39582:81:0;;;;;:::i;:::-;;:::i;:::-;;27724:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29285:214::-;;;;;;;;;;-1:-1:-1;29285:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6380:32:1;;;6362:51;;6350:2;6335:18;29285:214:0;6216:203:1;28806:413:0;;;;;;;;;;-1:-1:-1;28806:413:0;;;;;:::i;:::-;;:::i;24538:100::-;;;;;;;;;;-1:-1:-1;24591:7:0;24618:12;24538:100;;;18229:25:1;;;18217:2;18202:18;24538:100:0;18083:177:1;30161:162:0;;;;;;;;;;-1:-1:-1;30161:162:0;;;;;:::i;:::-;;:::i;25202:823::-;;;;;;;;;;-1:-1:-1;25202:823:0;;;;;:::i;:::-;;:::i;38520:32::-;;;;;;;;;;;;;;;;39365:209;;;;;;;;;;;;;:::i;30394:177::-;;;;;;;;;;-1:-1:-1;30394:177:0;;;;;:::i;:::-;;:::i;38370:44::-;;;;;;;;;;;;38412:2;38370:44;;24715:187;;;;;;;;;;-1:-1:-1;24715:187:0;;;;;:::i;:::-;;:::i;39671:100::-;;;;;;;;;;-1:-1:-1;39671:100:0;;;;;:::i;:::-;;:::i;38603:26::-;;;;;;;;;;-1:-1:-1;38603:26:0;;;;;;;;27533:124;;;;;;;;;;-1:-1:-1;27533:124:0;;;;;:::i;:::-;;:::i;38135:33::-;;;;;;;;;;;;;:::i;26533:221::-;;;;;;;;;;-1:-1:-1;26533:221:0;;;;;:::i;:::-;;:::i;2575:103::-;;;;;;;;;;;;;:::i;38467:46::-;;;;;;;;;;;;38509:4;38467:46;;1924:87;;;;;;;;;;-1:-1:-1;1997:6:0;;-1:-1:-1;;;;;1997:6:0;1924:87;;39899:84;;;;;;;;;;-1:-1:-1;39899:84:0;;;;;:::i;:::-;;:::i;39779:116::-;;;;;;;;;;-1:-1:-1;39779:116:0;;;;;:::i;:::-;;:::i;27893:104::-;;;;;;;;;;;;;:::i;38559:35::-;;;;;;;;;;;;;;;;38696:657;;;;;;:::i;:::-;;:::i;29571:288::-;;;;;;;;;;-1:-1:-1;29571:288:0;;;;;:::i;:::-;;:::i;30642:355::-;;;;;;;;;;-1:-1:-1;30642:355:0;;;;;:::i;:::-;;:::i;38219:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;38219:46:0;;;;;40093:362;;;;;;;;;;-1:-1:-1;40093:362:0;;;;;:::i;:::-;;:::i;38272:89::-;;;;;;;;;;;;38319:42;38272:89;;38175:37;;;;;;;;;;;;;:::i;29930:164::-;;;;;;;;;;-1:-1:-1;29930:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30051:25:0;;;30027:4;30051:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29930:164;39987:96;;;;;;;;;;-1:-1:-1;39987:96:0;;;;;:::i;:::-;;:::i;2833:201::-;;;;;;;;;;-1:-1:-1;2833:201:0;;;;;:::i;:::-;;:::i;26097:372::-;26199:4;-1:-1:-1;;;;;;26236:40:0;;-1:-1:-1;;;26236:40:0;;:105;;-1:-1:-1;;;;;;;26293:48:0;;-1:-1:-1;;;26293:48:0;26236:105;:172;;;-1:-1:-1;;;;;;;26358:50:0;;-1:-1:-1;;;26358:50:0;26236:172;:225;;;-1:-1:-1;;;;;;;;;;22710:40:0;;;26425:36;26216:245;26097:372;-1:-1:-1;;26097:372:0:o;39582:81::-;1997:6;;-1:-1:-1;;;;;1997:6:0;745:10;2144:23;2136:68;;;;-1:-1:-1;;;2136:68:0;;;;;;;:::i;:::-;;;;;;;;;39640:6:::1;:15:::0;;-1:-1:-1;;39640:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39582:81::o;27724:100::-;27778:13;27811:5;27804:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27724:100;:::o;29285:214::-;29353:7;29381:16;29389:7;31309:4;31343:12;-1:-1:-1;31333:22:0;31252:111;29381:16;29373:74;;;;-1:-1:-1;;;29373:74:0;;17530:2:1;29373:74:0;;;17512:21:1;17569:2;17549:18;;;17542:30;17608:34;17588:18;;;17581:62;-1:-1:-1;;;17659:18:1;;;17652:43;17712:19;;29373:74:0;17328:409:1;29373:74:0;-1:-1:-1;29467:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29467:24:0;;29285:214::o;28806:413::-;28879:13;28895:24;28911:7;28895:15;:24::i;:::-;28879:40;;28944:5;-1:-1:-1;;;;;28938:11:0;:2;-1:-1:-1;;;;;28938:11:0;;;28930:58;;;;-1:-1:-1;;;28930:58:0;;14369:2:1;28930:58:0;;;14351:21:1;14408:2;14388:18;;;14381:30;14447:34;14427:18;;;14420:62;-1:-1:-1;;;14498:18:1;;;14491:32;14540:19;;28930:58:0;14167:398:1;28930:58:0;745:10;-1:-1:-1;;;;;29023:21:0;;;;:62;;-1:-1:-1;29048:37:0;29065:5;745:10;29930:164;:::i;29048:37::-;29001:169;;;;-1:-1:-1;;;29001:169:0;;10941:2:1;29001:169:0;;;10923:21:1;10980:2;10960:18;;;10953:30;11019:34;10999:18;;;10992:62;11090:27;11070:18;;;11063:55;11135:19;;29001:169:0;10739:421:1;29001:169:0;29183:28;29192:2;29196:7;29205:5;29183:8;:28::i;:::-;28868:351;28806:413;;:::o;30161:162::-;30287:28;30297:4;30303:2;30307:7;30287:9;:28::i;25202:823::-;25291:7;25327:16;25337:5;25327:9;:16::i;:::-;25319:5;:24;25311:71;;;;-1:-1:-1;;;25311:71:0;;7535:2:1;25311:71:0;;;7517:21:1;7574:2;7554:18;;;7547:30;7613:34;7593:18;;;7586:62;-1:-1:-1;;;7664:18:1;;;7657:32;7706:19;;25311:71:0;7333:398:1;25311:71:0;25393:22;24618:12;;;25393:22;;25525:426;25549:14;25545:1;:18;25525:426;;;25585:31;25619:14;;;:11;:14;;;;;;;;;25585:48;;;;;;;;;-1:-1:-1;;;;;25585:48:0;;;;;-1:-1:-1;;;25585:48:0;;;;;;;;;;;;25652:28;25648:103;;25721:14;;;-1:-1:-1;25648:103:0;25790:5;-1:-1:-1;;;;;25769:26:0;:17;-1:-1:-1;;;;;25769:26:0;;25765:175;;;25835:5;25820:11;:20;25816:77;;;-1:-1:-1;25872:1:0;-1:-1:-1;25865:8:0;;-1:-1:-1;;;25865:8:0;25816:77;25911:13;;;;:::i;:::-;;;;25765:175;-1:-1:-1;25565:3:0;;;;:::i;:::-;;;;25525:426;;;-1:-1:-1;25961:56:0;;-1:-1:-1;;;25961:56:0;;16699:2:1;25961:56:0;;;16681:21:1;16738:2;16718:18;;;16711:30;16777:34;16757:18;;;16750:62;-1:-1:-1;;;16828:18:1;;;16821:44;16882:19;;25961:56:0;16497:410:1;39365:209:0;1997:6;;-1:-1:-1;;;;;1997:6:0;745:10;2144:23;2136:68;;;;-1:-1:-1;;;2136:68:0;;;;;;;:::i;:::-;39484:37:::1;::::0;39433:21:::1;::::0;39415:15:::1;::::0;745:10;;39433:21;;39415:15;39484:37;39415:15;39484:37;39433:21;745:10;39484:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39465:56;;;39540:7;39532:34;;;::::0;-1:-1:-1;;;39532:34:0;;16356:2:1;39532:34:0::1;::::0;::::1;16338:21:1::0;16395:2;16375:18;;;16368:30;-1:-1:-1;;;16414:18:1;;;16407:44;16468:18;;39532:34:0::1;16154:338:1::0;39532:34:0::1;39404:170;;39365:209::o:0;30394:177::-;30524:39;30541:4;30547:2;30551:7;30524:39;;;;;;;;;;;;:16;:39::i;24715:187::-;24782:7;24618:12;;24810:5;:21;24802:69;;;;-1:-1:-1;;;24802:69:0;;9780:2:1;24802:69:0;;;9762:21:1;9819:2;9799:18;;;9792:30;9858:34;9838:18;;;9831:62;-1:-1:-1;;;9909:18:1;;;9902:33;9952:19;;24802:69:0;9578:399:1;24802:69:0;-1:-1:-1;24889:5:0;24715:187::o;39671:100::-;1997:6;;-1:-1:-1;;;;;1997:6:0;745:10;2144:23;2136:68;;;;-1:-1:-1;;;2136:68:0;;;;;;;:::i;:::-;39745:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;27533:124::-:0;27597:7;27624:20;27636:7;27624:11;:20::i;:::-;:25;;27533:124;-1:-1:-1;;27533:124:0:o;38135:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26533:221::-;26597:7;-1:-1:-1;;;;;26625:19:0;;26617:75;;;;-1:-1:-1;;;26617:75:0;;11714:2:1;26617:75:0;;;11696:21:1;11753:2;11733:18;;;11726:30;11792:34;11772:18;;;11765:62;-1:-1:-1;;;11843:18:1;;;11836:41;11894:19;;26617:75:0;11512:407:1;26617:75:0;-1:-1:-1;;;;;;26718:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26718:27:0;;26533:221::o;2575:103::-;1997:6;;-1:-1:-1;;;;;1997:6:0;745:10;2144:23;2136:68;;;;-1:-1:-1;;;2136:68:0;;;;;;;:::i;:::-;2640:30:::1;2667:1;2640:18;:30::i;:::-;2575:103::o:0;39899:84::-;1997:6;;-1:-1:-1;;;;;1997:6:0;745:10;2144:23;2136:68;;;;-1:-1:-1;;;2136:68:0;;;;;;;:::i;:::-;39963:5:::1;:16:::0;39899:84::o;39779:116::-;1997:6;;-1:-1:-1;;;;;1997:6:0;745:10;2144:23;2136:68;;;;-1:-1:-1;;;2136:68:0;;;;;;;:::i;:::-;39861:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;27893:104::-:0;27949:13;27982:7;27975:14;;;;;:::i;38696:657::-;38805:6;;745:10;;38805:6;;38804:7;38796:26;;;;-1:-1:-1;;;38796:26:0;;7938:2:1;38796:26:0;;;7920:21:1;7977:1;7957:18;;;7950:29;-1:-1:-1;;;7995:18:1;;;7988:36;8041:18;;38796:26:0;7736:329:1;38796:26:0;38871:7;38855:13;24591:7;24618:12;;24538:100;38855:13;:23;;;;:::i;:::-;38841:10;;:37;;38833:68;;;;-1:-1:-1;;;38833:68:0;;11367:2:1;38833:68:0;;;11349:21:1;11406:2;11386:18;;;11379:30;-1:-1:-1;;;11425:18:1;;;11418:48;11483:18;;38833:68:0;11165:342:1;38833:68:0;38930:1;38920:7;:11;38912:34;;;;-1:-1:-1;;;38912:34:0;;9090:2:1;38912:34:0;;;9072:21:1;9129:2;9109:18;;;9102:30;-1:-1:-1;;;9148:18:1;;;9141:40;9198:18;;38912:34:0;8888:334:1;38912:34:0;38965:9;-1:-1:-1;;;;;38965:20:0;;;38957:45;;;;-1:-1:-1;;;38957:45:0;;17944:2:1;38957:45:0;;;17926:21:1;17983:2;17963:18;;;17956:30;-1:-1:-1;;;18002:18:1;;;17995:42;18054:18;;38957:45:0;17742:336:1;38957:45:0;24591:7;24618:12;38509:4;39018:32;39015:291;;39093:7;38412:2;39074:26;;39066:62;;;;-1:-1:-1;;;39066:62:0;;10590:2:1;39066:62:0;;;10572:21:1;10629:2;10609:18;;;10602:30;-1:-1:-1;;;10648:18:1;;;10641:52;10710:18;;39066:62:0;10388:346:1;39066:62:0;39015:291;;;39181:7;38458:2;39167:21;;39159:57;;;;-1:-1:-1;;;39159:57:0;;9429:2:1;39159:57:0;;;9411:21:1;9468:2;9448:18;;;9441:30;-1:-1:-1;;;9487:18:1;;;9480:52;9549:18;;39159:57:0;9227:346:1;39159:57:0;39258:9;39249:5;;39239:7;:15;;;;:::i;:::-;:28;39231:63;;;;-1:-1:-1;;;39231:63:0;;14018:2:1;39231:63:0;;;14000:21:1;14057:2;14037:18;;;14030:30;-1:-1:-1;;;14076:18:1;;;14069:52;14138:18;;39231:63:0;13816:346:1;39231:63:0;39318:27;39328:7;39337;39318:9;:27::i;29571:288::-;-1:-1:-1;;;;;29666:24:0;;745:10;29666:24;;29658:63;;;;-1:-1:-1;;;29658:63:0;;13244:2:1;29658:63:0;;;13226:21:1;13283:2;13263:18;;;13256:30;13322:28;13302:18;;;13295:56;13368:18;;29658:63:0;13042:350:1;29658:63:0;745:10;29734:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29734:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29734:53:0;;;;;;;;;;29803:48;;7057:41:1;;;29734:42:0;;745:10;29803:48;;7030:18:1;29803:48:0;;;;;;;29571:288;;:::o;30642:355::-;30801:28;30811:4;30817:2;30821:7;30801:9;:28::i;:::-;30862:48;30885:4;30891:2;30895:7;30904:5;30862:22;:48::i;:::-;30840:149;;;;-1:-1:-1;;;30840:149:0;;;;;;;:::i;:::-;30642:355;;;;:::o;40093:362::-;40159:13;40193:17;40201:8;31309:4;31343:12;-1:-1:-1;31333:22:0;31252:111;40193:17;40185:51;;;;-1:-1:-1;;;40185:51:0;;12126:2:1;40185:51:0;;;12108:21:1;12165:2;12145:18;;;12138:30;-1:-1:-1;;;12184:18:1;;;12177:51;12245:18;;40185:51:0;11924:345:1;40185:51:0;40278:1;40260:7;40254:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;40336:7;40360:26;40377:8;40360:16;:26::i;:::-;40403:13;;;;;;;;;;;;;-1:-1:-1;;;40403:13:0;;;40303:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40247:200;40093:362;-1:-1:-1;;40093:362:0:o;38175:37::-;;;;;;;:::i;39987:96::-;1997:6;;-1:-1:-1;;;;;1997:6:0;745:10;2144:23;2136:68;;;;-1:-1:-1;;;2136:68:0;;;;;;;:::i;:::-;40057:10:::1;:22:::0;39987:96::o;2833:201::-;1997:6;;-1:-1:-1;;;;;1997:6:0;745:10;2144:23;2136:68;;;;-1:-1:-1;;;2136:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2922:22:0;::::1;2914:73;;;::::0;-1:-1:-1;;;2914:73:0;;8272:2:1;2914:73:0::1;::::0;::::1;8254:21:1::0;8311:2;8291:18;;;8284:30;8350:34;8330:18;;;8323:62;-1:-1:-1;;;8401:18:1;;;8394:36;8447:19;;2914:73:0::1;8070:402:1::0;2914:73:0::1;2998:28;3017:8;2998:18;:28::i;:::-;2833:201:::0;:::o;35294:196::-;35409:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35409:29:0;-1:-1:-1;;;;;35409:29:0;;;;;;;;;35454:28;;35409:24;;35454:28;;;;;;;35294:196;;;:::o;33393:1783::-;33508:35;33546:20;33558:7;33546:11;:20::i;:::-;33621:18;;33508:58;;-1:-1:-1;33579:22:0;;-1:-1:-1;;;;;33605:34:0;745:10;-1:-1:-1;;;;;33605:34:0;;:87;;;-1:-1:-1;745:10:0;33656:20;33668:7;33656:11;:20::i;:::-;-1:-1:-1;;;;;33656:36:0;;33605:87;:154;;;-1:-1:-1;33726:18:0;;33709:50;;745:10;29930:164;:::i;33709:50::-;33579:181;;33781:17;33773:80;;;;-1:-1:-1;;;33773:80:0;;13599:2:1;33773:80:0;;;13581:21:1;13638:2;13618:18;;;13611:30;13677:34;13657:18;;;13650:62;-1:-1:-1;;;13728:18:1;;;13721:48;13786:19;;33773:80:0;13397:414:1;33773:80:0;33896:4;-1:-1:-1;;;;;33874:26:0;:13;:18;;;-1:-1:-1;;;;;33874:26:0;;33866:77;;;;-1:-1:-1;;;33866:77:0;;12476:2:1;33866:77:0;;;12458:21:1;12515:2;12495:18;;;12488:30;12554:34;12534:18;;;12527:62;-1:-1:-1;;;12605:18:1;;;12598:36;12651:19;;33866:77:0;12274:402:1;33866:77:0;-1:-1:-1;;;;;33962:16:0;;33954:66;;;;-1:-1:-1;;;33954:66:0;;10184:2:1;33954:66:0;;;10166:21:1;10223:2;10203:18;;;10196:30;10262:34;10242:18;;;10235:62;-1:-1:-1;;;10313:18:1;;;10306:35;10358:19;;33954:66:0;9982:401:1;33954:66:0;34141:49;34158:1;34162:7;34171:13;:18;;;34141:8;:49::i;:::-;-1:-1:-1;;;;;34395:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;34395:31:0;;;-1:-1:-1;;;;;34395:31:0;;;-1:-1:-1;;34395:31:0;;;;;;;34441:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34441:29:0;;;;;;;;;;;;;34517:43;;;;;;;;;;34543:15;34517:43;;;;;;;;;;34494:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;34494:66:0;;;;;;;-1:-1:-1;;;34494:66:0;;;;;;;;;;;;34395:18;34822:11;;34494:20;;34822:11;:::i;:::-;34889:1;34848:24;;;:11;:24;;;;;:29;34800:33;;-1:-1:-1;;;;;;34848:29:0;34844:227;;34912:20;34920:11;31309:4;31343:12;-1:-1:-1;31333:22:0;31252:111;34912:20;34908:152;;;34980:64;;;;;;;;34995:18;;-1:-1:-1;;;;;34980:64:0;;;;;;35015:28;;;;34980:64;;;;;;;;;;-1:-1:-1;34953:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;34953:91:0;-1:-1:-1;;;;;;34953:91:0;;;;;;;;;;;;34908:152;35107:7;35103:2;-1:-1:-1;;;;;35088:27:0;35097:4;-1:-1:-1;;;;;35088:27:0;;;;;;;;;;;35126:42;33497:1679;;;33393:1783;;;:::o;26999:472::-;-1:-1:-1;;;;;;;;;;;;;;;;;27102:16:0;27110:7;31309:4;31343:12;-1:-1:-1;31333:22:0;31252:111;27102:16;27094:71;;;;-1:-1:-1;;;27094:71:0;;8679:2:1;27094:71:0;;;8661:21:1;8718:2;8698:18;;;8691:30;8757:34;8737:18;;;8730:62;-1:-1:-1;;;8808:18:1;;;8801:40;8858:19;;27094:71:0;8477:406:1;27094:71:0;27198:7;27178:216;27232:31;27266:17;;;:11;:17;;;;;;;;;27232:51;;;;;;;;;-1:-1:-1;;;;;27232:51:0;;;;;-1:-1:-1;;;27232:51:0;;;;;;;;;;;;27302:28;27298:85;;27358:9;26999:472;-1:-1:-1;;;26999:472:0:o;27298:85::-;-1:-1:-1;27209:6:0;;;;:::i;:::-;;;;27178:216;;3194:191;3287:6;;;-1:-1:-1;;;;;3304:17:0;;;-1:-1:-1;;;;;;3304:17:0;;;;;;;3337:40;;3287:6;;;3304:17;3287:6;;3337:40;;3268:16;;3337:40;3257:128;3194:191;:::o;31371:104::-;31440:27;31450:2;31454:8;31440:27;;;;;;;;;;;;:9;:27::i;36055:804::-;36210:4;-1:-1:-1;;;;;36231:13:0;;14816:20;14864:8;36227:625;;36267:72;;-1:-1:-1;;;36267:72:0;;-1:-1:-1;;;;;36267:36:0;;;;;:72;;745:10;;36318:4;;36324:7;;36333:5;;36267:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36267:72:0;;;;;;;;-1:-1:-1;;36267:72:0;;;;;;;;;;;;:::i;:::-;;;36263:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36513:13:0;;36509:273;;36556:61;;-1:-1:-1;;;36556:61:0;;;;;;;:::i;36509:273::-;36732:6;36726:13;36717:6;36713:2;36709:15;36702:38;36263:534;-1:-1:-1;;;;;;36390:55:0;-1:-1:-1;;;36390:55:0;;-1:-1:-1;36383:62:0;;36227:625;-1:-1:-1;36836:4:0;36227:625;36055:804;;;;;;:::o;3742:723::-;3798:13;4019:10;4015:53;;-1:-1:-1;;4046:10:0;;;;;;;;;;;;-1:-1:-1;;;4046:10:0;;;;;3742:723::o;4015:53::-;4093:5;4078:12;4134:78;4141:9;;4134:78;;4167:8;;;;:::i;:::-;;-1:-1:-1;4190:10:0;;-1:-1:-1;4198:2:0;4190:10;;:::i;:::-;;;4134:78;;;4222:19;4254:6;4244:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4244:17:0;;4222:39;;4272:154;4279:10;;4272:154;;4306:11;4316:1;4306:11;;:::i;:::-;;-1:-1:-1;4375:10:0;4383:2;4375:5;:10;:::i;:::-;4362:24;;:2;:24;:::i;:::-;4349:39;;4332:6;4339;4332:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4332:56:0;;;;;;;;-1:-1:-1;4403:11:0;4412:2;4403:11;;:::i;:::-;;;4272:154;;31752:1387;31875:20;31898:12;-1:-1:-1;;;;;31929:16:0;;31921:62;;;;-1:-1:-1;;;31921:62:0;;15954:2:1;31921:62:0;;;15936:21:1;15993:2;15973:18;;;15966:30;16032:34;16012:18;;;16005:62;-1:-1:-1;;;16083:18:1;;;16076:31;16124:19;;31921:62:0;15752:397:1;31921:62:0;32128:21;32136:12;31309:4;31343:12;-1:-1:-1;31333:22:0;31252:111;32128:21;32127:22;32119:64;;;;-1:-1:-1;;;32119:64:0;;15596:2:1;32119:64:0;;;15578:21:1;15635:2;15615:18;;;15608:30;15674:31;15654:18;;;15647:59;15723:18;;32119:64:0;15394:353:1;32119:64:0;32213:1;32202:8;:12;32194:60;;;;-1:-1:-1;;;32194:60:0;;14772:2:1;32194:60:0;;;14754:21:1;14811:2;14791:18;;;14784:30;14850:34;14830:18;;;14823:62;-1:-1:-1;;;14901:18:1;;;14894:33;14944:19;;32194:60:0;14570:399:1;32194:60:0;-1:-1:-1;;;;;32374:16:0;;32341:30;32374:16;;;:12;:16;;;;;;;;;32341:49;;;;;;;;;-1:-1:-1;;;;;32341:49:0;;;;;-1:-1:-1;;;32341:49:0;;;;;;;;;;;32420:135;;;;;;;;32446:19;;32341:49;;32420:135;;;32446:39;;32476:8;;32446:39;:::i;:::-;-1:-1:-1;;;;;32420:135:0;;;;;32535:8;32500:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;32420:135:0;;;;;;-1:-1:-1;;;;;32401:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;32401:154:0;;;;;;;;;;;;32594:43;;;;;;;;;;;32620:15;32594:43;;;;;;;;32566:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;32566:71:0;-1:-1:-1;;;;;;32566:71:0;;;;;;;;;;;;;;;;;;32578:12;;32698:325;32722:8;32718:1;:12;32698:325;;;32757:38;;32782:12;;-1:-1:-1;;;;;32757:38:0;;;32774:1;;32757:38;;32774:1;;32757:38;32836:59;32867:1;32871:2;32875:12;32889:5;32836:22;:59::i;:::-;32810:172;;;;-1:-1:-1;;;32810:172:0;;;;;;;:::i;:::-;32997:14;;;;:::i;:::-;;;;32732:3;;;;;:::i;:::-;;;;32698:325;;;-1:-1:-1;33033:12:0;:27;;;33071:60;30642:355;-1:-1:-1;;;;;;;:::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;:::-;1134:39;993:186;-1:-1:-1;;;993:186:1:o;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:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:185::-;4604:3;4642:5;4636:12;4657:52;4702:6;4697:3;4690:4;4683:5;4679:16;4657:52;:::i;:::-;4725:16;;;;;4562:185;-1:-1:-1;;4562:185:1:o;4752:1249::-;4976:3;5005:1;5038:6;5032:13;5068:3;5090:1;5118:9;5114:2;5110:18;5100:28;;5178:2;5167:9;5163:18;5200;5190:61;;5244:4;5236:6;5232:17;5222:27;;5190:61;5270:2;5318;5310:6;5307:14;5287:18;5284:38;5281:165;;;-1:-1:-1;;;5345:33:1;;5401:4;5398:1;5391:15;5431:4;5352:3;5419:17;5281:165;5462:18;5489:104;;;;5607:1;5602:320;;;;5455:467;;5489:104;-1:-1:-1;;5522:24:1;;5510:37;;5567:16;;;;-1:-1:-1;5489:104:1;;5602:320;18338:1;18331:14;;;18375:4;18362:18;;5697:1;5711:165;5725:6;5722:1;5719:13;5711:165;;;5803:14;;5790:11;;;5783:35;5846:16;;;;5740:10;;5711:165;;;5715:3;;5905:6;5900:3;5896:16;5889:23;;5455:467;;;;;;;5938:57;5964:30;5990:3;5982:6;5964:30;:::i;:::-;5956:6;5938:57;:::i;:::-;5931:64;4752:1249;-1:-1:-1;;;;;;4752:1249:1:o;6424:488::-;-1:-1:-1;;;;;6693:15:1;;;6675:34;;6745:15;;6740:2;6725:18;;6718:43;6792:2;6777:18;;6770:34;;;6840:3;6835:2;6820:18;;6813:31;;;6618:4;;6861:45;;6886:19;;6878:6;6861:45;:::i;7109:219::-;7258:2;7247:9;7240:21;7221:4;7278:44;7318:2;7307:9;7303:18;7295:6;7278:44;:::i;12681:356::-;12883:2;12865:21;;;12902:18;;;12895:30;12961:34;12956:2;12941:18;;12934:62;13028:2;13013:18;;12681:356::o;14974:415::-;15176:2;15158:21;;;15215:2;15195:18;;;15188:30;15254:34;15249:2;15234:18;;15227:62;-1:-1:-1;;;15320:2:1;15305:18;;15298:49;15379:3;15364:19;;14974:415::o;18391:253::-;18431:3;-1:-1:-1;;;;;18520:2:1;18517:1;18513:10;18550:2;18547:1;18543:10;18581:3;18577:2;18573:12;18568:3;18565:21;18562:47;;;18589:18;;:::i;:::-;18625:13;;18391:253;-1:-1:-1;;;;18391:253:1:o;18649:128::-;18689:3;18720:1;18716:6;18713:1;18710:13;18707:39;;;18726:18;;:::i;:::-;-1:-1:-1;18762:9:1;;18649:128::o;18782:120::-;18822:1;18848;18838:35;;18853:18;;:::i;:::-;-1:-1:-1;18887:9:1;;18782:120::o;18907:168::-;18947:7;19013:1;19009;19005:6;19001:14;18998:1;18995:21;18990:1;18983:9;18976:17;18972:45;18969:71;;;19020:18;;:::i;:::-;-1:-1:-1;19060:9:1;;18907:168::o;19080:125::-;19120:4;19148:1;19145;19142:8;19139:34;;;19153:18;;:::i;:::-;-1:-1:-1;19190:9:1;;19080:125::o;19210:258::-;19282:1;19292:113;19306:6;19303:1;19300:13;19292:113;;;19382:11;;;19376:18;19363:11;;;19356:39;19328:2;19321:10;19292:113;;;19423:6;19420:1;19417:13;19414:48;;;-1:-1:-1;;19458:1:1;19440:16;;19433:27;19210:258::o;19473:136::-;19512:3;19540:5;19530:39;;19549:18;;:::i;:::-;-1:-1:-1;;;19585:18:1;;19473:136::o;19614:380::-;19693:1;19689:12;;;;19736;;;19757:61;;19811:4;19803:6;19799:17;19789:27;;19757:61;19864:2;19856:6;19853:14;19833:18;19830:38;19827:161;;;19910:10;19905:3;19901:20;19898:1;19891:31;19945:4;19942:1;19935:15;19973:4;19970:1;19963:15;19827:161;;19614:380;;;:::o;19999:135::-;20038:3;-1:-1:-1;;20059:17:1;;20056:43;;;20079:18;;:::i;:::-;-1:-1:-1;20126:1:1;20115:13;;19999:135::o;20139:112::-;20171:1;20197;20187:35;;20202:18;;:::i;:::-;-1:-1:-1;20236:9:1;;20139:112::o;20256:127::-;20317:10;20312:3;20308:20;20305:1;20298:31;20348:4;20345:1;20338:15;20372:4;20369:1;20362:15;20388:127;20449:10;20444:3;20440:20;20437:1;20430:31;20480:4;20477:1;20470:15;20504:4;20501:1;20494:15;20520:127;20581:10;20576:3;20572:20;20569:1;20562:31;20612:4;20609:1;20602:15;20636:4;20633:1;20626:15;20652:127;20713:10;20708:3;20704:20;20701:1;20694:31;20744:4;20741:1;20734:15;20768:4;20765:1;20758:15;20784:131;-1:-1:-1;;;;;;20858:32:1;;20848:43;;20838:71;;20905:1;20902;20895:12

Swarm Source

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