ETH Price: $3,417.28 (-0.63%)
Gas: 2 Gwei

Token

baby goblinz (babygoblinz)
 

Overview

Max Total Supply

5,000 babygoblinz

Holders

2,707

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 babygoblinz
0x827f07bf08d3c22f90d2d89509d726108169478e
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:
babygoblinz

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-25
*/

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

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


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


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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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


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


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


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


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

    // 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 {}
}


// File contracts/babygoblinz.sol


contract babygoblinz is ERC721A, Ownable {

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

    uint256 public constant MAX_PER_TX_FREE = 2;
    uint256 public constant MAX_PER_TX = 5;
    uint256 public constant FREE_MAX_SUPPLY = 1000;
    uint256 public constant MAX_SUPPLY = 5000;
    uint256 public constant MAX_PER_WALLET = 10;
    uint256 public price = 0.0069 ether;

    bool public paused = true;

    constructor() ERC721A("baby goblinz", "babygoblinz") {}

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

        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 setCost(uint256 _newCost) public onlyOwner {
        price = _newCost;
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

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

    function setupOS() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }

    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 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 OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

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_PER_WALLET","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":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","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"}]

6001600090815560a0604081905260808290526200002191600891906200014f565b5060408051602081019182905260009081905262000042916009916200014f565b506618838370f34000600a55600b805460ff191660011790553480156200006857600080fd5b50604080518082018252600c81526b3130b13c9033b7b13634b73d60a11b60208083019182528351808501909452600b84526a3130b13cb3b7b13634b73d60a91b908401528151919291620000c0916001916200014f565b508051620000d69060029060208401906200014f565b505050620000f3620000ed620000f960201b60201c565b620000fd565b62000232565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015d90620001f5565b90600052602060002090601f016020900481019282620001815760008555620001cc565b82601f106200019c57805160ff1916838001178555620001cc565b82800160010185558215620001cc579182015b82811115620001cc578251825591602001919060010190620001af565b50620001da929150620001de565b5090565b5b80821115620001da5760008155600101620001df565b600181811c908216806200020a57607f821691505b602082108114156200022c57634e487b7160e01b600052602260045260246000fd5b50919050565b61251780620002426000396000f3fe60806040526004361061021a5760003560e01c8063698982ba11610123578063a0712d68116100ab578063cd7c03261161006f578063cd7c0326146105e4578063e8a3d4851461060c578063e985e9c514610621578063f2fde38b14610641578063f43a22dc1461066157600080fd5b8063a0712d6814610540578063a22cb46514610553578063b88d4fde14610573578063c668286214610593578063c87b56dd146105c457600080fd5b80638069876d116100f25780638069876d146104c15780638da5cb5b146104d7578063938e3d7b146104f557806395d89b4114610515578063a035b1fe1461052a57600080fd5b8063698982ba146104625780636c0360eb1461047757806370a082311461048c578063715018a6146104ac57600080fd5b806332cb6b0c116101a6578063463fff7911610175578063463fff79146103d35780634f6ccce7146103e857806355f804b3146104085780635c975abb146104285780636352211e1461044257600080fd5b806332cb6b0c146103685780633ccfd60b1461037e57806342842e0e1461039357806344a0d68a146103b357600080fd5b8063095ea7b3116101ed578063095ea7b3146102d05780630f2cdd6c146102f057806318160ddd1461031357806323b872dd146103285780632f745c591461034857600080fd5b806301ffc9a71461021f57806302329a291461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a3660046120a4565b610676565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004612089565b6106e3565b005b34801561028257600080fd5b5061028b610729565b60405161024b9190612289565b3480156102a457600080fd5b506102b86102b3366004612144565b6107bb565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b506102746102eb36600461205d565b610846565b3480156102fc57600080fd5b50610305600a81565b60405190815260200161024b565b34801561031f57600080fd5b50600054610305565b34801561033457600080fd5b50610274610343366004611f67565b61095e565b34801561035457600080fd5b5061030561036336600461205d565b610969565b34801561037457600080fd5b5061030561138881565b34801561038a57600080fd5b50610274610ad7565b34801561039f57600080fd5b506102746103ae366004611f67565b610b90565b3480156103bf57600080fd5b506102746103ce366004612144565b610bab565b3480156103df57600080fd5b50610305600281565b3480156103f457600080fd5b50610305610403366004612144565b610bda565b34801561041457600080fd5b506102746104233660046120fb565b610c3c565b34801561043457600080fd5b50600b5461023f9060ff1681565b34801561044e57600080fd5b506102b861045d366004612144565b610c79565b34801561046e57600080fd5b50610274610c8b565b34801561048357600080fd5b5061028b610cc2565b34801561049857600080fd5b506103056104a7366004611f0a565b610d50565b3480156104b857600080fd5b50610274610de1565b3480156104cd57600080fd5b506103056103e881565b3480156104e357600080fd5b506007546001600160a01b03166102b8565b34801561050157600080fd5b506102746105103660046120fb565b610e15565b34801561052157600080fd5b5061028b610e52565b34801561053657600080fd5b50610305600a5481565b61027461054e366004612144565b610e61565b34801561055f57600080fd5b5061027461056e366004612028565b6110e8565b34801561057f57600080fd5b5061027461058e366004611fa8565b6111ad565b34801561059f57600080fd5b5061028b60405180604001604052806005815260200164173539b7b760d91b81525081565b3480156105d057600080fd5b5061028b6105df366004612144565b6111e6565b3480156105f057600080fd5b506102b873a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561061857600080fd5b5061028b6112b2565b34801561062d57600080fd5b5061023f61063c366004611f2e565b6112bf565b34801561064d57600080fd5b5061027461065c366004611f0a565b61139e565b34801561066d57600080fd5b50610305600581565b60006001600160e01b031982166380ac58cd60e01b14806106a757506001600160e01b03198216635b5e139f60e01b145b806106c257506001600160e01b0319821663780e9d6360e01b145b806106dd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107165760405162461bcd60e51b815260040161070d9061229c565b60405180910390fd5b600b805460ff1916911515919091179055565b606060018054610738906123f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610764906123f4565b80156107b15780601f10610786576101008083540402835291602001916107b1565b820191906000526020600020905b81548152906001019060200180831161079457829003601f168201915b5050505050905090565b60006107c8826000541190565b61082a5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161070d565b506000908152600560205260409020546001600160a01b031690565b600061085182610c79565b9050806001600160a01b0316836001600160a01b031614156108c05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161070d565b336001600160a01b03821614806108dc57506108dc81336112bf565b61094e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161070d565b610959838383611439565b505050565b610959838383611495565b600061097483610d50565b82106109cd5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161070d565b600080549080805b83811015610a77576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a2857805192505b876001600160a01b0316836001600160a01b03161415610a645786841415610a56575093506106dd92505050565b83610a608161242f565b9450505b5080610a6f8161242f565b9150506109d5565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161070d565b6007546001600160a01b03163314610b015760405162461bcd60e51b815260040161070d9061229c565b6040514790600090339083908381818185875af1925050503d8060008114610b45576040519150601f19603f3d011682016040523d82523d6000602084013e610b4a565b606091505b5050905080610b8c5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b604482015260640161070d565b5050565b610959838383604051806020016040528060008152506111ad565b6007546001600160a01b03163314610bd55760405162461bcd60e51b815260040161070d9061229c565b600a55565b600080548210610c385760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161070d565b5090565b6007546001600160a01b03163314610c665760405162461bcd60e51b815260040161070d9061229c565b8051610b8c906008906020840190611def565b6000610c84826117dc565b5192915050565b6007546001600160a01b03163314610cb55760405162461bcd60e51b815260040161070d9061229c565b610cc03360016118bc565b565b60088054610ccf906123f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfb906123f4565b8015610d485780601f10610d1d57610100808354040283529160200191610d48565b820191906000526020600020905b815481529060010190602001808311610d2b57829003601f168201915b505050505081565b60006001600160a01b038216610dbc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161070d565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610e0b5760405162461bcd60e51b815260040161070d9061229c565b610cc060006118d6565b6007546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161070d9061229c565b8051610b8c906009906020840190611def565b606060028054610738906123f4565b336000610e6d82610d50565b600b5490915060ff1615610eac5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b604482015260640161070d565b82610eb660005490565b610ec0919061234f565b6113881015610f065760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b604482015260640161070d565b60008311610f435760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b604482015260640161070d565b326001600160a01b03831614610f8a5760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b604482015260640161070d565b600a8110610fe55760405162461bcd60e51b815260206004820152602260248201527f45786365656473206d617820746f6b656e20636f756e74207065722077616c6c604482015261195d60f21b606482015260840161070d565b6000546103e81061103f57826002101561103a5760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b604482015260640161070d565b6110de565b82600510156110895760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b604482015260640161070d565b34600a5484611098919061237b565b146110de5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b604482015260640161070d565b61095982846118bc565b6001600160a01b0382163314156111415760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161070d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111b8848484611495565b6111c484848484611928565b6111e05760405162461bcd60e51b815260040161070d906122d1565b50505050565b60606111f3826000541190565b6112375760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161070d565b600060088054611246906123f4565b90501161126257604051806020016040528060008152506106dd565b600861126d83611a35565b60405180604001604052806005815260200164173539b7b760d91b81525060405160200161129d939291906121a5565b60405160208183030381529060405292915050565b60098054610ccf906123f4565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b15801561131b57600080fd5b505afa15801561132f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135391906120de565b6001600160a01b0316141561136c5760019150506106dd565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6007546001600160a01b031633146113c85760405162461bcd60e51b815260040161070d9061229c565b6001600160a01b03811661142d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161070d565b611436816118d6565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114a0826117dc565b80519091506000906001600160a01b0316336001600160a01b031614806114d75750336114cc846107bb565b6001600160a01b0316145b806114e9575081516114e990336112bf565b9050806115535760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161070d565b846001600160a01b031682600001516001600160a01b0316146115c75760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161070d565b6001600160a01b03841661162b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161070d565b61163b6000848460000151611439565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061170090859061234f565b6000818152600360205260409020549091506001600160a01b03166117925761172a816000541190565b156117925760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526117fb826000541190565b61185a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161070d565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118a9579392505050565b50806118b4816123dd565b91505061185c565b610b8c828260405180602001604052806000815250611b33565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611a2a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061196c903390899088908890600401612256565b602060405180830381600087803b15801561198657600080fd5b505af19250505080156119b6575060408051601f3d908101601f191682019092526119b3918101906120c1565b60015b611a10573d8080156119e4576040519150601f19603f3d011682016040523d82523d6000602084013e6119e9565b606091505b508051611a085760405162461bcd60e51b815260040161070d906122d1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611396565b506001949350505050565b606081611a595750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a835780611a6d8161242f565b9150611a7c9050600a83612367565b9150611a5d565b60008167ffffffffffffffff811115611a9e57611a9e6124a0565b6040519080825280601f01601f191660200182016040528015611ac8576020820181803683370190505b5090505b841561139657611add60018361239a565b9150611aea600a8661244a565b611af590603061234f565b60f81b818381518110611b0a57611b0a61248a565b60200101906001600160f81b031916908160001a905350611b2c600a86612367565b9450611acc565b6000546001600160a01b038416611b965760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161070d565b611ba1816000541190565b15611bee5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161070d565b60008311611c4a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b606482015260840161070d565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611ca6908790612324565b6001600160801b03168152602001858360200151611cc49190612324565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611de45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611da86000888488611928565b611dc45760405162461bcd60e51b815260040161070d906122d1565b81611dce8161242f565b9250508080611ddc9061242f565b915050611d5b565b5060008190556117d4565b828054611dfb906123f4565b90600052602060002090601f016020900481019282611e1d5760008555611e63565b82601f10611e3657805160ff1916838001178555611e63565b82800160010185558215611e63579182015b82811115611e63578251825591602001919060010190611e48565b50610c389291505b80821115610c385760008155600101611e6b565b600067ffffffffffffffff80841115611e9a57611e9a6124a0565b604051601f8501601f19908116603f01168101908282118183101715611ec257611ec26124a0565b81604052809350858152868686011115611edb57600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611f0557600080fd5b919050565b600060208284031215611f1c57600080fd5b8135611f27816124b6565b9392505050565b60008060408385031215611f4157600080fd5b8235611f4c816124b6565b91506020830135611f5c816124b6565b809150509250929050565b600080600060608486031215611f7c57600080fd5b8335611f87816124b6565b92506020840135611f97816124b6565b929592945050506040919091013590565b60008060008060808587031215611fbe57600080fd5b8435611fc9816124b6565b93506020850135611fd9816124b6565b925060408501359150606085013567ffffffffffffffff811115611ffc57600080fd5b8501601f8101871361200d57600080fd5b61201c87823560208401611e7f565b91505092959194509250565b6000806040838503121561203b57600080fd5b8235612046816124b6565b915061205460208401611ef5565b90509250929050565b6000806040838503121561207057600080fd5b823561207b816124b6565b946020939093013593505050565b60006020828403121561209b57600080fd5b611f2782611ef5565b6000602082840312156120b657600080fd5b8135611f27816124cb565b6000602082840312156120d357600080fd5b8151611f27816124cb565b6000602082840312156120f057600080fd5b8151611f27816124b6565b60006020828403121561210d57600080fd5b813567ffffffffffffffff81111561212457600080fd5b8201601f8101841361213557600080fd5b61139684823560208401611e7f565b60006020828403121561215657600080fd5b5035919050565b600081518084526121758160208601602086016123b1565b601f01601f19169290920160200192915050565b6000815161219b8185602086016123b1565b9290920192915050565b600080855481600182811c9150808316806121c157607f831692505b60208084108214156121e157634e487b7160e01b86526022600452602486fd5b8180156121f5576001811461220657612233565b60ff19861689528489019650612233565b60008c81526020902060005b8681101561222b5781548b820152908501908301612212565b505084890196505b50505050505061224c6122468287612189565b85612189565b9695505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061224c9083018461215d565b602081526000611f27602083018461215d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156123465761234661245e565b01949350505050565b600082198211156123625761236261245e565b500190565b60008261237657612376612474565b500490565b60008160001904831182151516156123955761239561245e565b500290565b6000828210156123ac576123ac61245e565b500390565b60005b838110156123cc5781810151838201526020016123b4565b838111156111e05750506000910152565b6000816123ec576123ec61245e565b506000190190565b600181811c9082168061240857607f821691505b6020821081141561242957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124435761244361245e565b5060010190565b60008261245957612459612474565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461143657600080fd5b6001600160e01b03198116811461143657600080fdfea2646970667358221220350e2d0af2af6ec32fcf963d9624bc3e1fa875b1c5b75e6fa924fa2daa162e5d64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063698982ba11610123578063a0712d68116100ab578063cd7c03261161006f578063cd7c0326146105e4578063e8a3d4851461060c578063e985e9c514610621578063f2fde38b14610641578063f43a22dc1461066157600080fd5b8063a0712d6814610540578063a22cb46514610553578063b88d4fde14610573578063c668286214610593578063c87b56dd146105c457600080fd5b80638069876d116100f25780638069876d146104c15780638da5cb5b146104d7578063938e3d7b146104f557806395d89b4114610515578063a035b1fe1461052a57600080fd5b8063698982ba146104625780636c0360eb1461047757806370a082311461048c578063715018a6146104ac57600080fd5b806332cb6b0c116101a6578063463fff7911610175578063463fff79146103d35780634f6ccce7146103e857806355f804b3146104085780635c975abb146104285780636352211e1461044257600080fd5b806332cb6b0c146103685780633ccfd60b1461037e57806342842e0e1461039357806344a0d68a146103b357600080fd5b8063095ea7b3116101ed578063095ea7b3146102d05780630f2cdd6c146102f057806318160ddd1461031357806323b872dd146103285780632f745c591461034857600080fd5b806301ffc9a71461021f57806302329a291461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a3660046120a4565b610676565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004612089565b6106e3565b005b34801561028257600080fd5b5061028b610729565b60405161024b9190612289565b3480156102a457600080fd5b506102b86102b3366004612144565b6107bb565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b506102746102eb36600461205d565b610846565b3480156102fc57600080fd5b50610305600a81565b60405190815260200161024b565b34801561031f57600080fd5b50600054610305565b34801561033457600080fd5b50610274610343366004611f67565b61095e565b34801561035457600080fd5b5061030561036336600461205d565b610969565b34801561037457600080fd5b5061030561138881565b34801561038a57600080fd5b50610274610ad7565b34801561039f57600080fd5b506102746103ae366004611f67565b610b90565b3480156103bf57600080fd5b506102746103ce366004612144565b610bab565b3480156103df57600080fd5b50610305600281565b3480156103f457600080fd5b50610305610403366004612144565b610bda565b34801561041457600080fd5b506102746104233660046120fb565b610c3c565b34801561043457600080fd5b50600b5461023f9060ff1681565b34801561044e57600080fd5b506102b861045d366004612144565b610c79565b34801561046e57600080fd5b50610274610c8b565b34801561048357600080fd5b5061028b610cc2565b34801561049857600080fd5b506103056104a7366004611f0a565b610d50565b3480156104b857600080fd5b50610274610de1565b3480156104cd57600080fd5b506103056103e881565b3480156104e357600080fd5b506007546001600160a01b03166102b8565b34801561050157600080fd5b506102746105103660046120fb565b610e15565b34801561052157600080fd5b5061028b610e52565b34801561053657600080fd5b50610305600a5481565b61027461054e366004612144565b610e61565b34801561055f57600080fd5b5061027461056e366004612028565b6110e8565b34801561057f57600080fd5b5061027461058e366004611fa8565b6111ad565b34801561059f57600080fd5b5061028b60405180604001604052806005815260200164173539b7b760d91b81525081565b3480156105d057600080fd5b5061028b6105df366004612144565b6111e6565b3480156105f057600080fd5b506102b873a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561061857600080fd5b5061028b6112b2565b34801561062d57600080fd5b5061023f61063c366004611f2e565b6112bf565b34801561064d57600080fd5b5061027461065c366004611f0a565b61139e565b34801561066d57600080fd5b50610305600581565b60006001600160e01b031982166380ac58cd60e01b14806106a757506001600160e01b03198216635b5e139f60e01b145b806106c257506001600160e01b0319821663780e9d6360e01b145b806106dd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107165760405162461bcd60e51b815260040161070d9061229c565b60405180910390fd5b600b805460ff1916911515919091179055565b606060018054610738906123f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610764906123f4565b80156107b15780601f10610786576101008083540402835291602001916107b1565b820191906000526020600020905b81548152906001019060200180831161079457829003601f168201915b5050505050905090565b60006107c8826000541190565b61082a5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161070d565b506000908152600560205260409020546001600160a01b031690565b600061085182610c79565b9050806001600160a01b0316836001600160a01b031614156108c05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161070d565b336001600160a01b03821614806108dc57506108dc81336112bf565b61094e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161070d565b610959838383611439565b505050565b610959838383611495565b600061097483610d50565b82106109cd5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161070d565b600080549080805b83811015610a77576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a2857805192505b876001600160a01b0316836001600160a01b03161415610a645786841415610a56575093506106dd92505050565b83610a608161242f565b9450505b5080610a6f8161242f565b9150506109d5565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161070d565b6007546001600160a01b03163314610b015760405162461bcd60e51b815260040161070d9061229c565b6040514790600090339083908381818185875af1925050503d8060008114610b45576040519150601f19603f3d011682016040523d82523d6000602084013e610b4a565b606091505b5050905080610b8c5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b604482015260640161070d565b5050565b610959838383604051806020016040528060008152506111ad565b6007546001600160a01b03163314610bd55760405162461bcd60e51b815260040161070d9061229c565b600a55565b600080548210610c385760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161070d565b5090565b6007546001600160a01b03163314610c665760405162461bcd60e51b815260040161070d9061229c565b8051610b8c906008906020840190611def565b6000610c84826117dc565b5192915050565b6007546001600160a01b03163314610cb55760405162461bcd60e51b815260040161070d9061229c565b610cc03360016118bc565b565b60088054610ccf906123f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfb906123f4565b8015610d485780601f10610d1d57610100808354040283529160200191610d48565b820191906000526020600020905b815481529060010190602001808311610d2b57829003601f168201915b505050505081565b60006001600160a01b038216610dbc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161070d565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610e0b5760405162461bcd60e51b815260040161070d9061229c565b610cc060006118d6565b6007546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161070d9061229c565b8051610b8c906009906020840190611def565b606060028054610738906123f4565b336000610e6d82610d50565b600b5490915060ff1615610eac5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b604482015260640161070d565b82610eb660005490565b610ec0919061234f565b6113881015610f065760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b604482015260640161070d565b60008311610f435760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b604482015260640161070d565b326001600160a01b03831614610f8a5760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b604482015260640161070d565b600a8110610fe55760405162461bcd60e51b815260206004820152602260248201527f45786365656473206d617820746f6b656e20636f756e74207065722077616c6c604482015261195d60f21b606482015260840161070d565b6000546103e81061103f57826002101561103a5760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b604482015260640161070d565b6110de565b82600510156110895760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b604482015260640161070d565b34600a5484611098919061237b565b146110de5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b604482015260640161070d565b61095982846118bc565b6001600160a01b0382163314156111415760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161070d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111b8848484611495565b6111c484848484611928565b6111e05760405162461bcd60e51b815260040161070d906122d1565b50505050565b60606111f3826000541190565b6112375760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161070d565b600060088054611246906123f4565b90501161126257604051806020016040528060008152506106dd565b600861126d83611a35565b60405180604001604052806005815260200164173539b7b760d91b81525060405160200161129d939291906121a5565b60405160208183030381529060405292915050565b60098054610ccf906123f4565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b15801561131b57600080fd5b505afa15801561132f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135391906120de565b6001600160a01b0316141561136c5760019150506106dd565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6007546001600160a01b031633146113c85760405162461bcd60e51b815260040161070d9061229c565b6001600160a01b03811661142d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161070d565b611436816118d6565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114a0826117dc565b80519091506000906001600160a01b0316336001600160a01b031614806114d75750336114cc846107bb565b6001600160a01b0316145b806114e9575081516114e990336112bf565b9050806115535760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161070d565b846001600160a01b031682600001516001600160a01b0316146115c75760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161070d565b6001600160a01b03841661162b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161070d565b61163b6000848460000151611439565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061170090859061234f565b6000818152600360205260409020549091506001600160a01b03166117925761172a816000541190565b156117925760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526117fb826000541190565b61185a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161070d565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118a9579392505050565b50806118b4816123dd565b91505061185c565b610b8c828260405180602001604052806000815250611b33565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611a2a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061196c903390899088908890600401612256565b602060405180830381600087803b15801561198657600080fd5b505af19250505080156119b6575060408051601f3d908101601f191682019092526119b3918101906120c1565b60015b611a10573d8080156119e4576040519150601f19603f3d011682016040523d82523d6000602084013e6119e9565b606091505b508051611a085760405162461bcd60e51b815260040161070d906122d1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611396565b506001949350505050565b606081611a595750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a835780611a6d8161242f565b9150611a7c9050600a83612367565b9150611a5d565b60008167ffffffffffffffff811115611a9e57611a9e6124a0565b6040519080825280601f01601f191660200182016040528015611ac8576020820181803683370190505b5090505b841561139657611add60018361239a565b9150611aea600a8661244a565b611af590603061234f565b60f81b818381518110611b0a57611b0a61248a565b60200101906001600160f81b031916908160001a905350611b2c600a86612367565b9450611acc565b6000546001600160a01b038416611b965760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161070d565b611ba1816000541190565b15611bee5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161070d565b60008311611c4a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b606482015260840161070d565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611ca6908790612324565b6001600160801b03168152602001858360200151611cc49190612324565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611de45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611da86000888488611928565b611dc45760405162461bcd60e51b815260040161070d906122d1565b81611dce8161242f565b9250508080611ddc9061242f565b915050611d5b565b5060008190556117d4565b828054611dfb906123f4565b90600052602060002090601f016020900481019282611e1d5760008555611e63565b82601f10611e3657805160ff1916838001178555611e63565b82800160010185558215611e63579182015b82811115611e63578251825591602001919060010190611e48565b50610c389291505b80821115610c385760008155600101611e6b565b600067ffffffffffffffff80841115611e9a57611e9a6124a0565b604051601f8501601f19908116603f01168101908282118183101715611ec257611ec26124a0565b81604052809350858152868686011115611edb57600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611f0557600080fd5b919050565b600060208284031215611f1c57600080fd5b8135611f27816124b6565b9392505050565b60008060408385031215611f4157600080fd5b8235611f4c816124b6565b91506020830135611f5c816124b6565b809150509250929050565b600080600060608486031215611f7c57600080fd5b8335611f87816124b6565b92506020840135611f97816124b6565b929592945050506040919091013590565b60008060008060808587031215611fbe57600080fd5b8435611fc9816124b6565b93506020850135611fd9816124b6565b925060408501359150606085013567ffffffffffffffff811115611ffc57600080fd5b8501601f8101871361200d57600080fd5b61201c87823560208401611e7f565b91505092959194509250565b6000806040838503121561203b57600080fd5b8235612046816124b6565b915061205460208401611ef5565b90509250929050565b6000806040838503121561207057600080fd5b823561207b816124b6565b946020939093013593505050565b60006020828403121561209b57600080fd5b611f2782611ef5565b6000602082840312156120b657600080fd5b8135611f27816124cb565b6000602082840312156120d357600080fd5b8151611f27816124cb565b6000602082840312156120f057600080fd5b8151611f27816124b6565b60006020828403121561210d57600080fd5b813567ffffffffffffffff81111561212457600080fd5b8201601f8101841361213557600080fd5b61139684823560208401611e7f565b60006020828403121561215657600080fd5b5035919050565b600081518084526121758160208601602086016123b1565b601f01601f19169290920160200192915050565b6000815161219b8185602086016123b1565b9290920192915050565b600080855481600182811c9150808316806121c157607f831692505b60208084108214156121e157634e487b7160e01b86526022600452602486fd5b8180156121f5576001811461220657612233565b60ff19861689528489019650612233565b60008c81526020902060005b8681101561222b5781548b820152908501908301612212565b505084890196505b50505050505061224c6122468287612189565b85612189565b9695505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061224c9083018461215d565b602081526000611f27602083018461215d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156123465761234661245e565b01949350505050565b600082198211156123625761236261245e565b500190565b60008261237657612376612474565b500490565b60008160001904831182151516156123955761239561245e565b500290565b6000828210156123ac576123ac61245e565b500390565b60005b838110156123cc5781810151838201526020016123b4565b838111156111e05750506000910152565b6000816123ec576123ec61245e565b506000190190565b600181811c9082168061240857607f821691505b6020821081141561242957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124435761244361245e565b5060010190565b60008261245957612459612474565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461143657600080fd5b6001600160e01b03198116811461143657600080fdfea2646970667358221220350e2d0af2af6ec32fcf963d9624bc3e1fa875b1c5b75e6fa924fa2daa162e5d64736f6c63430008070033

Deployed Bytecode Sourcemap

40220:3010:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28191:372;;;;;;;;;;-1:-1:-1;28191:372:0;;;;;:::i;:::-;;:::i;:::-;;;7756:14:1;;7749:22;7731:41;;7719:2;7704:18;28191:372:0;;;;;;;;42544:81;;;;;;;;;;-1:-1:-1;42544:81:0;;;;;:::i;:::-;;:::i;:::-;;29818:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31379:214::-;;;;;;;;;;-1:-1:-1;31379:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7054:32:1;;;7036:51;;7024:2;7009:18;31379:214:0;6890:203:1;30900:413:0;;;;;;;;;;-1:-1:-1;30900:413:0;;;;;:::i;:::-;;:::i;40687:43::-;;;;;;;;;;;;40728:2;40687:43;;;;;19306:25:1;;;19294:2;19279:18;40687:43:0;19160:177:1;26632:100:0;;;;;;;;;;-1:-1:-1;26685:7:0;26712:12;26632:100;;32255:162;;;;;;;;;;-1:-1:-1;32255:162:0;;;;;:::i;:::-;;:::i;27296:823::-;;;;;;;;;;-1:-1:-1;27296:823:0;;;;;:::i;:::-;;:::i;40639:41::-;;;;;;;;;;;;40676:4;40639:41;;42236:209;;;;;;;;;;;;;:::i;32488:177::-;;;;;;;;;;-1:-1:-1;32488:177:0;;;;;:::i;:::-;;:::i;41688:87::-;;;;;;;;;;-1:-1:-1;41688:87:0;;;;;:::i;:::-;;:::i;40491:43::-;;;;;;;;;;;;40533:1;40491:43;;26809:187;;;;;;;;;;-1:-1:-1;26809:187:0;;;;;:::i;:::-;;:::i;42633:100::-;;;;;;;;;;-1:-1:-1;42633:100:0;;;;;:::i;:::-;;:::i;40781:25::-;;;;;;;;;;-1:-1:-1;40781:25:0;;;;;;;;29627:124;;;;;;;;;;-1:-1:-1;29627:124:0;;;;;:::i;:::-;;:::i;42453:83::-;;;;;;;;;;;;;:::i;40270:26::-;;;;;;;;;;;;;:::i;28627:221::-;;;;;;;;;;-1:-1:-1;28627:221:0;;;;;:::i;:::-;;:::i;4170:103::-;;;;;;;;;;;;;:::i;40586:46::-;;;;;;;;;;;;40628:4;40586:46;;3519:87;;;;;;;;;;-1:-1:-1;3592:6:0;;-1:-1:-1;;;;;3592:6:0;3519:87;;42741:116;;;;;;;;;;-1:-1:-1;42741:116:0;;;;;:::i;:::-;;:::i;29987:104::-;;;;;;;;;;;;;:::i;40737:35::-;;;;;;;;;;;;;;;;40878:802;;;;;;:::i;:::-;;:::i;31665:288::-;;;;;;;;;;-1:-1:-1;31665:288:0;;;;;:::i;:::-;;:::i;32736:355::-;;;;;;;;;;-1:-1:-1;32736:355:0;;;;;:::i;:::-;;:::i;40340:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;40340:46:0;;;;;42865:362;;;;;;;;;;-1:-1:-1;42865:362:0;;;;;:::i;:::-;;:::i;40393:89::-;;;;;;;;;;;;40440:42;40393:89;;40303:30;;;;;;;;;;;;;:::i;41783:445::-;;;;;;;;;;-1:-1:-1;41783:445:0;;;;;:::i;:::-;;:::i;4428:201::-;;;;;;;;;;-1:-1:-1;4428:201:0;;;;;:::i;:::-;;:::i;40541:38::-;;;;;;;;;;;;40578:1;40541:38;;28191:372;28293:4;-1:-1:-1;;;;;;28330:40:0;;-1:-1:-1;;;28330:40:0;;:105;;-1:-1:-1;;;;;;;28387:48:0;;-1:-1:-1;;;28387:48:0;28330:105;:172;;;-1:-1:-1;;;;;;;28452:50:0;;-1:-1:-1;;;28452:50:0;28330:172;:225;;;-1:-1:-1;;;;;;;;;;24804:40:0;;;28519:36;28310:245;28191:372;-1:-1:-1;;28191:372:0:o;42544:81::-;3592:6;;-1:-1:-1;;;;;3592:6:0;2340:10;3739:23;3731:68;;;;-1:-1:-1;;;3731:68:0;;;;;;;:::i;:::-;;;;;;;;;42602:6:::1;:15:::0;;-1:-1:-1;;42602:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42544:81::o;29818:100::-;29872:13;29905:5;29898:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29818:100;:::o;31379:214::-;31447:7;31475:16;31483:7;33403:4;33437:12;-1:-1:-1;33427:22:0;33346:111;31475:16;31467:74;;;;-1:-1:-1;;;31467:74:0;;18607:2:1;31467:74:0;;;18589:21:1;18646:2;18626:18;;;18619:30;18685:34;18665:18;;;18658:62;-1:-1:-1;;;18736:18:1;;;18729:43;18789:19;;31467:74:0;18405:409:1;31467:74:0;-1:-1:-1;31561:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31561:24:0;;31379:214::o;30900:413::-;30973:13;30989:24;31005:7;30989:15;:24::i;:::-;30973:40;;31038:5;-1:-1:-1;;;;;31032:11:0;:2;-1:-1:-1;;;;;31032:11:0;;;31024:58;;;;-1:-1:-1;;;31024:58:0;;15446:2:1;31024:58:0;;;15428:21:1;15485:2;15465:18;;;15458:30;15524:34;15504:18;;;15497:62;-1:-1:-1;;;15575:18:1;;;15568:32;15617:19;;31024:58:0;15244:398:1;31024:58:0;2340:10;-1:-1:-1;;;;;31117:21:0;;;;:62;;-1:-1:-1;31142:37:0;31159:5;2340:10;41783:445;:::i;31142:37::-;31095:169;;;;-1:-1:-1;;;31095:169:0;;11615:2:1;31095:169:0;;;11597:21:1;11654:2;11634:18;;;11627:30;11693:34;11673:18;;;11666:62;11764:27;11744:18;;;11737:55;11809:19;;31095:169:0;11413:421:1;31095:169:0;31277:28;31286:2;31290:7;31299:5;31277:8;:28::i;:::-;30962:351;30900:413;;:::o;32255:162::-;32381:28;32391:4;32397:2;32401:7;32381:9;:28::i;27296:823::-;27385:7;27421:16;27431:5;27421:9;:16::i;:::-;27413:5;:24;27405:71;;;;-1:-1:-1;;;27405:71:0;;8209:2:1;27405:71:0;;;8191:21:1;8248:2;8228:18;;;8221:30;8287:34;8267:18;;;8260:62;-1:-1:-1;;;8338:18:1;;;8331:32;8380:19;;27405:71:0;8007:398:1;27405:71:0;27487:22;26712:12;;;27487:22;;27619:426;27643:14;27639:1;:18;27619:426;;;27679:31;27713:14;;;:11;:14;;;;;;;;;27679:48;;;;;;;;;-1:-1:-1;;;;;27679:48:0;;;;;-1:-1:-1;;;27679:48:0;;;;;;;;;;;;27746:28;27742:103;;27815:14;;;-1:-1:-1;27742:103:0;27884:5;-1:-1:-1;;;;;27863:26:0;:17;-1:-1:-1;;;;;27863:26:0;;27859:175;;;27929:5;27914:11;:20;27910:77;;;-1:-1:-1;27966:1:0;-1:-1:-1;27959:8:0;;-1:-1:-1;;;27959:8:0;27910:77;28005:13;;;;:::i;:::-;;;;27859:175;-1:-1:-1;27659:3:0;;;;:::i;:::-;;;;27619:426;;;-1:-1:-1;28055:56:0;;-1:-1:-1;;;28055:56:0;;17776:2:1;28055:56:0;;;17758:21:1;17815:2;17795:18;;;17788:30;17854:34;17834:18;;;17827:62;-1:-1:-1;;;17905:18:1;;;17898:44;17959:19;;28055:56:0;17574:410:1;42236:209:0;3592:6;;-1:-1:-1;;;;;3592:6:0;2340:10;3739:23;3731:68;;;;-1:-1:-1;;;3731:68:0;;;;;;;:::i;:::-;42355:37:::1;::::0;42304:21:::1;::::0;42286:15:::1;::::0;2340:10;;42304:21;;42286:15;42355:37;42286:15;42355:37;42304:21;2340:10;42355:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42336:56;;;42411:7;42403:34;;;::::0;-1:-1:-1;;;42403:34:0;;17433:2:1;42403:34:0::1;::::0;::::1;17415:21:1::0;17472:2;17452:18;;;17445:30;-1:-1:-1;;;17491:18:1;;;17484:44;17545:18;;42403:34:0::1;17231:338:1::0;42403:34:0::1;42275:170;;42236:209::o:0;32488:177::-;32618:39;32635:4;32641:2;32645:7;32618:39;;;;;;;;;;;;:16;:39::i;41688:87::-;3592:6;;-1:-1:-1;;;;;3592:6:0;2340:10;3739:23;3731:68;;;;-1:-1:-1;;;3731:68:0;;;;;;;:::i;:::-;41751:5:::1;:16:::0;41688:87::o;26809:187::-;26876:7;26712:12;;26904:5;:21;26896:69;;;;-1:-1:-1;;;26896:69:0;;10454:2:1;26896:69:0;;;10436:21:1;10493:2;10473:18;;;10466:30;10532:34;10512:18;;;10505:62;-1:-1:-1;;;10583:18:1;;;10576:33;10626:19;;26896:69:0;10252:399:1;26896:69:0;-1:-1:-1;26983:5:0;26809:187::o;42633:100::-;3592:6;;-1:-1:-1;;;;;3592:6:0;2340:10;3739:23;3731:68;;;;-1:-1:-1;;;3731:68:0;;;;;;;:::i;:::-;42707:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;29627:124::-:0;29691:7;29718:20;29730:7;29718:11;:20::i;:::-;:25;;29627:124;-1:-1:-1;;29627:124:0:o;42453:83::-;3592:6;;-1:-1:-1;;;;;3592:6:0;2340:10;3739:23;3731:68;;;;-1:-1:-1;;;3731:68:0;;;;;;;:::i;:::-;42502:26:::1;2340:10:::0;42526:1:::1;42502:9;:26::i;:::-;42453:83::o:0;40270:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28627:221::-;28691:7;-1:-1:-1;;;;;28719:19:0;;28711:75;;;;-1:-1:-1;;;28711:75:0;;12388:2:1;28711:75:0;;;12370:21:1;12427:2;12407:18;;;12400:30;12466:34;12446:18;;;12439:62;-1:-1:-1;;;12517:18:1;;;12510:41;12568:19;;28711:75:0;12186:407:1;28711:75:0;-1:-1:-1;;;;;;28812:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28812:27:0;;28627:221::o;4170:103::-;3592:6;;-1:-1:-1;;;;;3592:6:0;2340:10;3739:23;3731:68;;;;-1:-1:-1;;;3731:68:0;;;;;;;:::i;:::-;4235:30:::1;4262:1;4235:18;:30::i;42741:116::-:0;3592:6;;-1:-1:-1;;;;;3592:6:0;2340:10;3739:23;3731:68;;;;-1:-1:-1;;;3731:68:0;;;;;;;:::i;:::-;42823:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;29987:104::-:0;30043:13;30076:7;30069:14;;;;;:::i;40878:802::-;2340:10;40937:15;41004:18;2340:10;41004:9;:18::i;:::-;41042:6;;40978:44;;-1:-1:-1;41042:6:0;;41041:7;41033:26;;;;-1:-1:-1;;;41033:26:0;;8612:2:1;41033:26:0;;;8594:21:1;8651:1;8631:18;;;8624:29;-1:-1:-1;;;8669:18:1;;;8662:36;8715:18;;41033:26:0;8410:329:1;41033:26:0;41108:7;41092:13;26685:7;26712:12;;26632:100;41092:13;:23;;;;:::i;:::-;40676:4;41078:37;;41070:68;;;;-1:-1:-1;;;41070:68:0;;12041:2:1;41070:68:0;;;12023:21:1;12080:2;12060:18;;;12053:30;-1:-1:-1;;;12099:18:1;;;12092:48;12157:18;;41070:68:0;11839:342:1;41070:68:0;41167:1;41157:7;:11;41149:34;;;;-1:-1:-1;;;41149:34:0;;9764:2:1;41149:34:0;;;9746:21:1;9803:2;9783:18;;;9776:30;-1:-1:-1;;;9822:18:1;;;9815:40;9872:18;;41149:34:0;9562:334:1;41149:34:0;41202:9;-1:-1:-1;;;;;41202:20:0;;;41194:45;;;;-1:-1:-1;;;41194:45:0;;19021:2:1;41194:45:0;;;19003:21:1;19060:2;19040:18;;;19033:30;-1:-1:-1;;;19079:18:1;;;19072:42;19131:18;;41194:45:0;18819:336:1;41194:45:0;40728:2;41258:15;:32;41250:79;;;;-1:-1:-1;;;41250:79:0;;15043:2:1;41250:79:0;;;15025:21:1;15082:2;15062:18;;;15055:30;15121:34;15101:18;;;15094:62;-1:-1:-1;;;15172:18:1;;;15165:32;15214:19;;41250:79:0;14841:398:1;41250:79:0;26685:7;26712:12;40628:4;41345:32;41342:291;;41420:7;40533:1;41401:26;;41393:62;;;;-1:-1:-1;;;41393:62:0;;11264:2:1;41393:62:0;;;11246:21:1;11303:2;11283:18;;;11276:30;-1:-1:-1;;;11322:18:1;;;11315:52;11384:18;;41393:62:0;11062:346:1;41393:62:0;41342:291;;;41508:7;40578:1;41494:21;;41486:57;;;;-1:-1:-1;;;41486:57:0;;10103:2:1;41486:57:0;;;10085:21:1;10142:2;10122:18;;;10115:30;-1:-1:-1;;;10161:18:1;;;10154:52;10223:18;;41486:57:0;9901:346:1;41486:57:0;41585:9;41576:5;;41566:7;:15;;;;:::i;:::-;:28;41558:63;;;;-1:-1:-1;;;41558:63:0;;14692:2:1;41558:63:0;;;14674:21:1;14731:2;14711:18;;;14704:30;-1:-1:-1;;;14750:18:1;;;14743:52;14812:18;;41558:63:0;14490:346:1;41558:63:0;41645:27;41655:7;41664;41645:9;:27::i;31665:288::-;-1:-1:-1;;;;;31760:24:0;;2340:10;31760:24;;31752:63;;;;-1:-1:-1;;;31752:63:0;;13918:2:1;31752:63:0;;;13900:21:1;13957:2;13937:18;;;13930:30;13996:28;13976:18;;;13969:56;14042:18;;31752:63:0;13716:350:1;31752:63:0;2340:10;31828:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31828:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31828:53:0;;;;;;;;;;31897:48;;7731:41:1;;;31828:42:0;;2340:10;31897:48;;7704:18:1;31897:48:0;;;;;;;31665:288;;:::o;32736:355::-;32895:28;32905:4;32911:2;32915:7;32895:9;:28::i;:::-;32956:48;32979:4;32985:2;32989:7;32998:5;32956:22;:48::i;:::-;32934:149;;;;-1:-1:-1;;;32934:149:0;;;;;;;:::i;:::-;32736:355;;;;:::o;42865:362::-;42931:13;42965:17;42973:8;33403:4;33437:12;-1:-1:-1;33427:22:0;33346:111;42965:17;42957:51;;;;-1:-1:-1;;;42957:51:0;;12800:2:1;42957:51:0;;;12782:21:1;12839:2;12819:18;;;12812:30;-1:-1:-1;;;12858:18:1;;;12851:51;12919:18;;42957:51:0;12598:345:1;42957:51:0;43050:1;43032:7;43026:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;43108:7;43132:26;43149:8;43132:16;:26::i;:::-;43175:13;;;;;;;;;;;;;-1:-1:-1;;;43175:13:0;;;43075:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43019:200;42865:362;-1:-1:-1;;42865:362:0:o;40303:30::-;;;;;;;:::i;41783:445::-;42081:28;;-1:-1:-1;;;42081:28:0;;-1:-1:-1;;;;;7054:32:1;;;42081:28:0;;;7036:51:1;41908:4:0;;40440:42;;42073:49;;;40440:42;;42081:21;;7009:18:1;;42081:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;42073:49:0;;42069:93;;;42146:4;42139:11;;;;;42069:93;-1:-1:-1;;;;;32145:25:0;;;32121:4;32145:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;42181:39;42174:46;41783:445;-1:-1:-1;;;;41783:445:0:o;4428:201::-;3592:6;;-1:-1:-1;;;;;3592:6:0;2340:10;3739:23;3731:68;;;;-1:-1:-1;;;3731:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4517:22:0;::::1;4509:73;;;::::0;-1:-1:-1;;;4509:73:0;;8946:2:1;4509:73:0::1;::::0;::::1;8928:21:1::0;8985:2;8965:18;;;8958:30;9024:34;9004:18;;;8997:62;-1:-1:-1;;;9075:18:1;;;9068:36;9121:19;;4509:73:0::1;8744:402:1::0;4509:73:0::1;4593:28;4612:8;4593:18;:28::i;:::-;4428:201:::0;:::o;37390:196::-;37505:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37505:29:0;-1:-1:-1;;;;;37505:29:0;;;;;;;;;37550:28;;37505:24;;37550:28;;;;;;;37390:196;;;:::o;35489:1783::-;35604:35;35642:20;35654:7;35642:11;:20::i;:::-;35717:18;;35604:58;;-1:-1:-1;35675:22:0;;-1:-1:-1;;;;;35701:34:0;2340:10;-1:-1:-1;;;;;35701:34:0;;:87;;;-1:-1:-1;2340:10:0;35752:20;35764:7;35752:11;:20::i;:::-;-1:-1:-1;;;;;35752:36:0;;35701:87;:154;;;-1:-1:-1;35822:18:0;;35805:50;;2340:10;41783:445;:::i;35805:50::-;35675:181;;35877:17;35869:80;;;;-1:-1:-1;;;35869:80:0;;14273:2:1;35869:80:0;;;14255:21:1;14312:2;14292:18;;;14285:30;14351:34;14331:18;;;14324:62;-1:-1:-1;;;14402:18:1;;;14395:48;14460:19;;35869:80:0;14071:414:1;35869:80:0;35992:4;-1:-1:-1;;;;;35970:26:0;:13;:18;;;-1:-1:-1;;;;;35970:26:0;;35962:77;;;;-1:-1:-1;;;35962:77:0;;13150:2:1;35962:77:0;;;13132:21:1;13189:2;13169:18;;;13162:30;13228:34;13208:18;;;13201:62;-1:-1:-1;;;13279:18:1;;;13272:36;13325:19;;35962:77:0;12948:402:1;35962:77:0;-1:-1:-1;;;;;36058:16:0;;36050:66;;;;-1:-1:-1;;;36050:66:0;;10858:2:1;36050:66:0;;;10840:21:1;10897:2;10877:18;;;10870:30;10936:34;10916:18;;;10909:62;-1:-1:-1;;;10987:18:1;;;10980:35;11032:19;;36050:66:0;10656:401:1;36050:66:0;36237:49;36254:1;36258:7;36267:13;:18;;;36237:8;:49::i;:::-;-1:-1:-1;;;;;36491:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36491:31:0;;;-1:-1:-1;;;;;36491:31:0;;;-1:-1:-1;;36491:31:0;;;;;;;36537:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36537:29:0;;;;;;;;;;;;;36613:43;;;;;;;;;;36639:15;36613:43;;;;;;;;;;36590:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;36590:66:0;;;;;;;-1:-1:-1;;;36590:66:0;;;;;;;;;;;;36491:18;36918:11;;36590:20;;36918:11;:::i;:::-;36985:1;36944:24;;;:11;:24;;;;;:29;36896:33;;-1:-1:-1;;;;;;36944:29:0;36940:227;;37008:20;37016:11;33403:4;33437:12;-1:-1:-1;33427:22:0;33346:111;37008:20;37004:152;;;37076:64;;;;;;;;37091:18;;-1:-1:-1;;;;;37076:64:0;;;;;;37111:28;;;;37076:64;;;;;;;;;;-1:-1:-1;37049:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;37049:91:0;-1:-1:-1;;;;;;37049:91:0;;;;;;;;;;;;37004:152;37203:7;37199:2;-1:-1:-1;;;;;37184:27:0;37193:4;-1:-1:-1;;;;;37184:27:0;;;;;;;;;;;37222:42;35593:1679;;;35489:1783;;;:::o;29093:472::-;-1:-1:-1;;;;;;;;;;;;;;;;;29196:16:0;29204:7;33403:4;33437:12;-1:-1:-1;33427:22:0;33346:111;29196:16;29188:71;;;;-1:-1:-1;;;29188:71:0;;9353:2:1;29188:71:0;;;9335:21:1;9392:2;9372:18;;;9365:30;9431:34;9411:18;;;9404:62;-1:-1:-1;;;9482:18:1;;;9475:40;9532:19;;29188:71:0;9151:406:1;29188:71:0;29292:7;29272:216;29326:31;29360:17;;;:11;:17;;;;;;;;;29326:51;;;;;;;;;-1:-1:-1;;;;;29326:51:0;;;;;-1:-1:-1;;;29326:51:0;;;;;;;;;;;;29396:28;29392:85;;29452:9;29093:472;-1:-1:-1;;;29093:472:0:o;29392:85::-;-1:-1:-1;29303:6:0;;;;:::i;:::-;;;;29272:216;;33465:104;33534:27;33544:2;33548:8;33534:27;;;;;;;;;;;;:9;:27::i;4789:191::-;4882:6;;;-1:-1:-1;;;;;4899:17:0;;;-1:-1:-1;;;;;;4899:17:0;;;;;;;4932:40;;4882:6;;;4899:17;4882:6;;4932:40;;4863:16;;4932:40;4852:128;4789:191;:::o;38151:804::-;38306:4;-1:-1:-1;;;;;38327:13:0;;16839:20;16887:8;38323:625;;38363:72;;-1:-1:-1;;;38363:72:0;;-1:-1:-1;;;;;38363:36:0;;;;;:72;;2340:10;;38414:4;;38420:7;;38429:5;;38363:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38363:72:0;;;;;;;;-1:-1:-1;;38363:72:0;;;;;;;;;;;;:::i;:::-;;;38359:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38609:13:0;;38605:273;;38652:61;;-1:-1:-1;;;38652:61:0;;;;;;;:::i;38605:273::-;38828:6;38822:13;38813:6;38809:2;38805:15;38798:38;38359:534;-1:-1:-1;;;;;;38486:55:0;-1:-1:-1;;;38486:55:0;;-1:-1:-1;38479:62:0;;38323:625;-1:-1:-1;38932:4:0;38151:804;;;;;;:::o;5337:723::-;5393:13;5614:10;5610:53;;-1:-1:-1;;5641:10:0;;;;;;;;;;;;-1:-1:-1;;;5641:10:0;;;;;5337:723::o;5610:53::-;5688:5;5673:12;5729:78;5736:9;;5729:78;;5762:8;;;;:::i;:::-;;-1:-1:-1;5785:10:0;;-1:-1:-1;5793:2:0;5785:10;;:::i;:::-;;;5729:78;;;5817:19;5849:6;5839:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5839:17:0;;5817:39;;5867:154;5874:10;;5867:154;;5901:11;5911:1;5901:11;;:::i;:::-;;-1:-1:-1;5970:10:0;5978:2;5970:5;:10;:::i;:::-;5957:24;;:2;:24;:::i;:::-;5944:39;;5927:6;5934;5927:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5927:56:0;;;;;;;;-1:-1:-1;5998:11:0;6007:2;5998:11;;:::i;:::-;;;5867:154;;33846:1389;33969:20;33992:12;-1:-1:-1;;;;;34023:16:0;;34015:62;;;;-1:-1:-1;;;34015:62:0;;17031:2:1;34015:62:0;;;17013:21:1;17070:2;17050:18;;;17043:30;17109:34;17089:18;;;17082:62;-1:-1:-1;;;17160:18:1;;;17153:31;17201:19;;34015:62:0;16829:397:1;34015:62:0;34222:21;34230:12;33403:4;33437:12;-1:-1:-1;33427:22:0;33346:111;34222:21;34221:22;34213:64;;;;-1:-1:-1;;;34213:64:0;;16673:2:1;34213:64:0;;;16655:21:1;16712:2;16692:18;;;16685:30;16751:31;16731:18;;;16724:59;16800:18;;34213:64:0;16471:353:1;34213:64:0;34307:1;34296:8;:12;34288:60;;;;-1:-1:-1;;;34288:60:0;;15849:2:1;34288:60:0;;;15831:21:1;15888:2;15868:18;;;15861:30;15927:34;15907:18;;;15900:62;-1:-1:-1;;;15978:18:1;;;15971:33;16021:19;;34288:60:0;15647:399:1;34288:60:0;-1:-1:-1;;;;;34468:16:0;;34435:30;34468:16;;;:12;:16;;;;;;;;;34435:49;;;;;;;;;-1:-1:-1;;;;;34435:49:0;;;;;-1:-1:-1;;;34435:49:0;;;;;;;;;;;34514:135;;;;;;;;34540:19;;34435:49;;34514:135;;;34540:39;;34570:8;;34540:39;:::i;:::-;-1:-1:-1;;;;;34514:135:0;;;;;34629:8;34594:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;34514:135:0;;;;;;-1:-1:-1;;;;;34495:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;34495:154:0;;;;;;;;;;;;34688:43;;;;;;;;;;;34714:15;34688:43;;;;;;;;34660:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;34660:71:0;-1:-1:-1;;;;;;34660:71:0;;;;;;;;;;;;;;;;;;34672:12;;34792:325;34816:8;34812:1;:12;34792:325;;;34851:38;;34876:12;;-1:-1:-1;;;;;34851:38:0;;;34868:1;;34851:38;;34868:1;;34851:38;34930:59;34961:1;34965:2;34969:12;34983:5;34930:22;:59::i;:::-;34904:172;;;;-1:-1:-1;;;34904:172:0;;;;;;;:::i;:::-;35091:14;;;;:::i;:::-;;;;34826:3;;;;;:::i;:::-;;;;34792:325;;;-1:-1:-1;35129:12:0;:27;;;35167:60;32736: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:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;:::-;1051:5;815:247;-1:-1:-1;;;815:247:1:o;1067:388::-;1135:6;1143;1196:2;1184:9;1175:7;1171:23;1167:32;1164:52;;;1212:1;1209;1202:12;1164:52;1251:9;1238:23;1270:31;1295:5;1270:31;:::i;:::-;1320:5;-1:-1:-1;1377:2:1;1362:18;;1349:32;1390:33;1349:32;1390:33;:::i;:::-;1442:7;1432:17;;;1067:388;;;;;:::o;1460:456::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1661:9;1648:23;1680:31;1705:5;1680:31;:::i;:::-;1730:5;-1:-1:-1;1787:2:1;1772:18;;1759:32;1800:33;1759:32;1800:33;:::i;:::-;1460:456;;1852:7;;-1:-1:-1;;;1906:2:1;1891:18;;;;1878:32;;1460:456::o;1921:794::-;2016:6;2024;2032;2040;2093:3;2081:9;2072:7;2068:23;2064:33;2061:53;;;2110:1;2107;2100:12;2061:53;2149:9;2136:23;2168:31;2193:5;2168:31;:::i;:::-;2218:5;-1:-1:-1;2275:2:1;2260:18;;2247:32;2288:33;2247:32;2288:33;:::i;:::-;2340:7;-1:-1:-1;2394:2:1;2379:18;;2366:32;;-1:-1:-1;2449:2:1;2434:18;;2421:32;2476:18;2465:30;;2462:50;;;2508:1;2505;2498:12;2462:50;2531:22;;2584:4;2576:13;;2572:27;-1:-1:-1;2562:55:1;;2613:1;2610;2603:12;2562:55;2636:73;2701:7;2696:2;2683:16;2678:2;2674;2670:11;2636:73;:::i;:::-;2626:83;;;1921:794;;;;;;;:::o;2720:315::-;2785:6;2793;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:31;2945:5;2920:31;:::i;:::-;2970:5;-1:-1:-1;2994:35:1;3025:2;3010:18;;2994:35;:::i;:::-;2984:45;;2720:315;;;;;:::o;3040:::-;3108:6;3116;3169:2;3157:9;3148:7;3144:23;3140:32;3137:52;;;3185:1;3182;3175:12;3137:52;3224:9;3211:23;3243:31;3268:5;3243:31;:::i;:::-;3293:5;3345:2;3330:18;;;;3317:32;;-1:-1:-1;;;3040:315:1:o;3360:180::-;3416:6;3469:2;3457:9;3448:7;3444:23;3440:32;3437:52;;;3485:1;3482;3475:12;3437:52;3508:26;3524:9;3508:26;:::i;3545:245::-;3603:6;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3711:9;3698:23;3730:30;3754:5;3730:30;:::i;3795:249::-;3864:6;3917:2;3905:9;3896:7;3892:23;3888:32;3885:52;;;3933:1;3930;3923:12;3885:52;3965:9;3959:16;3984:30;4008:5;3984:30;:::i;4049:280::-;4148:6;4201:2;4189:9;4180:7;4176:23;4172:32;4169:52;;;4217:1;4214;4207:12;4169:52;4249:9;4243:16;4268:31;4293:5;4268:31;:::i;4334:450::-;4403:6;4456:2;4444:9;4435:7;4431:23;4427:32;4424:52;;;4472:1;4469;4462:12;4424:52;4512:9;4499:23;4545:18;4537:6;4534:30;4531:50;;;4577:1;4574;4567:12;4531:50;4600:22;;4653:4;4645:13;;4641:27;-1:-1:-1;4631:55:1;;4682:1;4679;4672:12;4631:55;4705:73;4770:7;4765:2;4752:16;4747:2;4743;4739:11;4705:73;:::i;4789:180::-;4848:6;4901:2;4889:9;4880:7;4876:23;4872:32;4869:52;;;4917:1;4914;4907:12;4869:52;-1:-1:-1;4940:23:1;;4789:180;-1:-1:-1;4789:180:1:o;4974:257::-;5015:3;5053:5;5047:12;5080:6;5075:3;5068:19;5096:63;5152:6;5145:4;5140:3;5136:14;5129:4;5122:5;5118:16;5096:63;:::i;:::-;5213:2;5192:15;-1:-1:-1;;5188:29:1;5179:39;;;;5220:4;5175:50;;4974:257;-1:-1:-1;;4974:257:1:o;5236:185::-;5278:3;5316:5;5310:12;5331:52;5376:6;5371:3;5364:4;5357:5;5353:16;5331:52;:::i;:::-;5399:16;;;;;5236:185;-1:-1:-1;;5236:185:1:o;5426:1249::-;5650:3;5679:1;5712:6;5706:13;5742:3;5764:1;5792:9;5788:2;5784:18;5774:28;;5852:2;5841:9;5837:18;5874;5864:61;;5918:4;5910:6;5906:17;5896:27;;5864:61;5944:2;5992;5984:6;5981:14;5961:18;5958:38;5955:165;;;-1:-1:-1;;;6019:33:1;;6075:4;6072:1;6065:15;6105:4;6026:3;6093:17;5955:165;6136:18;6163:104;;;;6281:1;6276:320;;;;6129:467;;6163:104;-1:-1:-1;;6196:24:1;;6184:37;;6241:16;;;;-1:-1:-1;6163:104:1;;6276:320;19415:1;19408:14;;;19452:4;19439:18;;6371:1;6385:165;6399:6;6396:1;6393:13;6385:165;;;6477:14;;6464:11;;;6457:35;6520:16;;;;6414:10;;6385:165;;;6389:3;;6579:6;6574:3;6570:16;6563:23;;6129:467;;;;;;;6612:57;6638:30;6664:3;6656:6;6638:30;:::i;:::-;6630:6;6612:57;:::i;:::-;6605:64;5426:1249;-1:-1:-1;;;;;;5426:1249:1:o;7098:488::-;-1:-1:-1;;;;;7367:15:1;;;7349:34;;7419:15;;7414:2;7399:18;;7392:43;7466:2;7451:18;;7444:34;;;7514:3;7509:2;7494:18;;7487:31;;;7292:4;;7535:45;;7560:19;;7552:6;7535:45;:::i;7783:219::-;7932:2;7921:9;7914:21;7895:4;7952:44;7992:2;7981:9;7977:18;7969:6;7952:44;:::i;13355:356::-;13557:2;13539:21;;;13576:18;;;13569:30;13635:34;13630:2;13615:18;;13608:62;13702:2;13687:18;;13355:356::o;16051:415::-;16253:2;16235:21;;;16292:2;16272:18;;;16265:30;16331:34;16326:2;16311:18;;16304:62;-1:-1:-1;;;16397:2:1;16382:18;;16375:49;16456:3;16441:19;;16051:415::o;19468:253::-;19508:3;-1:-1:-1;;;;;19597:2:1;19594:1;19590:10;19627:2;19624:1;19620:10;19658:3;19654:2;19650:12;19645:3;19642:21;19639:47;;;19666:18;;:::i;:::-;19702:13;;19468:253;-1:-1:-1;;;;19468:253:1:o;19726:128::-;19766:3;19797:1;19793:6;19790:1;19787:13;19784:39;;;19803:18;;:::i;:::-;-1:-1:-1;19839:9:1;;19726:128::o;19859:120::-;19899:1;19925;19915:35;;19930:18;;:::i;:::-;-1:-1:-1;19964:9:1;;19859:120::o;19984:168::-;20024:7;20090:1;20086;20082:6;20078:14;20075:1;20072:21;20067:1;20060:9;20053:17;20049:45;20046:71;;;20097:18;;:::i;:::-;-1:-1:-1;20137:9:1;;19984:168::o;20157:125::-;20197:4;20225:1;20222;20219:8;20216:34;;;20230:18;;:::i;:::-;-1:-1:-1;20267:9:1;;20157:125::o;20287:258::-;20359:1;20369:113;20383:6;20380:1;20377:13;20369:113;;;20459:11;;;20453:18;20440:11;;;20433:39;20405:2;20398:10;20369:113;;;20500:6;20497:1;20494:13;20491:48;;;-1:-1:-1;;20535:1:1;20517:16;;20510:27;20287:258::o;20550:136::-;20589:3;20617:5;20607:39;;20626:18;;:::i;:::-;-1:-1:-1;;;20662:18:1;;20550:136::o;20691:380::-;20770:1;20766:12;;;;20813;;;20834:61;;20888:4;20880:6;20876:17;20866:27;;20834:61;20941:2;20933:6;20930:14;20910:18;20907:38;20904:161;;;20987:10;20982:3;20978:20;20975:1;20968:31;21022:4;21019:1;21012:15;21050:4;21047:1;21040:15;20904:161;;20691:380;;;:::o;21076:135::-;21115:3;-1:-1:-1;;21136:17:1;;21133:43;;;21156:18;;:::i;:::-;-1:-1:-1;21203:1:1;21192:13;;21076:135::o;21216:112::-;21248:1;21274;21264:35;;21279:18;;:::i;:::-;-1:-1:-1;21313:9:1;;21216:112::o;21333:127::-;21394:10;21389:3;21385:20;21382:1;21375:31;21425:4;21422:1;21415:15;21449:4;21446:1;21439:15;21465:127;21526:10;21521:3;21517:20;21514:1;21507:31;21557:4;21554:1;21547:15;21581:4;21578:1;21571:15;21597:127;21658:10;21653:3;21649:20;21646:1;21639:31;21689:4;21686:1;21679:15;21713:4;21710:1;21703:15;21729:127;21790:10;21785:3;21781:20;21778:1;21771:31;21821:4;21818:1;21811:15;21845:4;21842:1;21835:15;21861:131;-1:-1:-1;;;;;21936:31:1;;21926:42;;21916:70;;21982:1;21979;21972:12;21997:131;-1:-1:-1;;;;;;22071:32:1;;22061:43;;22051:71;;22118:1;22115;22108:12

Swarm Source

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