ETH Price: $2,878.37 (-9.48%)
Gas: 17 Gwei

Token

CryptoBullsGenesis (CBSG)
 

Overview

Max Total Supply

257 CBSG

Holders

186

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CBSG
0x6e827925e759a877e968e0e94f843b9e52ed3d35
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:
CRYPTOBULLSGENESIS

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-12
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// 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: erc721a/contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

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

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

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

    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 = _nextTokenId;
        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++;
        }

        _nextTokenId = 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: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


pragma solidity ^0.8.0;

contract CRYPTOBULLSGENESIS is ERC721A, Ownable {
  using Strings for uint256;
  uint256 public presalePrice = 0 ether;
  uint256 public publicPrice = 0.02 ether;
  uint256 public maxSupply = 150;
  string private baseURI = "ipfs://QzADDzwpCLZn4ZXqRDRKAA1LCbJWRNm4i5A5cC2kXZNegz/";
  bytes32 public wlMerkleRoot;
  uint8 public phase = 1;
  uint8 public maxPerWallet = 3;
  uint8 public maxPerWalletWl = 1;

  mapping(address => uint8)  public walletBuys;

  constructor() ERC721A("CryptoBullsGenesis", "CBSG") {
  }

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

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

  function wlMint(uint8 _mintAmount, bytes32[] calldata _merkleProof) public payable {
    // Verify whitelist requirements
    require(phase == 1, "Sale has not started");
    require(walletBuys[msg.sender] + _mintAmount <= maxPerWalletWl, "Max presale minted for this wallet!");
    require(msg.value >= presalePrice * _mintAmount, "Insufficient funds");
    
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, wlMerkleRoot, leaf), "Invalid proof!");

    walletBuys[msg.sender] += _mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

  function getBaseURI() public view returns (string memory) {
    return baseURI;
  }

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

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

  function setPublicPrice (uint256 _newPrice) external onlyOwner {
    publicPrice = _newPrice;
  }

  function setPhase(uint8 _phase) public onlyOwner {
    phase = _phase;
  }

  function wlRootHash(bytes32 _rootHash) external onlyOwner {
    wlMerkleRoot = _rootHash;
  }

  function publicMint(uint256 quantity) external payable {
    require(phase >= 2, "Sale has not started");
    require(totalSupply() + quantity <= pixelSize, "You can't mint more then the total supply");
    require(walletBuys[msg.sender] + quantity <= maxPerWallet, "Buy limit reached");
    require(msg.value >= publicPrice * quantity, "Insufficient funds");

    _safeMint(msg.sender, quantity);
  }


  function getContractBalance () external view onlyOwner returns (uint256) {
    return address(this).balance;
  }

  function withdrawAll() external onlyOwner{
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        
        address[1] memory addresses = [
            0xE4929F269BB800C1Ac77B9c4C8386De8320Dd6A5 
        ];

        uint32[5] memory shares = [
            uint32(50),
            uint32(40),
            uint32(330),
            uint32(330),
            uint32(250)
        ];

        for (uint32 i = 0; i < addresses.length; i++) {
            uint256 amount = i == addresses.length - 1 ? address(this).balance : balance * shares[i] / 1000;
            _widthdraw(addresses[i], amount);
        }
  }
 
   uint256 public pixelSize = 2048;

  //Withdraw balance from contract
  function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{ value: _amount }("");
        require(success, "Failed to withdraw Ether");
  }

}

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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletWl","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pixelSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint8","name":"_phase","type":"uint8"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletBuys","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"wlRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600060085566470de4df8200006009556096600a5560e06040526036608081815290620029e360a03980516200003e91600b916020909101906200013b565b50600d805462ffffff191662010301179055610800600f553480156200006357600080fd5b50604080518082018252601281527143727970746f42756c6c7347656e6573697360701b6020808301918252835180850190945260048452634342534760e01b908401528151919291620000ba916001916200013b565b508051620000d09060029060208401906200013b565b5050600160005550620000e333620000e9565b6200021e565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014990620001e1565b90600052602060002090601f0160209004810192826200016d5760008555620001b8565b82601f106200018857805160ff1916838001178555620001b8565b82800160010185558215620001b8579182015b82811115620001b85782518255916020019190600101906200019b565b50620001c6929150620001ca565b5090565b5b80821115620001c65760008155600101620001cb565b600181811c90821680620001f657607f821691505b602082108114156200021857634e487b7160e01b600052602260045260246000fd5b50919050565b6127b5806200022e6000396000f3fe6080604052600436106102195760003560e01c8063715018a611610123578063bcaa7395116100ab578063dea96c981161006f578063dea96c98146105e5578063e985e9c514610615578063f2fde38b1461065e578063f65fb7941461067e578063fc0ab6e21461069e57600080fd5b8063bcaa739514610559578063c03afb591461056f578063c62752551461058f578063c87b56dd146105af578063d5abeb01146105cf57600080fd5b806395d89b41116100f257806395d89b41146104d4578063a22cb465146104e9578063a945bf8014610509578063b1c9fe6e1461051f578063b88d4fde1461053957600080fd5b8063715018a61461046c57806382cd006a14610481578063853828b6146104a15780638da5cb5b146104b657600080fd5b806342842e0e116101a657806355f804b31161017557806355f804b3146103e25780636352211e146104025780636f9fb98a1461042257806370a0823114610437578063714c53981461045757600080fd5b806342842e0e1461035b578063453c23101461037b5780634f6ccce7146103ac57806354c06aee146103cc57600080fd5b8063095ea7b3116101ed578063095ea7b3146102d157806318160ddd146102f357806323b872dd146103085780632db11544146103285780632f745c591461033b57600080fd5b80620e7fa81461021e57806301ffc9a71461024757806306fdde0314610277578063081812fc14610299575b600080fd5b34801561022a57600080fd5b5061023460085481565b6040519081526020015b60405180910390f35b34801561025357600080fd5b50610267610262366004612076565b6106b1565b604051901515815260200161023e565b34801561028357600080fd5b5061028c61071e565b60405161023e91906120f2565b3480156102a557600080fd5b506102b96102b4366004612105565b6107b0565b6040516001600160a01b03909116815260200161023e565b3480156102dd57600080fd5b506102f16102ec36600461213a565b610840565b005b3480156102ff57600080fd5b50610234610958565b34801561031457600080fd5b506102f1610323366004612164565b61096e565b6102f1610336366004612105565b610979565b34801561034757600080fd5b5061023461035636600461213a565b610b09565b34801561036757600080fd5b506102f1610376366004612164565b610c81565b34801561038757600080fd5b50600d5461039a90610100900460ff1681565b60405160ff909116815260200161023e565b3480156103b857600080fd5b506102346103c7366004612105565b610c9c565b3480156103d857600080fd5b50610234600c5481565b3480156103ee57600080fd5b506102f16103fd36600461222c565b610d04565b34801561040e57600080fd5b506102b961041d366004612105565b610d45565b34801561042e57600080fd5b50610234610d57565b34801561044357600080fd5b50610234610452366004612275565b610d89565b34801561046357600080fd5b5061028c610e1a565b34801561047857600080fd5b506102f1610e29565b34801561048d57600080fd5b506102f161049c366004612105565b610e5f565b3480156104ad57600080fd5b506102f1610e8e565b3480156104c257600080fd5b506007546001600160a01b03166102b9565b3480156104e057600080fd5b5061028c610ff9565b3480156104f557600080fd5b506102f1610504366004612290565b611008565b34801561051557600080fd5b5061023460095481565b34801561052b57600080fd5b50600d5461039a9060ff1681565b34801561054557600080fd5b506102f16105543660046122cc565b6110cd565b34801561056557600080fd5b50610234600f5481565b34801561057b57600080fd5b506102f161058a366004612359565b611100565b34801561059b57600080fd5b506102f16105aa366004612105565b611140565b3480156105bb57600080fd5b5061028c6105ca366004612105565b61116f565b3480156105db57600080fd5b50610234600a5481565b3480156105f157600080fd5b5061039a610600366004612275565b600e6020526000908152604090205460ff1681565b34801561062157600080fd5b50610267610630366004612374565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561066a57600080fd5b506102f1610679366004612275565b61123c565b34801561068a57600080fd5b50600d5461039a9062010000900460ff1681565b6102f16106ac3660046123a7565b6112d4565b60006001600160e01b031982166380ac58cd60e01b14806106e257506001600160e01b03198216635b5e139f60e01b145b806106fd57506001600160e01b0319821663780e9d6360e01b145b8061071857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461072d9061242d565b80601f01602080910402602001604051908101604052809291908181526020018280546107599061242d565b80156107a65780601f1061077b576101008083540402835291602001916107a6565b820191906000526020600020905b81548152906001019060200180831161078957829003601f168201915b5050505050905090565b60006107bd826000541190565b6108245760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061084b82610d45565b9050806001600160a01b0316836001600160a01b031614156108ba5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161081b565b336001600160a01b03821614806108d657506108d68133610630565b6109485760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161081b565b6109538383836114fb565b505050565b60006001600054610969919061247e565b905090565b610953838383611557565b600d54600260ff90911610156109c85760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604482015260640161081b565b600f54816109d4610958565b6109de9190612495565b1115610a3e5760405162461bcd60e51b815260206004820152602960248201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604482015268616c20737570706c7960b81b606482015260840161081b565b600d54336000908152600e602052604090205460ff610100909204821691610a6891849116612495565b1115610aaa5760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b604482015260640161081b565b80600954610ab891906124ad565b341015610afc5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161081b565b610b06338261189e565b50565b6000610b1483610d89565b8210610b6d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161081b565b6000610b77610958565b905060008060005b83811015610c21576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bd257805192505b876001600160a01b0316836001600160a01b03161415610c0e5786841415610c005750935061071892505050565b83610c0a816124cc565b9450505b5080610c19816124cc565b915050610b7f565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161081b565b610953838383604051806020016040528060008152506110cd565b6000610ca6610958565b8210610d005760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161081b565b5090565b6007546001600160a01b03163314610d2e5760405162461bcd60e51b815260040161081b906124e7565b8051610d4190600b906020840190611fd0565b5050565b6000610d50826118b8565b5192915050565b6007546000906001600160a01b03163314610d845760405162461bcd60e51b815260040161081b906124e7565b504790565b60006001600160a01b038216610df55760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161081b565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461072d9061242d565b6007546001600160a01b03163314610e535760405162461bcd60e51b815260040161081b906124e7565b610e5d6000611998565b565b6007546001600160a01b03163314610e895760405162461bcd60e51b815260040161081b906124e7565b600c55565b6007546001600160a01b03163314610eb85760405162461bcd60e51b815260040161081b906124e7565b4780610efc5760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b604482015260640161081b565b604080516020808201835273e4929f269bb800c1ac77b9c4c8386de8320dd6a58252825160a0810184526032815260289181019190915261014a928101839052606081019290925260fa60808301529060005b60018163ffffffff161015610ff3576000610f6b60018061247e565b8263ffffffff1614610fb6576103e8838363ffffffff1660058110610f9257610f9261251c565b6020020151610fa79063ffffffff16876124ad565b610fb19190612548565b610fb8565b475b9050610fe0848363ffffffff1660018110610fd557610fd561251c565b6020020151826119ea565b5080610feb8161255c565b915050610f4f565b50505050565b60606002805461072d9061242d565b6001600160a01b0382163314156110615760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161081b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110d8848484611557565b6110e484848484611a8d565b610ff35760405162461bcd60e51b815260040161081b90612580565b6007546001600160a01b0316331461112a5760405162461bcd60e51b815260040161081b906124e7565b600d805460ff191660ff92909216919091179055565b6007546001600160a01b0316331461116a5760405162461bcd60e51b815260040161081b906124e7565b600955565b606061117c826000541190565b6111e05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161081b565b6000600b80546111ef9061242d565b90501161120b5760405180602001604052806000815250610718565b600b61121683611b8c565b6040516020016112279291906125ef565b60405160208183030381529060405292915050565b6007546001600160a01b031633146112665760405162461bcd60e51b815260040161081b906124e7565b6001600160a01b0381166112cb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081b565b610b0681611998565b600d5460ff166001146113205760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604482015260640161081b565b600d54336000908152600e602052604090205460ff6201000090920482169161134b918691166126aa565b60ff1611156113a85760405162461bcd60e51b815260206004820152602360248201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60448201526265742160e81b606482015260840161081b565b8260ff166008546113b991906124ad565b3410156113fd5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161081b565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061147783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611c8a565b6114b45760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b604482015260640161081b565b336000908152600e6020526040812080548692906114d690849060ff166126aa565b92506101000a81548160ff021916908360ff160217905550610ff3338560ff1661189e565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611562826118b8565b80519091506000906001600160a01b0316336001600160a01b0316148061159957503361158e846107b0565b6001600160a01b0316145b806115ab575081516115ab9033610630565b9050806116155760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161081b565b846001600160a01b031682600001516001600160a01b0316146116895760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161081b565b6001600160a01b0384166116ed5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161081b565b6116fd60008484600001516114fb565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906117c2908590612495565b6000818152600360205260409020549091506001600160a01b0316611854576117ec816000541190565b156118545760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610d41828260405180602001604052806000815250611ca0565b60408051808201909152600080825260208201526118d7826000541190565b6119365760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161081b565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611985579392505050565b5080611990816126cf565b915050611938565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a37576040519150601f19603f3d011682016040523d82523d6000602084013e611a3c565b606091505b50509050806109535760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2077697468647261772045746865720000000000000000604482015260640161081b565b60006001600160a01b0384163b15611b8057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ad19033908990889088906004016126e6565b6020604051808303816000875af1925050508015611b0c575060408051601f3d908101601f19168201909252611b0991810190612723565b60015b611b66573d808015611b3a576040519150601f19603f3d011682016040523d82523d6000602084013e611b3f565b606091505b508051611b5e5760405162461bcd60e51b815260040161081b90612580565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b84565b5060015b949350505050565b606081611bb05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bda5780611bc4816124cc565b9150611bd39050600a83612548565b9150611bb4565b60008167ffffffffffffffff811115611bf557611bf56121a0565b6040519080825280601f01601f191660200182016040528015611c1f576020820181803683370190505b5090505b8415611b8457611c3460018361247e565b9150611c41600a86612740565b611c4c906030612495565b60f81b818381518110611c6157611c6161251c565b60200101906001600160f81b031916908160001a905350611c83600a86612548565b9450611c23565b600082611c978584611f5c565b14949350505050565b6000546001600160a01b038416611d035760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161081b565b611d0e816000541190565b15611d5b5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161081b565b60008311611db75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b606482015260840161081b565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611e13908790612754565b6001600160801b03168152602001858360200151611e319190612754565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611f515760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f156000888488611a8d565b611f315760405162461bcd60e51b815260040161081b90612580565b81611f3b816124cc565b9250508080611f49906124cc565b915050611ec8565b506000819055611896565b600081815b8451811015611fc8576000858281518110611f7e57611f7e61251c565b60200260200101519050808311611fa45760008381526020829052604090209250611fb5565b600081815260208490526040902092505b5080611fc0816124cc565b915050611f61565b509392505050565b828054611fdc9061242d565b90600052602060002090601f016020900481019282611ffe5760008555612044565b82601f1061201757805160ff1916838001178555612044565b82800160010185558215612044579182015b82811115612044578251825591602001919060010190612029565b50610d009291505b80821115610d00576000815560010161204c565b6001600160e01b031981168114610b0657600080fd5b60006020828403121561208857600080fd5b813561209381612060565b9392505050565b60005b838110156120b557818101518382015260200161209d565b83811115610ff35750506000910152565b600081518084526120de81602086016020860161209a565b601f01601f19169290920160200192915050565b60208152600061209360208301846120c6565b60006020828403121561211757600080fd5b5035919050565b80356001600160a01b038116811461213557600080fd5b919050565b6000806040838503121561214d57600080fd5b6121568361211e565b946020939093013593505050565b60008060006060848603121561217957600080fd5b6121828461211e565b92506121906020850161211e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156121d1576121d16121a0565b604051601f8501601f19908116603f011681019082821181831017156121f9576121f96121a0565b8160405280935085815286868601111561221257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561223e57600080fd5b813567ffffffffffffffff81111561225557600080fd5b8201601f8101841361226657600080fd5b611b84848235602084016121b6565b60006020828403121561228757600080fd5b6120938261211e565b600080604083850312156122a357600080fd5b6122ac8361211e565b9150602083013580151581146122c157600080fd5b809150509250929050565b600080600080608085870312156122e257600080fd5b6122eb8561211e565b93506122f96020860161211e565b925060408501359150606085013567ffffffffffffffff81111561231c57600080fd5b8501601f8101871361232d57600080fd5b61233c878235602084016121b6565b91505092959194509250565b803560ff8116811461213557600080fd5b60006020828403121561236b57600080fd5b61209382612348565b6000806040838503121561238757600080fd5b6123908361211e565b915061239e6020840161211e565b90509250929050565b6000806000604084860312156123bc57600080fd5b6123c584612348565b9250602084013567ffffffffffffffff808211156123e257600080fd5b818601915086601f8301126123f657600080fd5b81358181111561240557600080fd5b8760208260051b850101111561241a57600080fd5b6020830194508093505050509250925092565b600181811c9082168061244157607f821691505b6020821081141561246257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561249057612490612468565b500390565b600082198211156124a8576124a8612468565b500190565b60008160001904831182151516156124c7576124c7612468565b500290565b60006000198214156124e0576124e0612468565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b60008261255757612557612532565b500490565b600063ffffffff8083168181141561257657612576612468565b6001019392505050565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516125e581856020860161209a565b9290920192915050565b600080845481600182811c91508083168061260b57607f831692505b602080841082141561262b57634e487b7160e01b86526022600452602486fd5b81801561263f57600181146126505761267d565b60ff1986168952848901965061267d565b60008b81526020902060005b868110156126755781548b82015290850190830161265c565b505084890196505b5050505050506126a161269082866125d3565b64173539b7b760d91b815260050190565b95945050505050565b600060ff821660ff84168060ff038211156126c7576126c7612468565b019392505050565b6000816126de576126de612468565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612719908301846120c6565b9695505050505050565b60006020828403121561273557600080fd5b815161209381612060565b60008261274f5761274f612532565b500690565b60006001600160801b0380831681851680830382111561277657612776612468565b0194935050505056fea2646970667358221220975c9491547f45ae49d193d231a39d5ef69c4f3e2488dccb3bfd5c560e574bca64736f6c634300080c0033697066733a2f2f517a4144447a7770434c5a6e345a58715244524b4141314c43624a57524e6d34693541356343326b585a4e65677a2f

Deployed Bytecode

0x6080604052600436106102195760003560e01c8063715018a611610123578063bcaa7395116100ab578063dea96c981161006f578063dea96c98146105e5578063e985e9c514610615578063f2fde38b1461065e578063f65fb7941461067e578063fc0ab6e21461069e57600080fd5b8063bcaa739514610559578063c03afb591461056f578063c62752551461058f578063c87b56dd146105af578063d5abeb01146105cf57600080fd5b806395d89b41116100f257806395d89b41146104d4578063a22cb465146104e9578063a945bf8014610509578063b1c9fe6e1461051f578063b88d4fde1461053957600080fd5b8063715018a61461046c57806382cd006a14610481578063853828b6146104a15780638da5cb5b146104b657600080fd5b806342842e0e116101a657806355f804b31161017557806355f804b3146103e25780636352211e146104025780636f9fb98a1461042257806370a0823114610437578063714c53981461045757600080fd5b806342842e0e1461035b578063453c23101461037b5780634f6ccce7146103ac57806354c06aee146103cc57600080fd5b8063095ea7b3116101ed578063095ea7b3146102d157806318160ddd146102f357806323b872dd146103085780632db11544146103285780632f745c591461033b57600080fd5b80620e7fa81461021e57806301ffc9a71461024757806306fdde0314610277578063081812fc14610299575b600080fd5b34801561022a57600080fd5b5061023460085481565b6040519081526020015b60405180910390f35b34801561025357600080fd5b50610267610262366004612076565b6106b1565b604051901515815260200161023e565b34801561028357600080fd5b5061028c61071e565b60405161023e91906120f2565b3480156102a557600080fd5b506102b96102b4366004612105565b6107b0565b6040516001600160a01b03909116815260200161023e565b3480156102dd57600080fd5b506102f16102ec36600461213a565b610840565b005b3480156102ff57600080fd5b50610234610958565b34801561031457600080fd5b506102f1610323366004612164565b61096e565b6102f1610336366004612105565b610979565b34801561034757600080fd5b5061023461035636600461213a565b610b09565b34801561036757600080fd5b506102f1610376366004612164565b610c81565b34801561038757600080fd5b50600d5461039a90610100900460ff1681565b60405160ff909116815260200161023e565b3480156103b857600080fd5b506102346103c7366004612105565b610c9c565b3480156103d857600080fd5b50610234600c5481565b3480156103ee57600080fd5b506102f16103fd36600461222c565b610d04565b34801561040e57600080fd5b506102b961041d366004612105565b610d45565b34801561042e57600080fd5b50610234610d57565b34801561044357600080fd5b50610234610452366004612275565b610d89565b34801561046357600080fd5b5061028c610e1a565b34801561047857600080fd5b506102f1610e29565b34801561048d57600080fd5b506102f161049c366004612105565b610e5f565b3480156104ad57600080fd5b506102f1610e8e565b3480156104c257600080fd5b506007546001600160a01b03166102b9565b3480156104e057600080fd5b5061028c610ff9565b3480156104f557600080fd5b506102f1610504366004612290565b611008565b34801561051557600080fd5b5061023460095481565b34801561052b57600080fd5b50600d5461039a9060ff1681565b34801561054557600080fd5b506102f16105543660046122cc565b6110cd565b34801561056557600080fd5b50610234600f5481565b34801561057b57600080fd5b506102f161058a366004612359565b611100565b34801561059b57600080fd5b506102f16105aa366004612105565b611140565b3480156105bb57600080fd5b5061028c6105ca366004612105565b61116f565b3480156105db57600080fd5b50610234600a5481565b3480156105f157600080fd5b5061039a610600366004612275565b600e6020526000908152604090205460ff1681565b34801561062157600080fd5b50610267610630366004612374565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561066a57600080fd5b506102f1610679366004612275565b61123c565b34801561068a57600080fd5b50600d5461039a9062010000900460ff1681565b6102f16106ac3660046123a7565b6112d4565b60006001600160e01b031982166380ac58cd60e01b14806106e257506001600160e01b03198216635b5e139f60e01b145b806106fd57506001600160e01b0319821663780e9d6360e01b145b8061071857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461072d9061242d565b80601f01602080910402602001604051908101604052809291908181526020018280546107599061242d565b80156107a65780601f1061077b576101008083540402835291602001916107a6565b820191906000526020600020905b81548152906001019060200180831161078957829003601f168201915b5050505050905090565b60006107bd826000541190565b6108245760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061084b82610d45565b9050806001600160a01b0316836001600160a01b031614156108ba5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161081b565b336001600160a01b03821614806108d657506108d68133610630565b6109485760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161081b565b6109538383836114fb565b505050565b60006001600054610969919061247e565b905090565b610953838383611557565b600d54600260ff90911610156109c85760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604482015260640161081b565b600f54816109d4610958565b6109de9190612495565b1115610a3e5760405162461bcd60e51b815260206004820152602960248201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604482015268616c20737570706c7960b81b606482015260840161081b565b600d54336000908152600e602052604090205460ff610100909204821691610a6891849116612495565b1115610aaa5760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b604482015260640161081b565b80600954610ab891906124ad565b341015610afc5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161081b565b610b06338261189e565b50565b6000610b1483610d89565b8210610b6d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161081b565b6000610b77610958565b905060008060005b83811015610c21576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bd257805192505b876001600160a01b0316836001600160a01b03161415610c0e5786841415610c005750935061071892505050565b83610c0a816124cc565b9450505b5080610c19816124cc565b915050610b7f565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161081b565b610953838383604051806020016040528060008152506110cd565b6000610ca6610958565b8210610d005760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161081b565b5090565b6007546001600160a01b03163314610d2e5760405162461bcd60e51b815260040161081b906124e7565b8051610d4190600b906020840190611fd0565b5050565b6000610d50826118b8565b5192915050565b6007546000906001600160a01b03163314610d845760405162461bcd60e51b815260040161081b906124e7565b504790565b60006001600160a01b038216610df55760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161081b565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461072d9061242d565b6007546001600160a01b03163314610e535760405162461bcd60e51b815260040161081b906124e7565b610e5d6000611998565b565b6007546001600160a01b03163314610e895760405162461bcd60e51b815260040161081b906124e7565b600c55565b6007546001600160a01b03163314610eb85760405162461bcd60e51b815260040161081b906124e7565b4780610efc5760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b604482015260640161081b565b604080516020808201835273e4929f269bb800c1ac77b9c4c8386de8320dd6a58252825160a0810184526032815260289181019190915261014a928101839052606081019290925260fa60808301529060005b60018163ffffffff161015610ff3576000610f6b60018061247e565b8263ffffffff1614610fb6576103e8838363ffffffff1660058110610f9257610f9261251c565b6020020151610fa79063ffffffff16876124ad565b610fb19190612548565b610fb8565b475b9050610fe0848363ffffffff1660018110610fd557610fd561251c565b6020020151826119ea565b5080610feb8161255c565b915050610f4f565b50505050565b60606002805461072d9061242d565b6001600160a01b0382163314156110615760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161081b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110d8848484611557565b6110e484848484611a8d565b610ff35760405162461bcd60e51b815260040161081b90612580565b6007546001600160a01b0316331461112a5760405162461bcd60e51b815260040161081b906124e7565b600d805460ff191660ff92909216919091179055565b6007546001600160a01b0316331461116a5760405162461bcd60e51b815260040161081b906124e7565b600955565b606061117c826000541190565b6111e05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161081b565b6000600b80546111ef9061242d565b90501161120b5760405180602001604052806000815250610718565b600b61121683611b8c565b6040516020016112279291906125ef565b60405160208183030381529060405292915050565b6007546001600160a01b031633146112665760405162461bcd60e51b815260040161081b906124e7565b6001600160a01b0381166112cb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081b565b610b0681611998565b600d5460ff166001146113205760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604482015260640161081b565b600d54336000908152600e602052604090205460ff6201000090920482169161134b918691166126aa565b60ff1611156113a85760405162461bcd60e51b815260206004820152602360248201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60448201526265742160e81b606482015260840161081b565b8260ff166008546113b991906124ad565b3410156113fd5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161081b565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061147783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611c8a565b6114b45760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b604482015260640161081b565b336000908152600e6020526040812080548692906114d690849060ff166126aa565b92506101000a81548160ff021916908360ff160217905550610ff3338560ff1661189e565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611562826118b8565b80519091506000906001600160a01b0316336001600160a01b0316148061159957503361158e846107b0565b6001600160a01b0316145b806115ab575081516115ab9033610630565b9050806116155760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161081b565b846001600160a01b031682600001516001600160a01b0316146116895760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161081b565b6001600160a01b0384166116ed5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161081b565b6116fd60008484600001516114fb565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906117c2908590612495565b6000818152600360205260409020549091506001600160a01b0316611854576117ec816000541190565b156118545760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610d41828260405180602001604052806000815250611ca0565b60408051808201909152600080825260208201526118d7826000541190565b6119365760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161081b565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611985579392505050565b5080611990816126cf565b915050611938565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a37576040519150601f19603f3d011682016040523d82523d6000602084013e611a3c565b606091505b50509050806109535760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2077697468647261772045746865720000000000000000604482015260640161081b565b60006001600160a01b0384163b15611b8057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ad19033908990889088906004016126e6565b6020604051808303816000875af1925050508015611b0c575060408051601f3d908101601f19168201909252611b0991810190612723565b60015b611b66573d808015611b3a576040519150601f19603f3d011682016040523d82523d6000602084013e611b3f565b606091505b508051611b5e5760405162461bcd60e51b815260040161081b90612580565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b84565b5060015b949350505050565b606081611bb05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bda5780611bc4816124cc565b9150611bd39050600a83612548565b9150611bb4565b60008167ffffffffffffffff811115611bf557611bf56121a0565b6040519080825280601f01601f191660200182016040528015611c1f576020820181803683370190505b5090505b8415611b8457611c3460018361247e565b9150611c41600a86612740565b611c4c906030612495565b60f81b818381518110611c6157611c6161251c565b60200101906001600160f81b031916908160001a905350611c83600a86612548565b9450611c23565b600082611c978584611f5c565b14949350505050565b6000546001600160a01b038416611d035760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161081b565b611d0e816000541190565b15611d5b5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161081b565b60008311611db75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b606482015260840161081b565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611e13908790612754565b6001600160801b03168152602001858360200151611e319190612754565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611f515760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f156000888488611a8d565b611f315760405162461bcd60e51b815260040161081b90612580565b81611f3b816124cc565b9250508080611f49906124cc565b915050611ec8565b506000819055611896565b600081815b8451811015611fc8576000858281518110611f7e57611f7e61251c565b60200260200101519050808311611fa45760008381526020829052604090209250611fb5565b600081815260208490526040902092505b5080611fc0816124cc565b915050611f61565b509392505050565b828054611fdc9061242d565b90600052602060002090601f016020900481019282611ffe5760008555612044565b82601f1061201757805160ff1916838001178555612044565b82800160010185558215612044579182015b82811115612044578251825591602001919060010190612029565b50610d009291505b80821115610d00576000815560010161204c565b6001600160e01b031981168114610b0657600080fd5b60006020828403121561208857600080fd5b813561209381612060565b9392505050565b60005b838110156120b557818101518382015260200161209d565b83811115610ff35750506000910152565b600081518084526120de81602086016020860161209a565b601f01601f19169290920160200192915050565b60208152600061209360208301846120c6565b60006020828403121561211757600080fd5b5035919050565b80356001600160a01b038116811461213557600080fd5b919050565b6000806040838503121561214d57600080fd5b6121568361211e565b946020939093013593505050565b60008060006060848603121561217957600080fd5b6121828461211e565b92506121906020850161211e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156121d1576121d16121a0565b604051601f8501601f19908116603f011681019082821181831017156121f9576121f96121a0565b8160405280935085815286868601111561221257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561223e57600080fd5b813567ffffffffffffffff81111561225557600080fd5b8201601f8101841361226657600080fd5b611b84848235602084016121b6565b60006020828403121561228757600080fd5b6120938261211e565b600080604083850312156122a357600080fd5b6122ac8361211e565b9150602083013580151581146122c157600080fd5b809150509250929050565b600080600080608085870312156122e257600080fd5b6122eb8561211e565b93506122f96020860161211e565b925060408501359150606085013567ffffffffffffffff81111561231c57600080fd5b8501601f8101871361232d57600080fd5b61233c878235602084016121b6565b91505092959194509250565b803560ff8116811461213557600080fd5b60006020828403121561236b57600080fd5b61209382612348565b6000806040838503121561238757600080fd5b6123908361211e565b915061239e6020840161211e565b90509250929050565b6000806000604084860312156123bc57600080fd5b6123c584612348565b9250602084013567ffffffffffffffff808211156123e257600080fd5b818601915086601f8301126123f657600080fd5b81358181111561240557600080fd5b8760208260051b850101111561241a57600080fd5b6020830194508093505050509250925092565b600181811c9082168061244157607f821691505b6020821081141561246257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561249057612490612468565b500390565b600082198211156124a8576124a8612468565b500190565b60008160001904831182151516156124c7576124c7612468565b500290565b60006000198214156124e0576124e0612468565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b60008261255757612557612532565b500490565b600063ffffffff8083168181141561257657612576612468565b6001019392505050565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516125e581856020860161209a565b9290920192915050565b600080845481600182811c91508083168061260b57607f831692505b602080841082141561262b57634e487b7160e01b86526022600452602486fd5b81801561263f57600181146126505761267d565b60ff1986168952848901965061267d565b60008b81526020902060005b868110156126755781548b82015290850190830161265c565b505084890196505b5050505050506126a161269082866125d3565b64173539b7b760d91b815260050190565b95945050505050565b600060ff821660ff84168060ff038211156126c7576126c7612468565b019392505050565b6000816126de576126de612468565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612719908301846120c6565b9695505050505050565b60006020828403121561273557600080fd5b815161209381612060565b60008261274f5761274f612532565b500690565b60006001600160801b0380831681851680830382111561277657612776612468565b0194935050505056fea2646970667358221220975c9491547f45ae49d193d231a39d5ef69c4f3e2488dccb3bfd5c560e574bca64736f6c634300080c0033

Deployed Bytecode Sourcemap

41380:3506:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41463:37;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;41463:37:0;;;;;;;;24309:372;;;;;;;;;;-1:-1:-1;24309:372:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;24309:372:0;582:187:1;25936:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27497:214::-;;;;;;;;;;-1:-1:-1;27497:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1896:32:1;;;1878:51;;1866:2;1851:18;27497:214:0;1732:203:1;27018:413:0;;;;;;;;;;-1:-1:-1;27018:413:0;;;;;:::i;:::-;;:::i;:::-;;22746:104;;;;;;;;;;;;;:::i;28373:162::-;;;;;;;;;;-1:-1:-1;28373:162:0;;;;;:::i;:::-;;:::i;43398:408::-;;;;;;:::i;:::-;;:::i;23414:823::-;;;;;;;;;;-1:-1:-1;23414:823:0;;;;;:::i;:::-;;:::i;28606:177::-;;;;;;;;;;-1:-1:-1;28606:177:0;;;;;:::i;:::-;;:::i;41729:29::-;;;;;;;;;;-1:-1:-1;41729:29:0;;;;;;;;;;;;;;2882:4:1;2870:17;;;2852:36;;2840:2;2825:18;41729:29:0;2710:184:1;22927:187:0;;;;;;;;;;-1:-1:-1;22927:187:0;;;;;:::i;:::-;;:::i;41670:27::-;;;;;;;;;;;;;;;;43010:94;;;;;;;;;;-1:-1:-1;43010:94:0;;;;;:::i;:::-;;:::i;25745:124::-;;;;;;;;;;-1:-1:-1;25745:124:0;;;;;:::i;:::-;;:::i;43814:114::-;;;;;;;;;;;;;:::i;24745:221::-;;;;;;;;;;-1:-1:-1;24745:221:0;;;;;:::i;:::-;;:::i;42819:85::-;;;;;;;;;;;;;:::i;38010:103::-;;;;;;;;;;;;;:::i;43297:95::-;;;;;;;;;;-1:-1:-1;43297:95:0;;;;;:::i;:::-;;:::i;43934:676::-;;;;;;;;;;;;;:::i;37359:87::-;;;;;;;;;;-1:-1:-1;37432:6:0;;-1:-1:-1;;;;;37432:6:0;37359:87;;26105:104;;;;;;;;;;;;;:::i;27783:288::-;;;;;;;;;;-1:-1:-1;27783:288:0;;;;;:::i;:::-;;:::i;41505:39::-;;;;;;;;;;;;;;;;41702:22;;;;;;;;;;-1:-1:-1;41702:22:0;;;;;;;;28854:355;;;;;;;;;;-1:-1:-1;28854:355:0;;;;;:::i;:::-;;:::i;44618:31::-;;;;;;;;;;;;;;;;43215:76;;;;;;;;;;-1:-1:-1;43215:76:0;;;;;:::i;:::-;;:::i;43110:99::-;;;;;;;;;;-1:-1:-1;43110:99:0;;;;;:::i;:::-;;:::i;41916:288::-;;;;;;;;;;-1:-1:-1;41916:288:0;;;;;:::i;:::-;;:::i;41549:30::-;;;;;;;;;;;;;;;;41801:44;;;;;;;;;;-1:-1:-1;41801:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;28142:164;;;;;;;;;;-1:-1:-1;28142:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28263:25:0;;;28239:4;28263:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28142:164;38268:201;;;;;;;;;;-1:-1:-1;38268:201:0;;;;;:::i;:::-;;:::i;41763:31::-;;;;;;;;;;-1:-1:-1;41763:31:0;;;;;;;;;;;42210:603;;;;;;:::i;:::-;;:::i;24309:372::-;24411:4;-1:-1:-1;;;;;;24448:40:0;;-1:-1:-1;;;24448:40:0;;:105;;-1:-1:-1;;;;;;;24505:48:0;;-1:-1:-1;;;24505:48:0;24448:105;:172;;;-1:-1:-1;;;;;;;24570:50:0;;-1:-1:-1;;;24570:50:0;24448:172;:225;;;-1:-1:-1;;;;;;;;;;13230:40:0;;;24637:36;24428:245;24309:372;-1:-1:-1;;24309:372:0:o;25936:100::-;25990:13;26023:5;26016:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25936:100;:::o;27497:214::-;27565:7;27593:16;27601:7;29521:4;29555:12;-1:-1:-1;29545:22:0;29464:111;27593:16;27585:74;;;;-1:-1:-1;;;27585:74:0;;7596:2:1;27585:74:0;;;7578:21:1;7635:2;7615:18;;;7608:30;7674:34;7654:18;;;7647:62;-1:-1:-1;;;7725:18:1;;;7718:43;7778:19;;27585:74:0;;;;;;;;;-1:-1:-1;27679:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27679:24:0;;27497:214::o;27018:413::-;27091:13;27107:24;27123:7;27107:15;:24::i;:::-;27091:40;;27156:5;-1:-1:-1;;;;;27150:11:0;:2;-1:-1:-1;;;;;27150:11:0;;;27142:58;;;;-1:-1:-1;;;27142:58:0;;8010:2:1;27142:58:0;;;7992:21:1;8049:2;8029:18;;;8022:30;8088:34;8068:18;;;8061:62;-1:-1:-1;;;8139:18:1;;;8132:32;8181:19;;27142:58:0;7808:398:1;27142:58:0;20792:10;-1:-1:-1;;;;;27235:21:0;;;;:62;;-1:-1:-1;27260:37:0;27277:5;20792:10;28142:164;:::i;27260:37::-;27213:169;;;;-1:-1:-1;;;27213:169:0;;8413:2:1;27213:169:0;;;8395:21:1;8452:2;8432:18;;;8425:30;8491:34;8471:18;;;8464:62;8562:27;8542:18;;;8535:55;8607:19;;27213:169:0;8211:421:1;27213:169:0;27395:28;27404:2;27408:7;27417:5;27395:8;:28::i;:::-;27080:351;27018:413;;:::o;22746:104::-;22799:7;22841:1;22826:12;;:16;;;;:::i;:::-;22819:23;;22746:104;:::o;28373:162::-;28499:28;28509:4;28515:2;28519:7;28499:9;:28::i;43398:408::-;43468:5;;43477:1;43468:5;;;;:10;;43460:43;;;;-1:-1:-1;;;43460:43:0;;9101:2:1;43460:43:0;;;9083:21:1;9140:2;9120:18;;;9113:30;-1:-1:-1;;;9159:18:1;;;9152:50;9219:18;;43460:43:0;8899:344:1;43460:43:0;43546:9;;43534:8;43518:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;43510:91;;;;-1:-1:-1;;;43510:91:0;;9583:2:1;43510:91:0;;;9565:21:1;9622:2;9602:18;;;9595:30;9661:34;9641:18;;;9634:62;-1:-1:-1;;;9712:18:1;;;9705:39;9761:19;;43510:91:0;9381:405:1;43510:91:0;43653:12;;43627:10;43616:22;;;;:10;:22;;;;;;43653:12;;;;;;;;43616:33;;43641:8;;43616:22;:33;:::i;:::-;:49;;43608:79;;;;-1:-1:-1;;;43608:79:0;;9993:2:1;43608:79:0;;;9975:21:1;10032:2;10012:18;;;10005:30;-1:-1:-1;;;10051:18:1;;;10044:47;10108:18;;43608:79:0;9791:341:1;43608:79:0;43729:8;43715:11;;:22;;;;:::i;:::-;43702:9;:35;;43694:66;;;;-1:-1:-1;;;43694:66:0;;10512:2:1;43694:66:0;;;10494:21:1;10551:2;10531:18;;;10524:30;-1:-1:-1;;;10570:18:1;;;10563:48;10628:18;;43694:66:0;10310:342:1;43694:66:0;43769:31;43779:10;43791:8;43769:9;:31::i;:::-;43398:408;:::o;23414:823::-;23503:7;23539:16;23549:5;23539:9;:16::i;:::-;23531:5;:24;23523:71;;;;-1:-1:-1;;;23523:71:0;;10859:2:1;23523:71:0;;;10841:21:1;10898:2;10878:18;;;10871:30;10937:34;10917:18;;;10910:62;-1:-1:-1;;;10988:18:1;;;10981:32;11030:19;;23523:71:0;10657:398:1;23523:71:0;23605:22;23630:13;:11;:13::i;:::-;23605:38;;23654:19;23688:25;23742:9;23737:426;23761:14;23757:1;:18;23737:426;;;23797:31;23831:14;;;:11;:14;;;;;;;;;23797:48;;;;;;;;;-1:-1:-1;;;;;23797:48:0;;;;;-1:-1:-1;;;23797:48:0;;;;;;;;;;;;23864:28;23860:103;;23933:14;;;-1:-1:-1;23860:103:0;24002:5;-1:-1:-1;;;;;23981:26:0;:17;-1:-1:-1;;;;;23981:26:0;;23977:175;;;24047:5;24032:11;:20;24028:77;;;-1:-1:-1;24084:1:0;-1:-1:-1;24077:8:0;;-1:-1:-1;;;24077:8:0;24028:77;24123:13;;;;:::i;:::-;;;;23977:175;-1:-1:-1;23777:3:0;;;;:::i;:::-;;;;23737:426;;;-1:-1:-1;24173:56:0;;-1:-1:-1;;;24173:56:0;;11402:2:1;24173:56:0;;;11384:21:1;11441:2;11421:18;;;11414:30;11480:34;11460:18;;;11453:62;-1:-1:-1;;;11531:18:1;;;11524:44;11585:19;;24173:56:0;11200:410:1;28606:177:0;28736:39;28753:4;28759:2;28763:7;28736:39;;;;;;;;;;;;:16;:39::i;22927:187::-;22994:7;23030:13;:11;:13::i;:::-;23022:5;:21;23014:69;;;;-1:-1:-1;;;23014:69:0;;11817:2:1;23014:69:0;;;11799:21:1;11856:2;11836:18;;;11829:30;11895:34;11875:18;;;11868:62;-1:-1:-1;;;11946:18:1;;;11939:33;11989:19;;23014:69:0;11615:399:1;23014:69:0;-1:-1:-1;23101:5:0;22927:187::o;43010:94::-;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;43080:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43010:94:::0;:::o;25745:124::-;25809:7;25836:20;25848:7;25836:11;:20::i;:::-;:25;;25745:124;-1:-1:-1;;25745:124:0:o;43814:114::-;37432:6;;43878:7;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;-1:-1:-1;43901:21:0::1;43814:114:::0;:::o;24745:221::-;24809:7;-1:-1:-1;;;;;24837:19:0;;24829:75;;;;-1:-1:-1;;;24829:75:0;;12582:2:1;24829:75:0;;;12564:21:1;12621:2;12601:18;;;12594:30;12660:34;12640:18;;;12633:62;-1:-1:-1;;;12711:18:1;;;12704:41;12762:19;;24829:75:0;12380:407:1;24829:75:0;-1:-1:-1;;;;;;24930:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24930:27:0;;24745:221::o;42819:85::-;42862:13;42891:7;42884:14;;;;;:::i;38010:103::-;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;38075:30:::1;38102:1;38075:18;:30::i;:::-;38010:103::o:0;43297:95::-;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;43362:12:::1;:24:::0;43297:95::o;43934:676::-;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;44004:21:::1;44044:11:::0;44036:43:::1;;;::::0;-1:-1:-1;;;44036:43:0;;12994:2:1;44036:43:0::1;::::0;::::1;12976:21:1::0;13033:2;13013:18;;;13006:30;-1:-1:-1;;;13052:18:1;;;13045:49;13111:18;;44036:43:0::1;12792:343:1::0;44036:43:0::1;44100:99;::::0;;::::1;::::0;;::::1;::::0;;44145:42:::1;44100:99:::0;;44212:165;;::::1;::::0;::::1;::::0;;44260:2:::1;44212:165:::0;;44285:2:::1;44212:165:::0;;::::1;::::0;;;;44310:3:::1;44212:165:::0;;;;;;;;;;;;;44362:3:::1;44212:165:::0;;;;44100:99;:27:::1;44390:215;44413:16;44409:1;:20;;;44390:215;;;44451:14;44473:20;44492:1;::::0;44473:20:::1;:::i;:::-;44468:1;:25;;;:78;;44542:4;44530:6;44537:1;44530:9;;;;;;;;;:::i;:::-;;;;::::0;44520:19:::1;::::0;::::1;;:7:::0;:19:::1;:::i;:::-;:26;;;;:::i;:::-;44468:78;;;44496:21;44468:78;44451:95;;44561:32;44572:9;44582:1;44572:12;;;;;;;;;:::i;:::-;;;;;44586:6;44561:10;:32::i;:::-;-1:-1:-1::0;44431:3:0;::::1;::::0;::::1;:::i;:::-;;;;44390:215;;;;43975:635;;;43934:676::o:0;26105:104::-;26161:13;26194:7;26187:14;;;;;:::i;27783:288::-;-1:-1:-1;;;;;27878:24:0;;20792:10;27878:24;;27870:63;;;;-1:-1:-1;;;27870:63:0;;13937:2:1;27870:63:0;;;13919:21:1;13976:2;13956:18;;;13949:30;14015:28;13995:18;;;13988:56;14061:18;;27870:63:0;13735:350:1;27870:63:0;20792:10;27946:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27946:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27946:53:0;;;;;;;;;;28015:48;;722:41:1;;;27946:42:0;;20792:10;28015:48;;695:18:1;28015:48:0;;;;;;;27783:288;;:::o;28854:355::-;29013:28;29023:4;29029:2;29033:7;29013:9;:28::i;:::-;29074:48;29097:4;29103:2;29107:7;29116:5;29074:22;:48::i;:::-;29052:149;;;;-1:-1:-1;;;29052:149:0;;;;;;;:::i;43215:76::-;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;43271:5:::1;:14:::0;;-1:-1:-1;;43271:14:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;43215:76::o;43110:99::-;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;43180:11:::1;:23:::0;43110:99::o;41916:288::-;41989:13;42019:16;42027:7;29521:4;29555:12;-1:-1:-1;29545:22:0;29464:111;42019:16;42011:76;;;;-1:-1:-1;;;42011:76:0;;14712:2:1;42011:76:0;;;14694:21:1;14751:2;14731:18;;;14724:30;14790:34;14770:18;;;14763:62;-1:-1:-1;;;14841:18:1;;;14834:45;14896:19;;42011:76:0;14510:411:1;42011:76:0;42127:1;42109:7;42103:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;42155:7;42164:18;:7;:16;:18::i;:::-;42138:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42096:102;41916:288;-1:-1:-1;;41916:288:0:o;38268:201::-;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38357:22:0;::::1;38349:73;;;::::0;-1:-1:-1;;;38349:73:0;;16868:2:1;38349:73:0::1;::::0;::::1;16850:21:1::0;16907:2;16887:18;;;16880:30;16946:34;16926:18;;;16919:62;-1:-1:-1;;;16997:18:1;;;16990:36;17043:19;;38349:73:0::1;16666:402:1::0;38349:73:0::1;38433:28;38452:8;38433:18;:28::i;42210:603::-:0;42346:5;;;;;:10;42338:43;;;;-1:-1:-1;;;42338:43:0;;9101:2:1;42338:43:0;;;9083:21:1;9140:2;9120:18;;;9113:30;-1:-1:-1;;;9159:18:1;;;9152:50;9219:18;;42338:43:0;8899:344:1;42338:43:0;42436:14;;42407:10;42396:22;;;;:10;:22;;;;;;42436:14;;;;;;;;42396:36;;42421:11;;42396:22;:36;:::i;:::-;:54;;;;42388:102;;;;-1:-1:-1;;;42388:102:0;;17484:2:1;42388:102:0;;;17466:21:1;17523:2;17503:18;;;17496:30;17562:34;17542:18;;;17535:62;-1:-1:-1;;;17613:18:1;;;17606:33;17656:19;;42388:102:0;17282:399:1;42388:102:0;42533:11;42518:26;;:12;;:26;;;;:::i;:::-;42505:9;:39;;42497:70;;;;-1:-1:-1;;;42497:70:0;;10512:2:1;42497:70:0;;;10494:21:1;10551:2;10531:18;;;10524:30;-1:-1:-1;;;10570:18:1;;;10563:48;10628:18;;42497:70:0;10310:342:1;42497:70:0;42605:28;;-1:-1:-1;;42622:10:0;17835:2:1;17831:15;17827:53;42605:28:0;;;17815:66:1;42580:12:0;;17897::1;;42605:28:0;;;;;;;;;;;;42595:39;;;;;;42580:54;;42649:52;42668:12;;42649:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42682:12:0;;;-1:-1:-1;42696:4:0;;-1:-1:-1;42649:18:0;:52::i;:::-;42641:79;;;;-1:-1:-1;;;42641:79:0;;18122:2:1;42641:79:0;;;18104:21:1;18161:2;18141:18;;;18134:30;-1:-1:-1;;;18180:18:1;;;18173:44;18234:18;;42641:79:0;17920:338:1;42641:79:0;42740:10;42729:22;;;;:10;:22;;;;;:37;;42755:11;;42729:22;:37;;42755:11;;42729:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42773:34;42783:10;42795:11;42773:34;;:9;:34::i;33508:196::-;33623:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33623:29:0;-1:-1:-1;;;;;33623:29:0;;;;;;;;;33668:28;;33623:24;;33668:28;;;;;;;33508:196;;;:::o;31607:1783::-;31722:35;31760:20;31772:7;31760:11;:20::i;:::-;31835:18;;31722:58;;-1:-1:-1;31793:22:0;;-1:-1:-1;;;;;31819:34:0;20792:10;-1:-1:-1;;;;;31819:34:0;;:87;;;-1:-1:-1;20792:10:0;31870:20;31882:7;31870:11;:20::i;:::-;-1:-1:-1;;;;;31870:36:0;;31819:87;:154;;;-1:-1:-1;31940:18:0;;31923:50;;20792:10;28142:164;:::i;31923:50::-;31793:181;;31995:17;31987:80;;;;-1:-1:-1;;;31987:80:0;;18465:2:1;31987:80:0;;;18447:21:1;18504:2;18484:18;;;18477:30;18543:34;18523:18;;;18516:62;-1:-1:-1;;;18594:18:1;;;18587:48;18652:19;;31987:80:0;18263:414:1;31987:80:0;32110:4;-1:-1:-1;;;;;32088:26:0;:13;:18;;;-1:-1:-1;;;;;32088:26:0;;32080:77;;;;-1:-1:-1;;;32080:77:0;;18884:2:1;32080:77:0;;;18866:21:1;18923:2;18903:18;;;18896:30;18962:34;18942:18;;;18935:62;-1:-1:-1;;;19013:18:1;;;19006:36;19059:19;;32080:77:0;18682:402:1;32080:77:0;-1:-1:-1;;;;;32176:16:0;;32168:66;;;;-1:-1:-1;;;32168:66:0;;19291:2:1;32168:66:0;;;19273:21:1;19330:2;19310:18;;;19303:30;19369:34;19349:18;;;19342:62;-1:-1:-1;;;19420:18:1;;;19413:35;19465:19;;32168:66:0;19089:401:1;32168:66:0;32355:49;32372:1;32376:7;32385:13;:18;;;32355:8;:49::i;:::-;-1:-1:-1;;;;;32609:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;32609:31:0;;;-1:-1:-1;;;;;32609:31:0;;;-1:-1:-1;;32609:31:0;;;;;;;32655:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;32655:29:0;;;;;;;;;;;;;32731:43;;;;;;;;;;32757:15;32731:43;;;;;;;;;;32708:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;32708:66:0;;;;;;;-1:-1:-1;;;32708:66:0;;;;;;;;;;;;32609:18;33036:11;;32708:20;;33036:11;:::i;:::-;33103:1;33062:24;;;:11;:24;;;;;:29;33014:33;;-1:-1:-1;;;;;;33062:29:0;33058:227;;33126:20;33134:11;29521:4;29555:12;-1:-1:-1;29545:22:0;29464:111;33126:20;33122:152;;;33194:64;;;;;;;;33209:18;;-1:-1:-1;;;;;33194:64:0;;;;;;33229:28;;;;33194:64;;;;;;;;;;-1:-1:-1;33167:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;33167:91:0;-1:-1:-1;;;;;;33167:91:0;;;;;;;;;;;;33122:152;33321:7;33317:2;-1:-1:-1;;;;;33302:27:0;33311:4;-1:-1:-1;;;;;33302:27:0;;;;;;;;;;;33340:42;31711:1679;;;31607:1783;;;:::o;29583:104::-;29652:27;29662:2;29666:8;29652:27;;;;;;;;;;;;:9;:27::i;25211:472::-;-1:-1:-1;;;;;;;;;;;;;;;;;25314:16:0;25322:7;29521:4;29555:12;-1:-1:-1;29545:22:0;29464:111;25314:16;25306:71;;;;-1:-1:-1;;;25306:71:0;;19697:2:1;25306:71:0;;;19679:21:1;19736:2;19716:18;;;19709:30;19775:34;19755:18;;;19748:62;-1:-1:-1;;;19826:18:1;;;19819:40;19876:19;;25306:71:0;19495:406:1;25306:71:0;25410:7;25390:216;25444:31;25478:17;;;:11;:17;;;;;;;;;25444:51;;;;;;;;;-1:-1:-1;;;;;25444:51:0;;;;;-1:-1:-1;;;25444:51:0;;;;;;;;;;;;25514:28;25510:85;;25570:9;25211:472;-1:-1:-1;;;25211:472:0:o;25510:85::-;-1:-1:-1;25421:6:0;;;;:::i;:::-;;;;25390:216;;38629:191;38722:6;;;-1:-1:-1;;;;;38739:17:0;;;-1:-1:-1;;;;;;38739:17:0;;;;;;;38772:40;;38722:6;;;38739:17;38722:6;;38772:40;;38703:16;;38772:40;38692:128;38629:191;:::o;44692:189::-;44767:12;44785:8;-1:-1:-1;;;;;44785:13:0;44807:7;44785:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44766:54;;;44839:7;44831:44;;;;-1:-1:-1;;;44831:44:0;;20875:2:1;44831:44:0;;;20857:21:1;20914:2;20894:18;;;20887:30;20953:26;20933:18;;;20926:54;20997:18;;44831:44:0;20673:348:1;34269:804:0;34424:4;-1:-1:-1;;;;;34445:13:0;;3300:20;3348:8;34441:625;;34481:72;;-1:-1:-1;;;34481:72:0;;-1:-1:-1;;;;;34481:36:0;;;;;:72;;20792:10;;34532:4;;34538:7;;34547:5;;34481:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34481:72:0;;;;;;;;-1:-1:-1;;34481:72:0;;;;;;;;;;;;:::i;:::-;;;34477:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34727:13:0;;34723:273;;34770:61;;-1:-1:-1;;;34770:61:0;;;;;;;:::i;34723:273::-;34946:6;34940:13;34931:6;34927:2;34923:15;34916:38;34477:534;-1:-1:-1;;;;;;34604:55:0;-1:-1:-1;;;34604:55:0;;-1:-1:-1;34597:62:0;;34441:625;-1:-1:-1;35050:4:0;34441:625;34269:804;;;;;;:::o;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;39886:190;40011:4;40064;40035:25;40048:5;40055:4;40035:12;:25::i;:::-;:33;;39886:190;-1:-1:-1;;;;39886:190:0:o;29964:1389::-;30087:20;30110:12;-1:-1:-1;;;;;30141:16:0;;30133:62;;;;-1:-1:-1;;;30133:62:0;;22104:2:1;30133:62:0;;;22086:21:1;22143:2;22123:18;;;22116:30;22182:34;22162:18;;;22155:62;-1:-1:-1;;;22233:18:1;;;22226:31;22274:19;;30133:62:0;21902:397:1;30133:62:0;30340:21;30348:12;29521:4;29555:12;-1:-1:-1;29545:22:0;29464:111;30340:21;30339:22;30331:64;;;;-1:-1:-1;;;30331:64:0;;22506:2:1;30331:64:0;;;22488:21:1;22545:2;22525:18;;;22518:30;22584:31;22564:18;;;22557:59;22633:18;;30331:64:0;22304:353:1;30331:64:0;30425:1;30414:8;:12;30406:60;;;;-1:-1:-1;;;30406:60:0;;22864:2:1;30406:60:0;;;22846:21:1;22903:2;22883:18;;;22876:30;22942:34;22922:18;;;22915:62;-1:-1:-1;;;22993:18:1;;;22986:33;23036:19;;30406:60:0;22662:399:1;30406:60:0;-1:-1:-1;;;;;30586:16:0;;30553:30;30586:16;;;:12;:16;;;;;;;;;30553:49;;;;;;;;;-1:-1:-1;;;;;30553:49:0;;;;;-1:-1:-1;;;30553:49:0;;;;;;;;;;;30632:135;;;;;;;;30658:19;;30553:49;;30632:135;;;30658:39;;30688:8;;30658:39;:::i;:::-;-1:-1:-1;;;;;30632:135:0;;;;;30747:8;30712:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;30632:135:0;;;;;;-1:-1:-1;;;;;30613:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;30613:154:0;;;;;;;;;;;;30806:43;;;;;;;;;;;30832:15;30806:43;;;;;;;;30778:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;30778:71:0;-1:-1:-1;;;;;;30778:71:0;;;;;;;;;;;;;;;;;;30790:12;;30910:325;30934:8;30930:1;:12;30910:325;;;30969:38;;30994:12;;-1:-1:-1;;;;;30969:38:0;;;30986:1;;30969:38;;30986:1;;30969:38;31048:59;31079:1;31083:2;31087:12;31101:5;31048:22;:59::i;:::-;31022:172;;;;-1:-1:-1;;;31022:172:0;;;;;;;:::i;:::-;31209:14;;;;:::i;:::-;;;;30944:3;;;;;:::i;:::-;;;;30910:325;;;-1:-1:-1;31247:12:0;:27;;;31285:60;43934:676;40437:675;40520:7;40563:4;40520:7;40578:497;40602:5;:12;40598:1;:16;40578:497;;;40636:20;40659:5;40665:1;40659:8;;;;;;;;:::i;:::-;;;;;;;40636:31;;40702:12;40686;:28;40682:382;;41188:13;41238:15;;;41274:4;41267:15;;;41321:4;41305:21;;40814:57;;40682:382;;;41188:13;41238:15;;;41274:4;41267:15;;;41321:4;41305:21;;40991:57;;40682:382;-1:-1:-1;40616:3:0;;;;:::i;:::-;;;;40578:497;;;-1:-1:-1;41092:12:0;40437:675;-1:-1:-1;;;40437:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;:::-;566:5;332:245;-1:-1:-1;;;332:245:1:o;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:269::-;1090:3;1128:5;1122:12;1155:6;1150:3;1143:19;1171:63;1227:6;1220:4;1215:3;1211:14;1204:4;1197:5;1193:16;1171:63;:::i;:::-;1288:2;1267:15;-1:-1:-1;;1263:29:1;1254:39;;;;1295:4;1250:50;;1037:269;-1:-1:-1;;1037:269:1:o;1311:231::-;1460:2;1449:9;1442:21;1423:4;1480:56;1532:2;1521:9;1517:18;1509:6;1480:56;:::i;1547:180::-;1606:6;1659:2;1647:9;1638:7;1634:23;1630:32;1627:52;;;1675:1;1672;1665:12;1627:52;-1:-1:-1;1698:23:1;;1547:180;-1:-1:-1;1547:180:1:o;1940:173::-;2008:20;;-1:-1:-1;;;;;2057:31:1;;2047:42;;2037:70;;2103:1;2100;2093:12;2037:70;1940:173;;;:::o;2118:254::-;2186:6;2194;2247:2;2235:9;2226:7;2222:23;2218:32;2215:52;;;2263:1;2260;2253:12;2215:52;2286:29;2305:9;2286:29;:::i;:::-;2276:39;2362:2;2347:18;;;;2334:32;;-1:-1:-1;;;2118:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;3081:127::-;3142:10;3137:3;3133:20;3130:1;3123:31;3173:4;3170:1;3163:15;3197:4;3194:1;3187:15;3213:632;3278:5;3308:18;3349:2;3341:6;3338:14;3335:40;;;3355:18;;:::i;:::-;3430:2;3424:9;3398:2;3484:15;;-1:-1:-1;;3480:24:1;;;3506:2;3476:33;3472:42;3460:55;;;3530:18;;;3550:22;;;3527:46;3524:72;;;3576:18;;:::i;:::-;3616:10;3612:2;3605:22;3645:6;3636:15;;3675:6;3667;3660:22;3715:3;3706:6;3701:3;3697:16;3694:25;3691:45;;;3732:1;3729;3722:12;3691:45;3782:6;3777:3;3770:4;3762:6;3758:17;3745:44;3837:1;3830:4;3821:6;3813;3809:19;3805:30;3798:41;;;;3213:632;;;;;:::o;3850:451::-;3919:6;3972:2;3960:9;3951:7;3947:23;3943:32;3940:52;;;3988:1;3985;3978:12;3940:52;4028:9;4015:23;4061:18;4053:6;4050:30;4047:50;;;4093:1;4090;4083:12;4047:50;4116:22;;4169:4;4161:13;;4157:27;-1:-1:-1;4147:55:1;;4198:1;4195;4188:12;4147:55;4221:74;4287:7;4282:2;4269:16;4264:2;4260;4256:11;4221:74;:::i;4306:186::-;4365:6;4418:2;4406:9;4397:7;4393:23;4389:32;4386:52;;;4434:1;4431;4424:12;4386:52;4457:29;4476:9;4457:29;:::i;4682:347::-;4747:6;4755;4808:2;4796:9;4787:7;4783:23;4779:32;4776:52;;;4824:1;4821;4814:12;4776:52;4847:29;4866:9;4847:29;:::i;:::-;4837:39;;4926:2;4915:9;4911:18;4898:32;4973:5;4966:13;4959:21;4952:5;4949:32;4939:60;;4995:1;4992;4985:12;4939:60;5018:5;5008:15;;;4682:347;;;;;:::o;5034:667::-;5129:6;5137;5145;5153;5206:3;5194:9;5185:7;5181:23;5177:33;5174:53;;;5223:1;5220;5213:12;5174:53;5246:29;5265:9;5246:29;:::i;:::-;5236:39;;5294:38;5328:2;5317:9;5313:18;5294:38;:::i;:::-;5284:48;;5379:2;5368:9;5364:18;5351:32;5341:42;;5434:2;5423:9;5419:18;5406:32;5461:18;5453:6;5450:30;5447:50;;;5493:1;5490;5483:12;5447:50;5516:22;;5569:4;5561:13;;5557:27;-1:-1:-1;5547:55:1;;5598:1;5595;5588:12;5547:55;5621:74;5687:7;5682:2;5669:16;5664:2;5660;5656:11;5621:74;:::i;:::-;5611:84;;;5034:667;;;;;;;:::o;5706:156::-;5772:20;;5832:4;5821:16;;5811:27;;5801:55;;5852:1;5849;5842:12;5867:182;5924:6;5977:2;5965:9;5956:7;5952:23;5948:32;5945:52;;;5993:1;5990;5983:12;5945:52;6016:27;6033:9;6016:27;:::i;6054:260::-;6122:6;6130;6183:2;6171:9;6162:7;6158:23;6154:32;6151:52;;;6199:1;6196;6189:12;6151:52;6222:29;6241:9;6222:29;:::i;:::-;6212:39;;6270:38;6304:2;6293:9;6289:18;6270:38;:::i;:::-;6260:48;;6054:260;;;;;:::o;6319:685::-;6412:6;6420;6428;6481:2;6469:9;6460:7;6456:23;6452:32;6449:52;;;6497:1;6494;6487:12;6449:52;6520:27;6537:9;6520:27;:::i;:::-;6510:37;;6598:2;6587:9;6583:18;6570:32;6621:18;6662:2;6654:6;6651:14;6648:34;;;6678:1;6675;6668:12;6648:34;6716:6;6705:9;6701:22;6691:32;;6761:7;6754:4;6750:2;6746:13;6742:27;6732:55;;6783:1;6780;6773:12;6732:55;6823:2;6810:16;6849:2;6841:6;6838:14;6835:34;;;6865:1;6862;6855:12;6835:34;6918:7;6913:2;6903:6;6900:1;6896:14;6892:2;6888:23;6884:32;6881:45;6878:65;;;6939:1;6936;6929:12;6878:65;6970:2;6966;6962:11;6952:21;;6992:6;6982:16;;;;;6319:685;;;;;:::o;7009:380::-;7088:1;7084:12;;;;7131;;;7152:61;;7206:4;7198:6;7194:17;7184:27;;7152:61;7259:2;7251:6;7248:14;7228:18;7225:38;7222:161;;;7305:10;7300:3;7296:20;7293:1;7286:31;7340:4;7337:1;7330:15;7368:4;7365:1;7358:15;7222:161;;7009:380;;;:::o;8637:127::-;8698:10;8693:3;8689:20;8686:1;8679:31;8729:4;8726:1;8719:15;8753:4;8750:1;8743:15;8769:125;8809:4;8837:1;8834;8831:8;8828:34;;;8842:18;;:::i;:::-;-1:-1:-1;8879:9:1;;8769:125::o;9248:128::-;9288:3;9319:1;9315:6;9312:1;9309:13;9306:39;;;9325:18;;:::i;:::-;-1:-1:-1;9361:9:1;;9248:128::o;10137:168::-;10177:7;10243:1;10239;10235:6;10231:14;10228:1;10225:21;10220:1;10213:9;10206:17;10202:45;10199:71;;;10250:18;;:::i;:::-;-1:-1:-1;10290:9:1;;10137:168::o;11060:135::-;11099:3;-1:-1:-1;;11120:17:1;;11117:43;;;11140:18;;:::i;:::-;-1:-1:-1;11187:1:1;11176:13;;11060:135::o;12019:356::-;12221:2;12203:21;;;12240:18;;;12233:30;12299:34;12294:2;12279:18;;12272:62;12366:2;12351:18;;12019:356::o;13140:127::-;13201:10;13196:3;13192:20;13189:1;13182:31;13232:4;13229:1;13222:15;13256:4;13253:1;13246:15;13272:127;13333:10;13328:3;13324:20;13321:1;13314:31;13364:4;13361:1;13354:15;13388:4;13385:1;13378:15;13404:120;13444:1;13470;13460:35;;13475:18;;:::i;:::-;-1:-1:-1;13509:9:1;;13404:120::o;13529:201::-;13567:3;13595:10;13640:2;13633:5;13629:14;13667:2;13658:7;13655:15;13652:41;;;13673:18;;:::i;:::-;13722:1;13709:15;;13529:201;-1:-1:-1;;;13529:201:1:o;14090:415::-;14292:2;14274:21;;;14331:2;14311:18;;;14304:30;14370:34;14365:2;14350:18;;14343:62;-1:-1:-1;;;14436:2:1;14421:18;;14414:49;14495:3;14480:19;;14090:415::o;15052:185::-;15094:3;15132:5;15126:12;15147:52;15192:6;15187:3;15180:4;15173:5;15169:16;15147:52;:::i;:::-;15215:16;;;;;15052:185;-1:-1:-1;;15052:185:1:o;15360:1301::-;15637:3;15666:1;15699:6;15693:13;15729:3;15751:1;15779:9;15775:2;15771:18;15761:28;;15839:2;15828:9;15824:18;15861;15851:61;;15905:4;15897:6;15893:17;15883:27;;15851:61;15931:2;15979;15971:6;15968:14;15948:18;15945:38;15942:165;;;-1:-1:-1;;;16006:33:1;;16062:4;16059:1;16052:15;16092:4;16013:3;16080:17;15942:165;16123:18;16150:104;;;;16268:1;16263:320;;;;16116:467;;16150:104;-1:-1:-1;;16183:24:1;;16171:37;;16228:16;;;;-1:-1:-1;16150:104:1;;16263:320;14999:1;14992:14;;;15036:4;15023:18;;16358:1;16372:165;16386:6;16383:1;16380:13;16372:165;;;16464:14;;16451:11;;;16444:35;16507:16;;;;16401:10;;16372:165;;;16376:3;;16566:6;16561:3;16557:16;16550:23;;16116:467;;;;;;;16599:56;16624:30;16650:3;16642:6;16624:30;:::i;:::-;-1:-1:-1;;;15302:20:1;;15347:1;15338:11;;15242:113;16599:56;16592:63;15360:1301;-1:-1:-1;;;;;15360:1301:1:o;17073:204::-;17111:3;17147:4;17144:1;17140:12;17179:4;17176:1;17172:12;17214:3;17208:4;17204:14;17199:3;17196:23;17193:49;;;17222:18;;:::i;:::-;17258:13;;17073:204;-1:-1:-1;;;17073:204:1:o;19906:136::-;19945:3;19973:5;19963:39;;19982:18;;:::i;:::-;-1:-1:-1;;;20018:18:1;;19906:136::o;21026:500::-;-1:-1:-1;;;;;21295:15:1;;;21277:34;;21347:15;;21342:2;21327:18;;21320:43;21394:2;21379:18;;21372:34;;;21442:3;21437:2;21422:18;;21415:31;;;21220:4;;21463:57;;21500:19;;21492:6;21463:57;:::i;:::-;21455:65;21026:500;-1:-1:-1;;;;;;21026:500:1:o;21531:249::-;21600:6;21653:2;21641:9;21632:7;21628:23;21624:32;21621:52;;;21669:1;21666;21659:12;21621:52;21701:9;21695:16;21720:30;21744:5;21720:30;:::i;21785:112::-;21817:1;21843;21833:35;;21848:18;;:::i;:::-;-1:-1:-1;21882:9:1;;21785:112::o;23066:253::-;23106:3;-1:-1:-1;;;;;23195:2:1;23192:1;23188:10;23225:2;23222:1;23218:10;23256:3;23252:2;23248:12;23243:3;23240:21;23237:47;;;23264:18;;:::i;:::-;23300:13;;23066:253;-1:-1:-1;;;;23066:253:1:o

Swarm Source

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