ETH Price: $3,067.74 (+1.39%)
Gas: 6 Gwei

Token

CyberPandaz Genesis (CPG)
 

Overview

Max Total Supply

2,004 CPG

Holders

1,801

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
eatthedips.eth
Balance
1 CPG
0xaa2d0029f54ee1a193f957757e77c3101cfd57bf
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:
CyberPandazGenesis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-20
*/

// SPDX-License-Identifier: MIT


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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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
                /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// 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: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: contracts/CyberPandaz.sol



pragma solidity ^0.8.4;



contract CyberPandazGenesis is ERC721, Ownable { 

    using Strings for uint256;

    uint256 public constant MAX_TOKENS = 2004;
    uint256 public constant TOKENS_RESERVED = 0;
    uint256 public price = 0;
    uint256 public constant MAX_MINT_PER_TX = 1;

    bool public isSaleActive;
    uint256 public totalSupply;
    mapping(address => uint256) private mintedPerWallet;

    string public baseUri;
    string public baseExtension = ".json";

    constructor() ERC721("CyberPandaz Genesis", "CPG") {

    baseUri = "ipfs://QmbVGUrB6J9aw5shBbtGGPnCEtWj9hK459b9k7h6kYfBoh/";
    for (uint256 i = 1; i <= TOKENS_RESERVED; ++i) {
        _safeMint(msg.sender, i);
    }
    totalSupply = TOKENS_RESERVED;
}

    function mint(uint256 _numTokens) external payable {
        require(isSaleActive, "The sale is paused.");
        require(_numTokens <= MAX_MINT_PER_TX, "You can only mint 1 per transaction.");
        require(mintedPerWallet[msg.sender] + _numTokens <= 2, "You can only mint 2 per wallet.");
        uint256 curTotalSupply = totalSupply;
        require(curTotalSupply + _numTokens <= MAX_TOKENS, "Exceeds 'MAX TOKENS'");
        require(_numTokens * price <= msg.value, "Insufficient funds. You need more ETH");

        for (uint256 i = 1; i <= _numTokens; ++i) {
            _safeMint(msg.sender, curTotalSupply  +i);  
        }
        mintedPerWallet[msg.sender] += _numTokens;
        totalSupply += _numTokens;
    }

    function flipSaleState() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function setBaseURI(string memory _baseUri) external onlyOwner {
        baseUri = _baseUri;
    }

    function withdrawAll() external payable onlyOwner {
        uint256 balance = address(this).balance;
        uint256 balanceOne = balance * 50 / 100;
        uint256 balanceTwo = balance * 50 / 100;
        (bool transferOne, ) = payable(0x31d1e1ADB221c6B1b2a0A7753dfb96e934eBaCc0).call{value: balanceOne}("");
        (bool transferTwo, ) = payable(0x31d1e1ADB221c6B1b2a0A7753dfb96e934eBaCc0).call{value: balanceTwo}("");
        require(transferOne && transferTwo, "Transfer Failed.");
    }

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

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

    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKENS_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","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":"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260006007556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000569291906200074b565b503480156200006457600080fd5b506040518060400160405280601381526020017f437962657250616e64617a2047656e65736973000000000000000000000000008152506040518060400160405280600381526020017f43504700000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e99291906200074b565b508060019080519060200190620001029291906200074b565b50505062000125620001196200019c60201b60201c565b620001a460201b60201c565b604051806060016040528060368152602001620044db60369139600b9080519060200190620001569291906200074b565b506000600190505b600081116200018d576200017933826200026a60201b60201c565b80620001859062000b36565b90506200015e565b50600060098190555062000cb3565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200028c8282604051806020016040528060008152506200029060201b60201c565b5050565b620002a28383620002fe60201b60201c565b620002b76000848484620004f860201b60201c565b620002f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f09062000970565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036890620009b4565b60405180910390fd5b6200038281620006b260201b60201c565b15620003c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bc9062000992565b60405180910390fd5b620003d9600083836200071e60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200042b919062000a03565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620004f4600083836200072360201b60201c565b5050565b6000620005268473ffffffffffffffffffffffffffffffffffffffff166200072860201b620013e41760201c565b15620006a5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005586200019c60201b60201c565b8786866040518563ffffffff1660e01b81526004016200057c94939291906200091c565b602060405180830381600087803b1580156200059757600080fd5b505af1925050508015620005cb57506040513d601f19601f82011682018060405250810190620005c8919062000812565b60015b62000654573d8060008114620005fe576040519150601f19603f3d011682016040523d82523d6000602084013e62000603565b606091505b506000815114156200064c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006439062000970565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620006aa565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054620007599062000b00565b90600052602060002090601f0160209004810192826200077d5760008555620007c9565b82601f106200079857805160ff1916838001178555620007c9565b82800160010185558215620007c9579182015b82811115620007c8578251825591602001919060010190620007ab565b5b509050620007d89190620007dc565b5090565b5b80821115620007f7576000816000905550600101620007dd565b5090565b6000815190506200080c8162000c99565b92915050565b6000602082840312156200082b576200082a62000be2565b5b60006200083b84828501620007fb565b91505092915050565b6200084f8162000a60565b82525050565b60006200086282620009d6565b6200086e8185620009e1565b93506200088081856020860162000aca565b6200088b8162000be7565b840191505092915050565b6000620008a5603283620009f2565b9150620008b28262000bf8565b604082019050919050565b6000620008cc601c83620009f2565b9150620008d98262000c47565b602082019050919050565b6000620008f3602083620009f2565b9150620009008262000c70565b602082019050919050565b620009168162000ac0565b82525050565b600060808201905062000933600083018762000844565b62000942602083018662000844565b6200095160408301856200090b565b818103606083015262000965818462000855565b905095945050505050565b600060208201905081810360008301526200098b8162000896565b9050919050565b60006020820190508181036000830152620009ad81620008bd565b9050919050565b60006020820190508181036000830152620009cf81620008e4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000a108262000ac0565b915062000a1d8362000ac0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a555762000a5462000b84565b5b828201905092915050565b600062000a6d8262000aa0565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000aea57808201518184015260208101905062000acd565b8381111562000afa576000848401525b50505050565b6000600282049050600182168062000b1957607f821691505b6020821081141562000b305762000b2f62000bb3565b5b50919050565b600062000b438262000ac0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000b795762000b7862000b84565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b62000ca48162000a74565b811462000cb057600080fd5b50565b6138188062000cc36000396000f3fe6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105a8578063e985e9c5146105e5578063f2fde38b14610622578063f47c84c51461064b576101b7565b8063a22cb4651461052b578063b88d4fde14610554578063c66828621461057d576101b7565b80639abc8320116100c65780639abc83201461048e5780639fd07cf0146104b9578063a035b1fe146104e4578063a0712d681461050f576101b7565b80638da5cb5b1461040d5780638ecad7211461043857806395d89b4114610463576101b7565b806342842e0e116101595780636352211e116101335780636352211e1461037257806370a08231146103af578063715018a6146103ec578063853828b614610403576101b7565b806342842e0e146102f557806355f804b31461031e578063564566a814610347576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806334918dfd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612588565b610676565b6040516101f09190612b33565b60405180910390f35b34801561020557600080fd5b5061020e610758565b60405161021b9190612b4e565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061262b565b6107ea565b6040516102589190612acc565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612548565b610830565b005b34801561029657600080fd5b5061029f610948565b6040516102ac9190612df0565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612432565b61094e565b005b3480156102ea57600080fd5b506102f36109ae565b005b34801561030157600080fd5b5061031c60048036038101906103179190612432565b6109e2565b005b34801561032a57600080fd5b50610345600480360381019061034091906125e2565b610a02565b005b34801561035357600080fd5b5061035c610a24565b6040516103699190612b33565b60405180910390f35b34801561037e57600080fd5b506103996004803603810190610394919061262b565b610a37565b6040516103a69190612acc565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d191906123c5565b610ae9565b6040516103e39190612df0565b60405180910390f35b3480156103f857600080fd5b50610401610ba1565b005b61040b610bb5565b005b34801561041957600080fd5b50610422610d4c565b60405161042f9190612acc565b60405180910390f35b34801561044457600080fd5b5061044d610d76565b60405161045a9190612df0565b60405180910390f35b34801561046f57600080fd5b50610478610d7b565b6040516104859190612b4e565b60405180910390f35b34801561049a57600080fd5b506104a3610e0d565b6040516104b09190612b4e565b60405180910390f35b3480156104c557600080fd5b506104ce610e9b565b6040516104db9190612df0565b60405180910390f35b3480156104f057600080fd5b506104f9610ea0565b6040516105069190612df0565b60405180910390f35b6105296004803603810190610524919061262b565b610ea6565b005b34801561053757600080fd5b50610552600480360381019061054d9190612508565b611116565b005b34801561056057600080fd5b5061057b60048036038101906105769190612485565b61112c565b005b34801561058957600080fd5b5061059261118e565b60405161059f9190612b4e565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca919061262b565b61121c565b6040516105dc9190612b4e565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906123f2565b6112c6565b6040516106199190612b33565b60405180910390f35b34801561062e57600080fd5b50610649600480360381019061064491906123c5565b61135a565b005b34801561065757600080fd5b506106606113de565b60405161066d9190612df0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610751575061075082611407565b5b9050919050565b606060008054610767906130c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610793906130c0565b80156107e05780601f106107b5576101008083540402835291602001916107e0565b820191906000526020600020905b8154815290600101906020018083116107c357829003601f168201915b5050505050905090565b60006107f582611471565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083b82610a37565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a390612d70565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108cb6114bc565b73ffffffffffffffffffffffffffffffffffffffff1614806108fa57506108f9816108f46114bc565b6112c6565b5b610939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093090612cf0565b60405180910390fd5b61094383836114c4565b505050565b60095481565b61095f6109596114bc565b8261157d565b61099e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099590612dd0565b60405180910390fd5b6109a9838383611612565b505050565b6109b6611879565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6109fd8383836040518060200160405280600081525061112c565b505050565b610a0a611879565b80600b9080519060200190610a209291906121d9565b5050565b600860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad790612d50565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190612cb0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ba9611879565b610bb360006118f7565b565b610bbd611879565b600047905060006064603283610bd39190612f7c565b610bdd9190612f4b565b905060006064603284610bf09190612f7c565b610bfa9190612f4b565b905060007331d1e1adb221c6b1b2a0a7753dfb96e934ebacc073ffffffffffffffffffffffffffffffffffffffff1683604051610c3690612ab7565b60006040518083038185875af1925050503d8060008114610c73576040519150601f19603f3d011682016040523d82523d6000602084013e610c78565b606091505b5050905060007331d1e1adb221c6b1b2a0a7753dfb96e934ebacc073ffffffffffffffffffffffffffffffffffffffff1683604051610cb690612ab7565b60006040518083038185875af1925050503d8060008114610cf3576040519150601f19603f3d011682016040523d82523d6000602084013e610cf8565b606091505b50509050818015610d065750805b610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90612b70565b60405180910390fd5b5050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600181565b606060018054610d8a906130c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610db6906130c0565b8015610e035780601f10610dd857610100808354040283529160200191610e03565b820191906000526020600020905b815481529060010190602001808311610de657829003601f168201915b5050505050905090565b600b8054610e1a906130c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e46906130c0565b8015610e935780601f10610e6857610100808354040283529160200191610e93565b820191906000526020600020905b815481529060010190602001808311610e7657829003601f168201915b505050505081565b600081565b60075481565b600860009054906101000a900460ff16610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90612d90565b60405180910390fd5b6001811115610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090612cd0565b60405180910390fd5b600281600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f869190612ef5565b1115610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe90612db0565b60405180910390fd5b600060095490506107d48282610fdd9190612ef5565b111561101e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101590612c70565b60405180910390fd5b346007548361102d9190612f7c565b111561106e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106590612c90565b60405180910390fd5b6000600190505b8281116110a25761109133828461108c9190612ef5565b6119bd565b8061109b90613123565b9050611075565b5081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110f29190612ef5565b92505081905550816009600082825461110b9190612ef5565b925050819055505050565b6111286111216114bc565b83836119db565b5050565b61113d6111376114bc565b8361157d565b61117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390612dd0565b60405180910390fd5b61118884848484611b48565b50505050565b600c805461119b906130c0565b80601f01602080910402602001604051908101604052809291908181526020018280546111c7906130c0565b80156112145780601f106111e957610100808354040283529160200191611214565b820191906000526020600020905b8154815290600101906020018083116111f757829003601f168201915b505050505081565b606061122782611ba4565b611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90612c10565b60405180910390fd5b6000611270611c10565b9050600081511161129057604051806020016040528060008152506112be565b8061129a84611ca2565b600c6040516020016112ae93929190612a86565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611362611879565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c990612bb0565b60405180910390fd5b6113db816118f7565b50565b6107d481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61147a81611ba4565b6114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b090612d50565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661153783610a37565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061158983610a37565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115cb57506115ca81856112c6565b5b8061160957508373ffffffffffffffffffffffffffffffffffffffff166115f1846107ea565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661163282610a37565b73ffffffffffffffffffffffffffffffffffffffff1614611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90612bd0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90612c30565b60405180910390fd5b611703838383611e03565b61170e6000826114c4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461175e9190612fd6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117b59190612ef5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611874838383611e08565b505050565b6118816114bc565b73ffffffffffffffffffffffffffffffffffffffff1661189f610d4c565b73ffffffffffffffffffffffffffffffffffffffff16146118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90612d30565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119d7828260405180602001604052806000815250611e0d565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4190612c50565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b3b9190612b33565b60405180910390a3505050565b611b53848484611612565b611b5f84848484611e68565b611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9590612b90565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611c1f906130c0565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4b906130c0565b8015611c985780601f10611c6d57610100808354040283529160200191611c98565b820191906000526020600020905b815481529060010190602001808311611c7b57829003601f168201915b5050505050905090565b60606000821415611cea576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611dfe565b600082905060005b60008214611d1c578080611d0590613123565b915050600a82611d159190612f4b565b9150611cf2565b60008167ffffffffffffffff811115611d3857611d37613259565b5b6040519080825280601f01601f191660200182016040528015611d6a5781602001600182028036833780820191505090505b5090505b60008514611df757600182611d839190612fd6565b9150600a85611d92919061316c565b6030611d9e9190612ef5565b60f81b818381518110611db457611db361322a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611df09190612f4b565b9450611d6e565b8093505050505b919050565b505050565b505050565b611e178383611fff565b611e246000848484611e68565b611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90612b90565b60405180910390fd5b505050565b6000611e898473ffffffffffffffffffffffffffffffffffffffff166113e4565b15611ff2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eb26114bc565b8786866040518563ffffffff1660e01b8152600401611ed49493929190612ae7565b602060405180830381600087803b158015611eee57600080fd5b505af1925050508015611f1f57506040513d601f19601f82011682018060405250810190611f1c91906125b5565b60015b611fa2573d8060008114611f4f576040519150601f19603f3d011682016040523d82523d6000602084013e611f54565b606091505b50600081511415611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9190612b90565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ff7565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561206f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206690612d10565b60405180910390fd5b61207881611ba4565b156120b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120af90612bf0565b60405180910390fd5b6120c460008383611e03565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121149190612ef5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121d560008383611e08565b5050565b8280546121e5906130c0565b90600052602060002090601f016020900481019282612207576000855561224e565b82601f1061222057805160ff191683800117855561224e565b8280016001018555821561224e579182015b8281111561224d578251825591602001919060010190612232565b5b50905061225b919061225f565b5090565b5b80821115612278576000816000905550600101612260565b5090565b600061228f61228a84612e30565b612e0b565b9050828152602081018484840111156122ab576122aa61328d565b5b6122b684828561307e565b509392505050565b60006122d16122cc84612e61565b612e0b565b9050828152602081018484840111156122ed576122ec61328d565b5b6122f884828561307e565b509392505050565b60008135905061230f81613786565b92915050565b6000813590506123248161379d565b92915050565b600081359050612339816137b4565b92915050565b60008151905061234e816137b4565b92915050565b600082601f83011261236957612368613288565b5b813561237984826020860161227c565b91505092915050565b600082601f83011261239757612396613288565b5b81356123a78482602086016122be565b91505092915050565b6000813590506123bf816137cb565b92915050565b6000602082840312156123db576123da613297565b5b60006123e984828501612300565b91505092915050565b6000806040838503121561240957612408613297565b5b600061241785828601612300565b925050602061242885828601612300565b9150509250929050565b60008060006060848603121561244b5761244a613297565b5b600061245986828701612300565b935050602061246a86828701612300565b925050604061247b868287016123b0565b9150509250925092565b6000806000806080858703121561249f5761249e613297565b5b60006124ad87828801612300565b94505060206124be87828801612300565b93505060406124cf878288016123b0565b925050606085013567ffffffffffffffff8111156124f0576124ef613292565b5b6124fc87828801612354565b91505092959194509250565b6000806040838503121561251f5761251e613297565b5b600061252d85828601612300565b925050602061253e85828601612315565b9150509250929050565b6000806040838503121561255f5761255e613297565b5b600061256d85828601612300565b925050602061257e858286016123b0565b9150509250929050565b60006020828403121561259e5761259d613297565b5b60006125ac8482850161232a565b91505092915050565b6000602082840312156125cb576125ca613297565b5b60006125d98482850161233f565b91505092915050565b6000602082840312156125f8576125f7613297565b5b600082013567ffffffffffffffff81111561261657612615613292565b5b61262284828501612382565b91505092915050565b60006020828403121561264157612640613297565b5b600061264f848285016123b0565b91505092915050565b6126618161300a565b82525050565b6126708161301c565b82525050565b600061268182612ea7565b61268b8185612ebd565b935061269b81856020860161308d565b6126a48161329c565b840191505092915050565b60006126ba82612eb2565b6126c48185612ed9565b93506126d481856020860161308d565b6126dd8161329c565b840191505092915050565b60006126f382612eb2565b6126fd8185612eea565b935061270d81856020860161308d565b80840191505092915050565b60008154612726816130c0565b6127308186612eea565b9450600182166000811461274b576001811461275c5761278f565b60ff1983168652818601935061278f565b61276585612e92565b60005b8381101561278757815481890152600182019150602081019050612768565b838801955050505b50505092915050565b60006127a5601083612ed9565b91506127b0826132ad565b602082019050919050565b60006127c8603283612ed9565b91506127d3826132d6565b604082019050919050565b60006127eb602683612ed9565b91506127f682613325565b604082019050919050565b600061280e602583612ed9565b915061281982613374565b604082019050919050565b6000612831601c83612ed9565b915061283c826133c3565b602082019050919050565b6000612854602683612ed9565b915061285f826133ec565b604082019050919050565b6000612877602483612ed9565b91506128828261343b565b604082019050919050565b600061289a601983612ed9565b91506128a58261348a565b602082019050919050565b60006128bd601483612ed9565b91506128c8826134b3565b602082019050919050565b60006128e0602583612ed9565b91506128eb826134dc565b604082019050919050565b6000612903602983612ed9565b915061290e8261352b565b604082019050919050565b6000612926602483612ed9565b91506129318261357a565b604082019050919050565b6000612949603e83612ed9565b9150612954826135c9565b604082019050919050565b600061296c602083612ed9565b915061297782613618565b602082019050919050565b600061298f602083612ed9565b915061299a82613641565b602082019050919050565b60006129b2601883612ed9565b91506129bd8261366a565b602082019050919050565b60006129d5602183612ed9565b91506129e082613693565b604082019050919050565b60006129f8601383612ed9565b9150612a03826136e2565b602082019050919050565b6000612a1b600083612ece565b9150612a268261370b565b600082019050919050565b6000612a3e601f83612ed9565b9150612a498261370e565b602082019050919050565b6000612a61602e83612ed9565b9150612a6c82613737565b604082019050919050565b612a8081613074565b82525050565b6000612a9282866126e8565b9150612a9e82856126e8565b9150612aaa8284612719565b9150819050949350505050565b6000612ac282612a0e565b9150819050919050565b6000602082019050612ae16000830184612658565b92915050565b6000608082019050612afc6000830187612658565b612b096020830186612658565b612b166040830185612a77565b8181036060830152612b288184612676565b905095945050505050565b6000602082019050612b486000830184612667565b92915050565b60006020820190508181036000830152612b6881846126af565b905092915050565b60006020820190508181036000830152612b8981612798565b9050919050565b60006020820190508181036000830152612ba9816127bb565b9050919050565b60006020820190508181036000830152612bc9816127de565b9050919050565b60006020820190508181036000830152612be981612801565b9050919050565b60006020820190508181036000830152612c0981612824565b9050919050565b60006020820190508181036000830152612c2981612847565b9050919050565b60006020820190508181036000830152612c498161286a565b9050919050565b60006020820190508181036000830152612c698161288d565b9050919050565b60006020820190508181036000830152612c89816128b0565b9050919050565b60006020820190508181036000830152612ca9816128d3565b9050919050565b60006020820190508181036000830152612cc9816128f6565b9050919050565b60006020820190508181036000830152612ce981612919565b9050919050565b60006020820190508181036000830152612d098161293c565b9050919050565b60006020820190508181036000830152612d298161295f565b9050919050565b60006020820190508181036000830152612d4981612982565b9050919050565b60006020820190508181036000830152612d69816129a5565b9050919050565b60006020820190508181036000830152612d89816129c8565b9050919050565b60006020820190508181036000830152612da9816129eb565b9050919050565b60006020820190508181036000830152612dc981612a31565b9050919050565b60006020820190508181036000830152612de981612a54565b9050919050565b6000602082019050612e056000830184612a77565b92915050565b6000612e15612e26565b9050612e2182826130f2565b919050565b6000604051905090565b600067ffffffffffffffff821115612e4b57612e4a613259565b5b612e548261329c565b9050602081019050919050565b600067ffffffffffffffff821115612e7c57612e7b613259565b5b612e858261329c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f0082613074565b9150612f0b83613074565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f4057612f3f61319d565b5b828201905092915050565b6000612f5682613074565b9150612f6183613074565b925082612f7157612f706131cc565b5b828204905092915050565b6000612f8782613074565b9150612f9283613074565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fcb57612fca61319d565b5b828202905092915050565b6000612fe182613074565b9150612fec83613074565b925082821015612fff57612ffe61319d565b5b828203905092915050565b600061301582613054565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130ab578082015181840152602081019050613090565b838111156130ba576000848401525b50505050565b600060028204905060018216806130d857607f821691505b602082108114156130ec576130eb6131fb565b5b50919050565b6130fb8261329c565b810181811067ffffffffffffffff8211171561311a57613119613259565b5b80604052505050565b600061312e82613074565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131615761316061319d565b5b600182019050919050565b600061317782613074565b915061318283613074565b925082613192576131916131cc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5472616e73666572204661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f20746f6b656e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4578636565647320274d415820544f4b454e5327000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732e20596f75206e656564206d6f7260008201527f6520455448000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e74203120706572207472616e7361637460008201527f696f6e2e00000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5468652073616c65206973207061757365642e00000000000000000000000000600082015250565b50565b7f596f752063616e206f6e6c79206d696e742032207065722077616c6c65742e00600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61378f8161300a565b811461379a57600080fd5b50565b6137a68161301c565b81146137b157600080fd5b50565b6137bd81613028565b81146137c857600080fd5b50565b6137d481613074565b81146137df57600080fd5b5056fea2646970667358221220b12e284c9c1c055217e9e7e17c366273d02cbb76ab7ab28a416f024206978a4d64736f6c63430008070033697066733a2f2f516d625647557242364a3961773573684262744747506e434574576a39684b34353962396b3768366b5966426f682f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105a8578063e985e9c5146105e5578063f2fde38b14610622578063f47c84c51461064b576101b7565b8063a22cb4651461052b578063b88d4fde14610554578063c66828621461057d576101b7565b80639abc8320116100c65780639abc83201461048e5780639fd07cf0146104b9578063a035b1fe146104e4578063a0712d681461050f576101b7565b80638da5cb5b1461040d5780638ecad7211461043857806395d89b4114610463576101b7565b806342842e0e116101595780636352211e116101335780636352211e1461037257806370a08231146103af578063715018a6146103ec578063853828b614610403576101b7565b806342842e0e146102f557806355f804b31461031e578063564566a814610347576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806334918dfd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612588565b610676565b6040516101f09190612b33565b60405180910390f35b34801561020557600080fd5b5061020e610758565b60405161021b9190612b4e565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061262b565b6107ea565b6040516102589190612acc565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612548565b610830565b005b34801561029657600080fd5b5061029f610948565b6040516102ac9190612df0565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612432565b61094e565b005b3480156102ea57600080fd5b506102f36109ae565b005b34801561030157600080fd5b5061031c60048036038101906103179190612432565b6109e2565b005b34801561032a57600080fd5b50610345600480360381019061034091906125e2565b610a02565b005b34801561035357600080fd5b5061035c610a24565b6040516103699190612b33565b60405180910390f35b34801561037e57600080fd5b506103996004803603810190610394919061262b565b610a37565b6040516103a69190612acc565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d191906123c5565b610ae9565b6040516103e39190612df0565b60405180910390f35b3480156103f857600080fd5b50610401610ba1565b005b61040b610bb5565b005b34801561041957600080fd5b50610422610d4c565b60405161042f9190612acc565b60405180910390f35b34801561044457600080fd5b5061044d610d76565b60405161045a9190612df0565b60405180910390f35b34801561046f57600080fd5b50610478610d7b565b6040516104859190612b4e565b60405180910390f35b34801561049a57600080fd5b506104a3610e0d565b6040516104b09190612b4e565b60405180910390f35b3480156104c557600080fd5b506104ce610e9b565b6040516104db9190612df0565b60405180910390f35b3480156104f057600080fd5b506104f9610ea0565b6040516105069190612df0565b60405180910390f35b6105296004803603810190610524919061262b565b610ea6565b005b34801561053757600080fd5b50610552600480360381019061054d9190612508565b611116565b005b34801561056057600080fd5b5061057b60048036038101906105769190612485565b61112c565b005b34801561058957600080fd5b5061059261118e565b60405161059f9190612b4e565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca919061262b565b61121c565b6040516105dc9190612b4e565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906123f2565b6112c6565b6040516106199190612b33565b60405180910390f35b34801561062e57600080fd5b50610649600480360381019061064491906123c5565b61135a565b005b34801561065757600080fd5b506106606113de565b60405161066d9190612df0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610751575061075082611407565b5b9050919050565b606060008054610767906130c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610793906130c0565b80156107e05780601f106107b5576101008083540402835291602001916107e0565b820191906000526020600020905b8154815290600101906020018083116107c357829003601f168201915b5050505050905090565b60006107f582611471565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083b82610a37565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a390612d70565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108cb6114bc565b73ffffffffffffffffffffffffffffffffffffffff1614806108fa57506108f9816108f46114bc565b6112c6565b5b610939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093090612cf0565b60405180910390fd5b61094383836114c4565b505050565b60095481565b61095f6109596114bc565b8261157d565b61099e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099590612dd0565b60405180910390fd5b6109a9838383611612565b505050565b6109b6611879565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6109fd8383836040518060200160405280600081525061112c565b505050565b610a0a611879565b80600b9080519060200190610a209291906121d9565b5050565b600860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad790612d50565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190612cb0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ba9611879565b610bb360006118f7565b565b610bbd611879565b600047905060006064603283610bd39190612f7c565b610bdd9190612f4b565b905060006064603284610bf09190612f7c565b610bfa9190612f4b565b905060007331d1e1adb221c6b1b2a0a7753dfb96e934ebacc073ffffffffffffffffffffffffffffffffffffffff1683604051610c3690612ab7565b60006040518083038185875af1925050503d8060008114610c73576040519150601f19603f3d011682016040523d82523d6000602084013e610c78565b606091505b5050905060007331d1e1adb221c6b1b2a0a7753dfb96e934ebacc073ffffffffffffffffffffffffffffffffffffffff1683604051610cb690612ab7565b60006040518083038185875af1925050503d8060008114610cf3576040519150601f19603f3d011682016040523d82523d6000602084013e610cf8565b606091505b50509050818015610d065750805b610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90612b70565b60405180910390fd5b5050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600181565b606060018054610d8a906130c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610db6906130c0565b8015610e035780601f10610dd857610100808354040283529160200191610e03565b820191906000526020600020905b815481529060010190602001808311610de657829003601f168201915b5050505050905090565b600b8054610e1a906130c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e46906130c0565b8015610e935780601f10610e6857610100808354040283529160200191610e93565b820191906000526020600020905b815481529060010190602001808311610e7657829003601f168201915b505050505081565b600081565b60075481565b600860009054906101000a900460ff16610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90612d90565b60405180910390fd5b6001811115610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090612cd0565b60405180910390fd5b600281600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f869190612ef5565b1115610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe90612db0565b60405180910390fd5b600060095490506107d48282610fdd9190612ef5565b111561101e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101590612c70565b60405180910390fd5b346007548361102d9190612f7c565b111561106e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106590612c90565b60405180910390fd5b6000600190505b8281116110a25761109133828461108c9190612ef5565b6119bd565b8061109b90613123565b9050611075565b5081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110f29190612ef5565b92505081905550816009600082825461110b9190612ef5565b925050819055505050565b6111286111216114bc565b83836119db565b5050565b61113d6111376114bc565b8361157d565b61117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390612dd0565b60405180910390fd5b61118884848484611b48565b50505050565b600c805461119b906130c0565b80601f01602080910402602001604051908101604052809291908181526020018280546111c7906130c0565b80156112145780601f106111e957610100808354040283529160200191611214565b820191906000526020600020905b8154815290600101906020018083116111f757829003601f168201915b505050505081565b606061122782611ba4565b611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90612c10565b60405180910390fd5b6000611270611c10565b9050600081511161129057604051806020016040528060008152506112be565b8061129a84611ca2565b600c6040516020016112ae93929190612a86565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611362611879565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c990612bb0565b60405180910390fd5b6113db816118f7565b50565b6107d481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61147a81611ba4565b6114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b090612d50565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661153783610a37565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061158983610a37565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115cb57506115ca81856112c6565b5b8061160957508373ffffffffffffffffffffffffffffffffffffffff166115f1846107ea565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661163282610a37565b73ffffffffffffffffffffffffffffffffffffffff1614611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90612bd0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90612c30565b60405180910390fd5b611703838383611e03565b61170e6000826114c4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461175e9190612fd6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117b59190612ef5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611874838383611e08565b505050565b6118816114bc565b73ffffffffffffffffffffffffffffffffffffffff1661189f610d4c565b73ffffffffffffffffffffffffffffffffffffffff16146118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90612d30565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119d7828260405180602001604052806000815250611e0d565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4190612c50565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b3b9190612b33565b60405180910390a3505050565b611b53848484611612565b611b5f84848484611e68565b611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9590612b90565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611c1f906130c0565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4b906130c0565b8015611c985780601f10611c6d57610100808354040283529160200191611c98565b820191906000526020600020905b815481529060010190602001808311611c7b57829003601f168201915b5050505050905090565b60606000821415611cea576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611dfe565b600082905060005b60008214611d1c578080611d0590613123565b915050600a82611d159190612f4b565b9150611cf2565b60008167ffffffffffffffff811115611d3857611d37613259565b5b6040519080825280601f01601f191660200182016040528015611d6a5781602001600182028036833780820191505090505b5090505b60008514611df757600182611d839190612fd6565b9150600a85611d92919061316c565b6030611d9e9190612ef5565b60f81b818381518110611db457611db361322a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611df09190612f4b565b9450611d6e565b8093505050505b919050565b505050565b505050565b611e178383611fff565b611e246000848484611e68565b611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90612b90565b60405180910390fd5b505050565b6000611e898473ffffffffffffffffffffffffffffffffffffffff166113e4565b15611ff2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eb26114bc565b8786866040518563ffffffff1660e01b8152600401611ed49493929190612ae7565b602060405180830381600087803b158015611eee57600080fd5b505af1925050508015611f1f57506040513d601f19601f82011682018060405250810190611f1c91906125b5565b60015b611fa2573d8060008114611f4f576040519150601f19603f3d011682016040523d82523d6000602084013e611f54565b606091505b50600081511415611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9190612b90565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ff7565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561206f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206690612d10565b60405180910390fd5b61207881611ba4565b156120b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120af90612bf0565b60405180910390fd5b6120c460008383611e03565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121149190612ef5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121d560008383611e08565b5050565b8280546121e5906130c0565b90600052602060002090601f016020900481019282612207576000855561224e565b82601f1061222057805160ff191683800117855561224e565b8280016001018555821561224e579182015b8281111561224d578251825591602001919060010190612232565b5b50905061225b919061225f565b5090565b5b80821115612278576000816000905550600101612260565b5090565b600061228f61228a84612e30565b612e0b565b9050828152602081018484840111156122ab576122aa61328d565b5b6122b684828561307e565b509392505050565b60006122d16122cc84612e61565b612e0b565b9050828152602081018484840111156122ed576122ec61328d565b5b6122f884828561307e565b509392505050565b60008135905061230f81613786565b92915050565b6000813590506123248161379d565b92915050565b600081359050612339816137b4565b92915050565b60008151905061234e816137b4565b92915050565b600082601f83011261236957612368613288565b5b813561237984826020860161227c565b91505092915050565b600082601f83011261239757612396613288565b5b81356123a78482602086016122be565b91505092915050565b6000813590506123bf816137cb565b92915050565b6000602082840312156123db576123da613297565b5b60006123e984828501612300565b91505092915050565b6000806040838503121561240957612408613297565b5b600061241785828601612300565b925050602061242885828601612300565b9150509250929050565b60008060006060848603121561244b5761244a613297565b5b600061245986828701612300565b935050602061246a86828701612300565b925050604061247b868287016123b0565b9150509250925092565b6000806000806080858703121561249f5761249e613297565b5b60006124ad87828801612300565b94505060206124be87828801612300565b93505060406124cf878288016123b0565b925050606085013567ffffffffffffffff8111156124f0576124ef613292565b5b6124fc87828801612354565b91505092959194509250565b6000806040838503121561251f5761251e613297565b5b600061252d85828601612300565b925050602061253e85828601612315565b9150509250929050565b6000806040838503121561255f5761255e613297565b5b600061256d85828601612300565b925050602061257e858286016123b0565b9150509250929050565b60006020828403121561259e5761259d613297565b5b60006125ac8482850161232a565b91505092915050565b6000602082840312156125cb576125ca613297565b5b60006125d98482850161233f565b91505092915050565b6000602082840312156125f8576125f7613297565b5b600082013567ffffffffffffffff81111561261657612615613292565b5b61262284828501612382565b91505092915050565b60006020828403121561264157612640613297565b5b600061264f848285016123b0565b91505092915050565b6126618161300a565b82525050565b6126708161301c565b82525050565b600061268182612ea7565b61268b8185612ebd565b935061269b81856020860161308d565b6126a48161329c565b840191505092915050565b60006126ba82612eb2565b6126c48185612ed9565b93506126d481856020860161308d565b6126dd8161329c565b840191505092915050565b60006126f382612eb2565b6126fd8185612eea565b935061270d81856020860161308d565b80840191505092915050565b60008154612726816130c0565b6127308186612eea565b9450600182166000811461274b576001811461275c5761278f565b60ff1983168652818601935061278f565b61276585612e92565b60005b8381101561278757815481890152600182019150602081019050612768565b838801955050505b50505092915050565b60006127a5601083612ed9565b91506127b0826132ad565b602082019050919050565b60006127c8603283612ed9565b91506127d3826132d6565b604082019050919050565b60006127eb602683612ed9565b91506127f682613325565b604082019050919050565b600061280e602583612ed9565b915061281982613374565b604082019050919050565b6000612831601c83612ed9565b915061283c826133c3565b602082019050919050565b6000612854602683612ed9565b915061285f826133ec565b604082019050919050565b6000612877602483612ed9565b91506128828261343b565b604082019050919050565b600061289a601983612ed9565b91506128a58261348a565b602082019050919050565b60006128bd601483612ed9565b91506128c8826134b3565b602082019050919050565b60006128e0602583612ed9565b91506128eb826134dc565b604082019050919050565b6000612903602983612ed9565b915061290e8261352b565b604082019050919050565b6000612926602483612ed9565b91506129318261357a565b604082019050919050565b6000612949603e83612ed9565b9150612954826135c9565b604082019050919050565b600061296c602083612ed9565b915061297782613618565b602082019050919050565b600061298f602083612ed9565b915061299a82613641565b602082019050919050565b60006129b2601883612ed9565b91506129bd8261366a565b602082019050919050565b60006129d5602183612ed9565b91506129e082613693565b604082019050919050565b60006129f8601383612ed9565b9150612a03826136e2565b602082019050919050565b6000612a1b600083612ece565b9150612a268261370b565b600082019050919050565b6000612a3e601f83612ed9565b9150612a498261370e565b602082019050919050565b6000612a61602e83612ed9565b9150612a6c82613737565b604082019050919050565b612a8081613074565b82525050565b6000612a9282866126e8565b9150612a9e82856126e8565b9150612aaa8284612719565b9150819050949350505050565b6000612ac282612a0e565b9150819050919050565b6000602082019050612ae16000830184612658565b92915050565b6000608082019050612afc6000830187612658565b612b096020830186612658565b612b166040830185612a77565b8181036060830152612b288184612676565b905095945050505050565b6000602082019050612b486000830184612667565b92915050565b60006020820190508181036000830152612b6881846126af565b905092915050565b60006020820190508181036000830152612b8981612798565b9050919050565b60006020820190508181036000830152612ba9816127bb565b9050919050565b60006020820190508181036000830152612bc9816127de565b9050919050565b60006020820190508181036000830152612be981612801565b9050919050565b60006020820190508181036000830152612c0981612824565b9050919050565b60006020820190508181036000830152612c2981612847565b9050919050565b60006020820190508181036000830152612c498161286a565b9050919050565b60006020820190508181036000830152612c698161288d565b9050919050565b60006020820190508181036000830152612c89816128b0565b9050919050565b60006020820190508181036000830152612ca9816128d3565b9050919050565b60006020820190508181036000830152612cc9816128f6565b9050919050565b60006020820190508181036000830152612ce981612919565b9050919050565b60006020820190508181036000830152612d098161293c565b9050919050565b60006020820190508181036000830152612d298161295f565b9050919050565b60006020820190508181036000830152612d4981612982565b9050919050565b60006020820190508181036000830152612d69816129a5565b9050919050565b60006020820190508181036000830152612d89816129c8565b9050919050565b60006020820190508181036000830152612da9816129eb565b9050919050565b60006020820190508181036000830152612dc981612a31565b9050919050565b60006020820190508181036000830152612de981612a54565b9050919050565b6000602082019050612e056000830184612a77565b92915050565b6000612e15612e26565b9050612e2182826130f2565b919050565b6000604051905090565b600067ffffffffffffffff821115612e4b57612e4a613259565b5b612e548261329c565b9050602081019050919050565b600067ffffffffffffffff821115612e7c57612e7b613259565b5b612e858261329c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f0082613074565b9150612f0b83613074565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f4057612f3f61319d565b5b828201905092915050565b6000612f5682613074565b9150612f6183613074565b925082612f7157612f706131cc565b5b828204905092915050565b6000612f8782613074565b9150612f9283613074565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fcb57612fca61319d565b5b828202905092915050565b6000612fe182613074565b9150612fec83613074565b925082821015612fff57612ffe61319d565b5b828203905092915050565b600061301582613054565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130ab578082015181840152602081019050613090565b838111156130ba576000848401525b50505050565b600060028204905060018216806130d857607f821691505b602082108114156130ec576130eb6131fb565b5b50919050565b6130fb8261329c565b810181811067ffffffffffffffff8211171561311a57613119613259565b5b80604052505050565b600061312e82613074565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131615761316061319d565b5b600182019050919050565b600061317782613074565b915061318283613074565b925082613192576131916131cc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5472616e73666572204661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f20746f6b656e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4578636565647320274d415820544f4b454e5327000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732e20596f75206e656564206d6f7260008201527f6520455448000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e74203120706572207472616e7361637460008201527f696f6e2e00000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5468652073616c65206973207061757365642e00000000000000000000000000600082015250565b50565b7f596f752063616e206f6e6c79206d696e742032207065722077616c6c65742e00600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61378f8161300a565b811461379a57600080fd5b50565b6137a68161301c565b81146137b157600080fd5b50565b6137bd81613028565b81146137c857600080fd5b50565b6137d481613074565b81146137df57600080fd5b5056fea2646970667358221220b12e284c9c1c055217e9e7e17c366273d02cbb76ab7ab28a416f024206978a4d64736f6c63430008070033

Deployed Bytecode Sourcemap

38029:2751:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22074:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23001:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24514:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24031:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38332:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25214:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39516:91;;;;;;;;;;;;;:::i;:::-;;25621:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39615:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38301:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22712:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22443:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37139:103;;;;;;;;;;;;;:::i;:::-;;39723:500;;;:::i;:::-;;36491:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38249:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23170:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38425:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38168:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38218:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38769:739;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24757:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25877:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38453:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40231:418;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24983:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37397:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38120:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22074:305;22176:4;22228:25;22213:40;;;:11;:40;;;;:105;;;;22285:33;22270:48;;;:11;:48;;;;22213:105;:158;;;;22335:36;22359:11;22335:23;:36::i;:::-;22213:158;22193:178;;22074:305;;;:::o;23001:100::-;23055:13;23088:5;23081:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23001:100;:::o;24514:171::-;24590:7;24610:23;24625:7;24610:14;:23::i;:::-;24653:15;:24;24669:7;24653:24;;;;;;;;;;;;;;;;;;;;;24646:31;;24514:171;;;:::o;24031:417::-;24112:13;24128:23;24143:7;24128:14;:23::i;:::-;24112:39;;24176:5;24170:11;;:2;:11;;;;24162:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24270:5;24254:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24279:37;24296:5;24303:12;:10;:12::i;:::-;24279:16;:37::i;:::-;24254:62;24232:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;24419:21;24428:2;24432:7;24419:8;:21::i;:::-;24101:347;24031:417;;:::o;38332:26::-;;;;:::o;25214:336::-;25409:41;25428:12;:10;:12::i;:::-;25442:7;25409:18;:41::i;:::-;25401:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;25514:28;25524:4;25530:2;25534:7;25514:9;:28::i;:::-;25214:336;;;:::o;39516:91::-;36377:13;:11;:13::i;:::-;39587:12:::1;;;;;;;;;;;39586:13;39571:12;;:28;;;;;;;;;;;;;;;;;;39516:91::o:0;25621:185::-;25759:39;25776:4;25782:2;25786:7;25759:39;;;;;;;;;;;;:16;:39::i;:::-;25621:185;;;:::o;39615:100::-;36377:13;:11;:13::i;:::-;39699:8:::1;39689:7;:18;;;;;;;;;;;;:::i;:::-;;39615:100:::0;:::o;38301:24::-;;;;;;;;;;;;;:::o;22712:222::-;22784:7;22804:13;22820:7;:16;22828:7;22820:16;;;;;;;;;;;;;;;;;;;;;22804:32;;22872:1;22855:19;;:5;:19;;;;22847:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;22921:5;22914:12;;;22712:222;;;:::o;22443:207::-;22515:7;22560:1;22543:19;;:5;:19;;;;22535:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22626:9;:16;22636:5;22626:16;;;;;;;;;;;;;;;;22619:23;;22443:207;;;:::o;37139:103::-;36377:13;:11;:13::i;:::-;37204:30:::1;37231:1;37204:18;:30::i;:::-;37139:103::o:0;39723:500::-;36377:13;:11;:13::i;:::-;39784:15:::1;39802:21;39784:39;;39834:18;39870:3;39865:2;39855:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;39834:39;;39884:18;39920:3;39915:2;39905:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;39884:39;;39935:16;39965:42;39957:56;;40021:10;39957:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39934:102;;;40048:16;40078:42;40070:56;;40134:10;40070:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40047:102;;;40168:11;:26;;;;;40183:11;40168:26;40160:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;39773:450;;;;;39723:500::o:0;36491:87::-;36537:7;36564:6;;;;;;;;;;;36557:13;;36491:87;:::o;38249:43::-;38291:1;38249:43;:::o;23170:104::-;23226:13;23259:7;23252:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23170:104;:::o;38425:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38168:43::-;38210:1;38168:43;:::o;38218:24::-;;;;:::o;38769:739::-;38839:12;;;;;;;;;;;38831:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;38291:1;38894:10;:29;;38886:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;39027:1;39013:10;38983:15;:27;38999:10;38983:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:45;;38975:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;39075:22;39100:11;;39075:36;;38157:4;39147:10;39130:14;:27;;;;:::i;:::-;:41;;39122:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;39237:9;39228:5;;39215:10;:18;;;;:::i;:::-;:31;;39207:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;39306:9;39318:1;39306:13;;39301:112;39326:10;39321:1;:15;39301:112;;39358:41;39368:10;39397:1;39380:14;:18;;;;:::i;:::-;39358:9;:41::i;:::-;39338:3;;;;:::i;:::-;;;39301:112;;;;39454:10;39423:15;:27;39439:10;39423:27;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;39490:10;39475:11;;:25;;;;;;;:::i;:::-;;;;;;;;38820:688;38769:739;:::o;24757:155::-;24852:52;24871:12;:10;:12::i;:::-;24885:8;24895;24852:18;:52::i;:::-;24757:155;;:::o;25877:323::-;26051:41;26070:12;:10;:12::i;:::-;26084:7;26051:18;:41::i;:::-;26043:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;26154:38;26168:4;26174:2;26178:7;26187:4;26154:13;:38::i;:::-;25877:323;;;;:::o;38453:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40231:418::-;40304:13;40352:16;40360:7;40352;:16::i;:::-;40330:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;40447:28;40478:10;:8;:10::i;:::-;40447:41;;40537:1;40512:14;40506:28;:32;:133;;;;;;;;;;;;;;;;;40574:14;40590:18;:7;:16;:18::i;:::-;40610:13;40557:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40506:133;40499:140;;;40231:418;;;:::o;24983:164::-;25080:4;25104:18;:25;25123:5;25104:25;;;;;;;;;;;;;;;:35;25130:8;25104:35;;;;;;;;;;;;;;;;;;;;;;;;;25097:42;;24983:164;;;;:::o;37397:201::-;36377:13;:11;:13::i;:::-;37506:1:::1;37486:22;;:8;:22;;;;37478:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37562:28;37581:8;37562:18;:28::i;:::-;37397:201:::0;:::o;38120:41::-;38157:4;38120:41;:::o;3767:326::-;3827:4;4084:1;4062:7;:19;;;:23;4055:30;;3767:326;;;:::o;13923:157::-;14008:4;14047:25;14032:40;;;:11;:40;;;;14025:47;;13923:157;;;:::o;32489:135::-;32571:16;32579:7;32571;:16::i;:::-;32563:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;32489:135;:::o;20453:98::-;20506:7;20533:10;20526:17;;20453:98;:::o;31768:174::-;31870:2;31843:15;:24;31859:7;31843:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31926:7;31922:2;31888:46;;31897:23;31912:7;31897:14;:23::i;:::-;31888:46;;;;;;;;;;;;31768:174;;:::o;28001:264::-;28094:4;28111:13;28127:23;28142:7;28127:14;:23::i;:::-;28111:39;;28180:5;28169:16;;:7;:16;;;:52;;;;28189:32;28206:5;28213:7;28189:16;:32::i;:::-;28169:52;:87;;;;28249:7;28225:31;;:20;28237:7;28225:11;:20::i;:::-;:31;;;28169:87;28161:96;;;28001:264;;;;:::o;31024:625::-;31183:4;31156:31;;:23;31171:7;31156:14;:23::i;:::-;:31;;;31148:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;31262:1;31248:16;;:2;:16;;;;31240:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31318:39;31339:4;31345:2;31349:7;31318:20;:39::i;:::-;31422:29;31439:1;31443:7;31422:8;:29::i;:::-;31483:1;31464:9;:15;31474:4;31464:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31512:1;31495:9;:13;31505:2;31495:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31543:2;31524:7;:16;31532:7;31524:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31582:7;31578:2;31563:27;;31572:4;31563:27;;;;;;;;;;;;31603:38;31623:4;31629:2;31633:7;31603:19;:38::i;:::-;31024:625;;;:::o;36656:132::-;36731:12;:10;:12::i;:::-;36720:23;;:7;:5;:7::i;:::-;:23;;;36712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36656:132::o;37758:191::-;37832:16;37851:6;;;;;;;;;;;37832:25;;37877:8;37868:6;;:17;;;;;;;;;;;;;;;;;;37932:8;37901:40;;37922:8;37901:40;;;;;;;;;;;;37821:128;37758:191;:::o;28607:110::-;28683:26;28693:2;28697:7;28683:26;;;;;;;;;;;;:9;:26::i;:::-;28607:110;;:::o;32085:315::-;32240:8;32231:17;;:5;:17;;;;32223:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;32327:8;32289:18;:25;32308:5;32289:25;;;;;;;;;;;;;;;:35;32315:8;32289:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32373:8;32351:41;;32366:5;32351:41;;;32383:8;32351:41;;;;;;:::i;:::-;;;;;;;;32085:315;;;:::o;27081:313::-;27237:28;27247:4;27253:2;27257:7;27237:9;:28::i;:::-;27284:47;27307:4;27313:2;27317:7;27326:4;27284:22;:47::i;:::-;27276:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;27081:313;;;;:::o;27707:127::-;27772:4;27824:1;27796:30;;:7;:16;27804:7;27796:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27789:37;;27707:127;;;:::o;40657:118::-;40717:13;40750:7;40743:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40657:118;:::o;467:723::-;523:13;753:1;744:5;:10;740:53;;;771:10;;;;;;;;;;;;;;;;;;;;;740:53;803:12;818:5;803:20;;834:14;859:78;874:1;866:4;:9;859:78;;892:8;;;;;:::i;:::-;;;;923:2;915:10;;;;;:::i;:::-;;;859:78;;;947:19;979:6;969:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;947:39;;997:154;1013:1;1004:5;:10;997:154;;1041:1;1031:11;;;;;:::i;:::-;;;1108:2;1100:5;:10;;;;:::i;:::-;1087:2;:24;;;;:::i;:::-;1074:39;;1057:6;1064;1057:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1137:2;1128:11;;;;;:::i;:::-;;;997:154;;;1175:6;1161:21;;;;;467:723;;;;:::o;34613:126::-;;;;:::o;35124:125::-;;;;:::o;28944:319::-;29073:18;29079:2;29083:7;29073:5;:18::i;:::-;29124:53;29155:1;29159:2;29163:7;29172:4;29124:22;:53::i;:::-;29102:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;28944:319;;;:::o;33188:853::-;33342:4;33363:15;:2;:13;;;:15::i;:::-;33359:675;;;33415:2;33399:36;;;33436:12;:10;:12::i;:::-;33450:4;33456:7;33465:4;33399:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33395:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33657:1;33640:6;:13;:18;33636:328;;;33683:60;;;;;;;;;;:::i;:::-;;;;;;;;33636:328;33914:6;33908:13;33899:6;33895:2;33891:15;33884:38;33395:584;33531:41;;;33521:51;;;:6;:51;;;;33514:58;;;;;33359:675;34018:4;34011:11;;33188:853;;;;;;;:::o;29599:439::-;29693:1;29679:16;;:2;:16;;;;29671:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29752:16;29760:7;29752;:16::i;:::-;29751:17;29743:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29814:45;29843:1;29847:2;29851:7;29814:20;:45::i;:::-;29889:1;29872:9;:13;29882:2;29872:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29920:2;29901:7;:16;29909:7;29901:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29965:7;29961:2;29940:33;;29957:1;29940:33;;;;;;;;;;;;29986:44;30014:1;30018:2;30022:7;29986:19;:44::i;:::-;29599:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:::-;11393:3;11414:67;11478:2;11473:3;11414:67;:::i;:::-;11407:74;;11490:93;11579:3;11490:93;:::i;:::-;11608:2;11603:3;11599:12;11592:19;;11251:366;;;:::o;11623:::-;11765:3;11786:67;11850:2;11845:3;11786:67;:::i;:::-;11779:74;;11862:93;11951:3;11862:93;:::i;:::-;11980:2;11975:3;11971:12;11964:19;;11623:366;;;:::o;11995:::-;12137:3;12158:67;12222:2;12217:3;12158:67;:::i;:::-;12151:74;;12234:93;12323:3;12234:93;:::i;:::-;12352:2;12347:3;12343:12;12336:19;;11995:366;;;:::o;12367:::-;12509:3;12530:67;12594:2;12589:3;12530:67;:::i;:::-;12523:74;;12606:93;12695:3;12606:93;:::i;:::-;12724:2;12719:3;12715:12;12708:19;;12367:366;;;:::o;12739:::-;12881:3;12902:67;12966:2;12961:3;12902:67;:::i;:::-;12895:74;;12978:93;13067:3;12978:93;:::i;:::-;13096:2;13091:3;13087:12;13080:19;;12739:366;;;:::o;13111:::-;13253:3;13274:67;13338:2;13333:3;13274:67;:::i;:::-;13267:74;;13350:93;13439:3;13350:93;:::i;:::-;13468:2;13463:3;13459:12;13452:19;;13111:366;;;:::o;13483:::-;13625:3;13646:67;13710:2;13705:3;13646:67;:::i;:::-;13639:74;;13722:93;13811:3;13722:93;:::i;:::-;13840:2;13835:3;13831:12;13824:19;;13483:366;;;:::o;13855:::-;13997:3;14018:67;14082:2;14077:3;14018:67;:::i;:::-;14011:74;;14094:93;14183:3;14094:93;:::i;:::-;14212:2;14207:3;14203:12;14196:19;;13855:366;;;:::o;14227:::-;14369:3;14390:67;14454:2;14449:3;14390:67;:::i;:::-;14383:74;;14466:93;14555:3;14466:93;:::i;:::-;14584:2;14579:3;14575:12;14568:19;;14227:366;;;:::o;14599:::-;14741:3;14762:67;14826:2;14821:3;14762:67;:::i;:::-;14755:74;;14838:93;14927:3;14838:93;:::i;:::-;14956:2;14951:3;14947:12;14940:19;;14599:366;;;:::o;14971:::-;15113:3;15134:67;15198:2;15193:3;15134:67;:::i;:::-;15127:74;;15210:93;15299:3;15210:93;:::i;:::-;15328:2;15323:3;15319:12;15312:19;;14971:366;;;:::o;15343:::-;15485:3;15506:67;15570:2;15565:3;15506:67;:::i;:::-;15499:74;;15582:93;15671:3;15582:93;:::i;:::-;15700:2;15695:3;15691:12;15684:19;;15343:366;;;:::o;15715:::-;15857:3;15878:67;15942:2;15937:3;15878:67;:::i;:::-;15871:74;;15954:93;16043:3;15954:93;:::i;:::-;16072:2;16067:3;16063:12;16056:19;;15715:366;;;:::o;16087:398::-;16246:3;16267:83;16348:1;16343:3;16267:83;:::i;:::-;16260:90;;16359:93;16448:3;16359:93;:::i;:::-;16477:1;16472:3;16468:11;16461:18;;16087:398;;;:::o;16491:366::-;16633:3;16654:67;16718:2;16713:3;16654:67;:::i;:::-;16647:74;;16730:93;16819:3;16730:93;:::i;:::-;16848:2;16843:3;16839:12;16832:19;;16491:366;;;:::o;16863:::-;17005:3;17026:67;17090:2;17085:3;17026:67;:::i;:::-;17019:74;;17102:93;17191:3;17102:93;:::i;:::-;17220:2;17215:3;17211:12;17204:19;;16863:366;;;:::o;17235:118::-;17322:24;17340:5;17322:24;:::i;:::-;17317:3;17310:37;17235:118;;:::o;17359:589::-;17584:3;17606:95;17697:3;17688:6;17606:95;:::i;:::-;17599:102;;17718:95;17809:3;17800:6;17718:95;:::i;:::-;17711:102;;17830:92;17918:3;17909:6;17830:92;:::i;:::-;17823:99;;17939:3;17932:10;;17359:589;;;;;;:::o;17954:379::-;18138:3;18160:147;18303:3;18160:147;:::i;:::-;18153:154;;18324:3;18317:10;;17954:379;;;:::o;18339:222::-;18432:4;18470:2;18459:9;18455:18;18447:26;;18483:71;18551:1;18540:9;18536:17;18527:6;18483:71;:::i;:::-;18339:222;;;;:::o;18567:640::-;18762:4;18800:3;18789:9;18785:19;18777:27;;18814:71;18882:1;18871:9;18867:17;18858:6;18814:71;:::i;:::-;18895:72;18963:2;18952:9;18948:18;18939:6;18895:72;:::i;:::-;18977;19045:2;19034:9;19030:18;19021:6;18977:72;:::i;:::-;19096:9;19090:4;19086:20;19081:2;19070:9;19066:18;19059:48;19124:76;19195:4;19186:6;19124:76;:::i;:::-;19116:84;;18567:640;;;;;;;:::o;19213:210::-;19300:4;19338:2;19327:9;19323:18;19315:26;;19351:65;19413:1;19402:9;19398:17;19389:6;19351:65;:::i;:::-;19213:210;;;;:::o;19429:313::-;19542:4;19580:2;19569:9;19565:18;19557:26;;19629:9;19623:4;19619:20;19615:1;19604:9;19600:17;19593:47;19657:78;19730:4;19721:6;19657:78;:::i;:::-;19649:86;;19429:313;;;;:::o;19748:419::-;19914:4;19952:2;19941:9;19937:18;19929:26;;20001:9;19995:4;19991:20;19987:1;19976:9;19972:17;19965:47;20029:131;20155:4;20029:131;:::i;:::-;20021:139;;19748:419;;;:::o;20173:::-;20339:4;20377:2;20366:9;20362:18;20354:26;;20426:9;20420:4;20416:20;20412:1;20401:9;20397:17;20390:47;20454:131;20580:4;20454:131;:::i;:::-;20446:139;;20173:419;;;:::o;20598:::-;20764:4;20802:2;20791:9;20787:18;20779:26;;20851:9;20845:4;20841:20;20837:1;20826:9;20822:17;20815:47;20879:131;21005:4;20879:131;:::i;:::-;20871:139;;20598:419;;;:::o;21023:::-;21189:4;21227:2;21216:9;21212:18;21204:26;;21276:9;21270:4;21266:20;21262:1;21251:9;21247:17;21240:47;21304:131;21430:4;21304:131;:::i;:::-;21296:139;;21023:419;;;:::o;21448:::-;21614:4;21652:2;21641:9;21637:18;21629:26;;21701:9;21695:4;21691:20;21687:1;21676:9;21672:17;21665:47;21729:131;21855:4;21729:131;:::i;:::-;21721:139;;21448:419;;;:::o;21873:::-;22039:4;22077:2;22066:9;22062:18;22054:26;;22126:9;22120:4;22116:20;22112:1;22101:9;22097:17;22090:47;22154:131;22280:4;22154:131;:::i;:::-;22146:139;;21873:419;;;:::o;22298:::-;22464:4;22502:2;22491:9;22487:18;22479:26;;22551:9;22545:4;22541:20;22537:1;22526:9;22522:17;22515:47;22579:131;22705:4;22579:131;:::i;:::-;22571:139;;22298:419;;;:::o;22723:::-;22889:4;22927:2;22916:9;22912:18;22904:26;;22976:9;22970:4;22966:20;22962:1;22951:9;22947:17;22940:47;23004:131;23130:4;23004:131;:::i;:::-;22996:139;;22723:419;;;:::o;23148:::-;23314:4;23352:2;23341:9;23337:18;23329:26;;23401:9;23395:4;23391:20;23387:1;23376:9;23372:17;23365:47;23429:131;23555:4;23429:131;:::i;:::-;23421:139;;23148:419;;;:::o;23573:::-;23739:4;23777:2;23766:9;23762:18;23754:26;;23826:9;23820:4;23816:20;23812:1;23801:9;23797:17;23790:47;23854:131;23980:4;23854:131;:::i;:::-;23846:139;;23573:419;;;:::o;23998:::-;24164:4;24202:2;24191:9;24187:18;24179:26;;24251:9;24245:4;24241:20;24237:1;24226:9;24222:17;24215:47;24279:131;24405:4;24279:131;:::i;:::-;24271:139;;23998:419;;;:::o;24423:::-;24589:4;24627:2;24616:9;24612:18;24604:26;;24676:9;24670:4;24666:20;24662:1;24651:9;24647:17;24640:47;24704:131;24830:4;24704:131;:::i;:::-;24696:139;;24423:419;;;:::o;24848:::-;25014:4;25052:2;25041:9;25037:18;25029:26;;25101:9;25095:4;25091:20;25087:1;25076:9;25072:17;25065:47;25129:131;25255:4;25129:131;:::i;:::-;25121:139;;24848:419;;;:::o;25273:::-;25439:4;25477:2;25466:9;25462:18;25454:26;;25526:9;25520:4;25516:20;25512:1;25501:9;25497:17;25490:47;25554:131;25680:4;25554:131;:::i;:::-;25546:139;;25273:419;;;:::o;25698:::-;25864:4;25902:2;25891:9;25887:18;25879:26;;25951:9;25945:4;25941:20;25937:1;25926:9;25922:17;25915:47;25979:131;26105:4;25979:131;:::i;:::-;25971:139;;25698:419;;;:::o;26123:::-;26289:4;26327:2;26316:9;26312:18;26304:26;;26376:9;26370:4;26366:20;26362:1;26351:9;26347:17;26340:47;26404:131;26530:4;26404:131;:::i;:::-;26396:139;;26123:419;;;:::o;26548:::-;26714:4;26752:2;26741:9;26737:18;26729:26;;26801:9;26795:4;26791:20;26787:1;26776:9;26772:17;26765:47;26829:131;26955:4;26829:131;:::i;:::-;26821:139;;26548:419;;;:::o;26973:::-;27139:4;27177:2;27166:9;27162:18;27154:26;;27226:9;27220:4;27216:20;27212:1;27201:9;27197:17;27190:47;27254:131;27380:4;27254:131;:::i;:::-;27246:139;;26973:419;;;:::o;27398:::-;27564:4;27602:2;27591:9;27587:18;27579:26;;27651:9;27645:4;27641:20;27637:1;27626:9;27622:17;27615:47;27679:131;27805:4;27679:131;:::i;:::-;27671:139;;27398:419;;;:::o;27823:::-;27989:4;28027:2;28016:9;28012:18;28004:26;;28076:9;28070:4;28066:20;28062:1;28051:9;28047:17;28040:47;28104:131;28230:4;28104:131;:::i;:::-;28096:139;;27823:419;;;:::o;28248:222::-;28341:4;28379:2;28368:9;28364:18;28356:26;;28392:71;28460:1;28449:9;28445:17;28436:6;28392:71;:::i;:::-;28248:222;;;;:::o;28476:129::-;28510:6;28537:20;;:::i;:::-;28527:30;;28566:33;28594:4;28586:6;28566:33;:::i;:::-;28476:129;;;:::o;28611:75::-;28644:6;28677:2;28671:9;28661:19;;28611:75;:::o;28692:307::-;28753:4;28843:18;28835:6;28832:30;28829:56;;;28865:18;;:::i;:::-;28829:56;28903:29;28925:6;28903:29;:::i;:::-;28895:37;;28987:4;28981;28977:15;28969:23;;28692:307;;;:::o;29005:308::-;29067:4;29157:18;29149:6;29146:30;29143:56;;;29179:18;;:::i;:::-;29143:56;29217:29;29239:6;29217:29;:::i;:::-;29209:37;;29301:4;29295;29291:15;29283:23;;29005:308;;;:::o;29319:141::-;29368:4;29391:3;29383:11;;29414:3;29411:1;29404:14;29448:4;29445:1;29435:18;29427:26;;29319:141;;;:::o;29466:98::-;29517:6;29551:5;29545:12;29535:22;;29466:98;;;:::o;29570:99::-;29622:6;29656:5;29650:12;29640:22;;29570:99;;;:::o;29675:168::-;29758:11;29792:6;29787:3;29780:19;29832:4;29827:3;29823:14;29808:29;;29675:168;;;;:::o;29849:147::-;29950:11;29987:3;29972:18;;29849:147;;;;:::o;30002:169::-;30086:11;30120:6;30115:3;30108:19;30160:4;30155:3;30151:14;30136:29;;30002:169;;;;:::o;30177:148::-;30279:11;30316:3;30301:18;;30177:148;;;;:::o;30331:305::-;30371:3;30390:20;30408:1;30390:20;:::i;:::-;30385:25;;30424:20;30442:1;30424:20;:::i;:::-;30419:25;;30578:1;30510:66;30506:74;30503:1;30500:81;30497:107;;;30584:18;;:::i;:::-;30497:107;30628:1;30625;30621:9;30614:16;;30331:305;;;;:::o;30642:185::-;30682:1;30699:20;30717:1;30699:20;:::i;:::-;30694:25;;30733:20;30751:1;30733:20;:::i;:::-;30728:25;;30772:1;30762:35;;30777:18;;:::i;:::-;30762:35;30819:1;30816;30812:9;30807:14;;30642:185;;;;:::o;30833:348::-;30873:7;30896:20;30914:1;30896:20;:::i;:::-;30891:25;;30930:20;30948:1;30930:20;:::i;:::-;30925:25;;31118:1;31050:66;31046:74;31043:1;31040:81;31035:1;31028:9;31021:17;31017:105;31014:131;;;31125:18;;:::i;:::-;31014:131;31173:1;31170;31166:9;31155:20;;30833:348;;;;:::o;31187:191::-;31227:4;31247:20;31265:1;31247:20;:::i;:::-;31242:25;;31281:20;31299:1;31281:20;:::i;:::-;31276:25;;31320:1;31317;31314:8;31311:34;;;31325:18;;:::i;:::-;31311:34;31370:1;31367;31363:9;31355:17;;31187:191;;;;:::o;31384:96::-;31421:7;31450:24;31468:5;31450:24;:::i;:::-;31439:35;;31384:96;;;:::o;31486:90::-;31520:7;31563:5;31556:13;31549:21;31538:32;;31486:90;;;:::o;31582:149::-;31618:7;31658:66;31651:5;31647:78;31636:89;;31582:149;;;:::o;31737:126::-;31774:7;31814:42;31807:5;31803:54;31792:65;;31737:126;;;:::o;31869:77::-;31906:7;31935:5;31924:16;;31869:77;;;:::o;31952:154::-;32036:6;32031:3;32026;32013:30;32098:1;32089:6;32084:3;32080:16;32073:27;31952:154;;;:::o;32112:307::-;32180:1;32190:113;32204:6;32201:1;32198:13;32190:113;;;32289:1;32284:3;32280:11;32274:18;32270:1;32265:3;32261:11;32254:39;32226:2;32223:1;32219:10;32214:15;;32190:113;;;32321:6;32318:1;32315:13;32312:101;;;32401:1;32392:6;32387:3;32383:16;32376:27;32312:101;32161:258;32112:307;;;:::o;32425:320::-;32469:6;32506:1;32500:4;32496:12;32486:22;;32553:1;32547:4;32543:12;32574:18;32564:81;;32630:4;32622:6;32618:17;32608:27;;32564:81;32692:2;32684:6;32681:14;32661:18;32658:38;32655:84;;;32711:18;;:::i;:::-;32655:84;32476:269;32425:320;;;:::o;32751:281::-;32834:27;32856:4;32834:27;:::i;:::-;32826:6;32822:40;32964:6;32952:10;32949:22;32928:18;32916:10;32913:34;32910:62;32907:88;;;32975:18;;:::i;:::-;32907:88;33015:10;33011:2;33004:22;32794:238;32751:281;;:::o;33038:233::-;33077:3;33100:24;33118:5;33100:24;:::i;:::-;33091:33;;33146:66;33139:5;33136:77;33133:103;;;33216:18;;:::i;:::-;33133:103;33263:1;33256:5;33252:13;33245:20;;33038:233;;;:::o;33277:176::-;33309:1;33326:20;33344:1;33326:20;:::i;:::-;33321:25;;33360:20;33378:1;33360:20;:::i;:::-;33355:25;;33399:1;33389:35;;33404:18;;:::i;:::-;33389:35;33445:1;33442;33438:9;33433:14;;33277:176;;;;:::o;33459:180::-;33507:77;33504:1;33497:88;33604:4;33601:1;33594:15;33628:4;33625:1;33618:15;33645:180;33693:77;33690:1;33683:88;33790:4;33787:1;33780:15;33814:4;33811:1;33804:15;33831:180;33879:77;33876:1;33869:88;33976:4;33973:1;33966:15;34000:4;33997:1;33990:15;34017:180;34065:77;34062:1;34055:88;34162:4;34159:1;34152:15;34186:4;34183:1;34176:15;34203:180;34251:77;34248:1;34241:88;34348:4;34345:1;34338:15;34372:4;34369:1;34362:15;34389:117;34498:1;34495;34488:12;34512:117;34621:1;34618;34611:12;34635:117;34744:1;34741;34734:12;34758:117;34867:1;34864;34857:12;34881:102;34922:6;34973:2;34969:7;34964:2;34957:5;34953:14;34949:28;34939:38;;34881:102;;;:::o;34989:166::-;35129:18;35125:1;35117:6;35113:14;35106:42;34989:166;:::o;35161:237::-;35301:34;35297:1;35289:6;35285:14;35278:58;35370:20;35365:2;35357:6;35353:15;35346:45;35161:237;:::o;35404:225::-;35544:34;35540:1;35532:6;35528:14;35521:58;35613:8;35608:2;35600:6;35596:15;35589:33;35404:225;:::o;35635:224::-;35775:34;35771:1;35763:6;35759:14;35752:58;35844:7;35839:2;35831:6;35827:15;35820:32;35635:224;:::o;35865:178::-;36005:30;36001:1;35993:6;35989:14;35982:54;35865:178;:::o;36049:225::-;36189:34;36185:1;36177:6;36173:14;36166:58;36258:8;36253:2;36245:6;36241:15;36234:33;36049:225;:::o;36280:223::-;36420:34;36416:1;36408:6;36404:14;36397:58;36489:6;36484:2;36476:6;36472:15;36465:31;36280:223;:::o;36509:175::-;36649:27;36645:1;36637:6;36633:14;36626:51;36509:175;:::o;36690:170::-;36830:22;36826:1;36818:6;36814:14;36807:46;36690:170;:::o;36866:224::-;37006:34;37002:1;36994:6;36990:14;36983:58;37075:7;37070:2;37062:6;37058:15;37051:32;36866:224;:::o;37096:228::-;37236:34;37232:1;37224:6;37220:14;37213:58;37305:11;37300:2;37292:6;37288:15;37281:36;37096:228;:::o;37330:223::-;37470:34;37466:1;37458:6;37454:14;37447:58;37539:6;37534:2;37526:6;37522:15;37515:31;37330:223;:::o;37559:249::-;37699:34;37695:1;37687:6;37683:14;37676:58;37768:32;37763:2;37755:6;37751:15;37744:57;37559:249;:::o;37814:182::-;37954:34;37950:1;37942:6;37938:14;37931:58;37814:182;:::o;38002:::-;38142:34;38138:1;38130:6;38126:14;38119:58;38002:182;:::o;38190:174::-;38330:26;38326:1;38318:6;38314:14;38307:50;38190:174;:::o;38370:220::-;38510:34;38506:1;38498:6;38494:14;38487:58;38579:3;38574:2;38566:6;38562:15;38555:28;38370:220;:::o;38596:169::-;38736:21;38732:1;38724:6;38720:14;38713:45;38596:169;:::o;38771:114::-;;:::o;38891:181::-;39031:33;39027:1;39019:6;39015:14;39008:57;38891:181;:::o;39078:233::-;39218:34;39214:1;39206:6;39202:14;39195:58;39287:16;39282:2;39274:6;39270:15;39263:41;39078:233;:::o;39317:122::-;39390:24;39408:5;39390:24;:::i;:::-;39383:5;39380:35;39370:63;;39429:1;39426;39419:12;39370:63;39317:122;:::o;39445:116::-;39515:21;39530:5;39515:21;:::i;:::-;39508:5;39505:32;39495:60;;39551:1;39548;39541:12;39495:60;39445:116;:::o;39567:120::-;39639:23;39656:5;39639:23;:::i;:::-;39632:5;39629:34;39619:62;;39677:1;39674;39667:12;39619:62;39567:120;:::o;39693:122::-;39766:24;39784:5;39766:24;:::i;:::-;39759:5;39756:35;39746:63;;39805:1;39802;39795:12;39746:63;39693:122;:::o

Swarm Source

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