ETH Price: $3,003.92 (+5.37%)
Gas: 2 Gwei

Token

Artistic Ape Club (AAC)
 

Overview

Max Total Supply

955 AAC

Holders

51

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
15 AAC
0x60251579f5d1be1483ecac3519c9f0515dd9e023
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:
AAC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-06
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

// 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: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

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

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

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

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

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

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: TKC_flat.sol



pragma solidity ^0.8.0;




contract AAC is ERC721A, Ownable {
  uint256 public constant MAX_SUPPLY = 8888;
  uint256 public constant MAX_MINTS = 100;
  uint256 public constant PUBLIC_PRICE = 0.029 ether;

  bool public isPublicSaleActive = false;

  address private mintPayees = 0x0c6dD9edd0D92c4Cfeed734eEedD6Bf8b7fAf489;

  string private _baseURIextended;

  constructor() ERC721A("Artistic Ape Club", "AAC") {}

  function mint(uint256 nMints) external payable {
    require(msg.sender == tx.origin, "Can't mint through another contract");
    require(isPublicSaleActive, "Public sale not active");
    require(nMints <= MAX_MINTS, "Exceeds max token purchase");
    require(totalSupply() + nMints <= MAX_SUPPLY, "Mint exceeds total supply");
    if(totalSupply()+nMints>665){
        if(totalSupply()>=665){
            require(PUBLIC_PRICE * nMints <= msg.value, "Sent incorrect ETH value");
        }
    }
    _safeMint(msg.sender, nMints);
  }

  function mints(address minter, uint256 nMints) external payable onlyOwner {
    _safeMint(minter, nMints);
  }

  function cost() public view returns (uint256){
      if(totalSupply()>665){
        return PUBLIC_PRICE;
      }else{
          return 0;
      } 
  }

  function presalecost() public view returns (uint256){
    return PUBLIC_PRICE;

  }

  function withdrawAll() external onlyOwner {
    require(address(this).balance > 0, "No funds to withdraw");
    uint256 contractBalance = address(this).balance;
    _withdraw(mintPayees, address(this).balance);
  }

  function setBaseURI(string calldata baseURI_) external onlyOwner {
    _baseURIextended = baseURI_;
  }

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

  function togglePublicSale() external onlyOwner {
    isPublicSaleActive = !isPublicSaleActive;
  }

  function _withdraw(address _address, uint256 _amount) private {
    (bool success, ) = _address.call{value: _amount}("");
    require(success, "Transfer failed.");
  }

  receive() external payable {}
}

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_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"uint256","name":"nMints","type":"uint256"}],"name":"mints","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":"presalecost","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":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600760146101000a81548160ff021916908315150217905550730c6dd9edd0d92c4cfeed734eeedd6bf8b7faf489600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008157600080fd5b506040518060400160405280601181526020017f41727469737469632041706520436c75620000000000000000000000000000008152506040518060400160405280600381526020017f414143000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200010692919062000216565b5080600290805190602001906200011f92919062000216565b50505062000142620001366200014860201b60201c565b6200015060201b60201c565b6200032b565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022490620002c6565b90600052602060002090601f01602090048101928262000248576000855562000294565b82601f106200026357805160ff191683800117855562000294565b8280016001018555821562000294579182015b828111156200029357825182559160200191906001019062000276565b5b509050620002a39190620002a7565b5090565b5b80821115620002c2576000816000905550600101620002a8565b5090565b60006002820490506001821680620002df57607f821691505b60208210811415620002f657620002f5620002fc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614262806200033b6000396000f3fe6080604052600436106101d15760003560e01c8063611f3f10116100f7578063a0712d6811610095578063cce132d111610064578063cce132d114610667578063e222c7f914610692578063e985e9c5146106a9578063f2fde38b146106e6576101d8565b8063a0712d68146105bc578063a22cb465146105d8578063b88d4fde14610601578063c87b56dd1461062a576101d8565b8063715018a6116100d1578063715018a614610538578063853828b61461054f5780638da5cb5b1461056657806395d89b4114610591576101d8565b8063611f3f10146104935780636352211e146104be57806370a08231146104fb576101d8565b80631e84c4131161016f57806342842e0e1161013e57806342842e0e146103d9578063430b21d6146104025780634f6ccce71461042d57806355f804b31461046a576101d8565b80631e84c4131461031d57806323b872dd146103485780632f745c591461037157806332cb6b0c146103ae576101d8565b8063095ea7b3116101ab578063095ea7b3146102825780630bedd3a7146102ab57806313faede6146102c757806318160ddd146102f2576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612d04565b61070f565b60405161021191906132f9565b60405180910390f35b34801561022657600080fd5b5061022f610859565b60405161023c9190613314565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612dab565b6108eb565b6040516102799190613292565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612cc4565b610970565b005b6102c560048036038101906102c09190612cc4565b610a89565b005b3480156102d357600080fd5b506102dc610b13565b6040516102e99190613676565b60405180910390f35b3480156102fe57600080fd5b50610307610b3d565b6040516103149190613676565b60405180910390f35b34801561032957600080fd5b50610332610b46565b60405161033f91906132f9565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190612bae565b610b59565b005b34801561037d57600080fd5b5061039860048036038101906103939190612cc4565b610b69565b6040516103a59190613676565b60405180910390f35b3480156103ba57600080fd5b506103c3610d5b565b6040516103d09190613676565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190612bae565b610d61565b005b34801561040e57600080fd5b50610417610d81565b6040516104249190613676565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190612dab565b610d90565b6040516104619190613676565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c9190612d5e565b610de3565b005b34801561049f57600080fd5b506104a8610e75565b6040516104b59190613676565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190612dab565b610e80565b6040516104f29190613292565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190612b41565b610e96565b60405161052f9190613676565b60405180910390f35b34801561054457600080fd5b5061054d610f7f565b005b34801561055b57600080fd5b50610564611007565b005b34801561057257600080fd5b5061057b6110fa565b6040516105889190613292565b60405180910390f35b34801561059d57600080fd5b506105a6611124565b6040516105b39190613314565b60405180910390f35b6105d660048036038101906105d19190612dab565b6111b6565b005b3480156105e457600080fd5b506105ff60048036038101906105fa9190612c84565b61139e565b005b34801561060d57600080fd5b5061062860048036038101906106239190612c01565b61151f565b005b34801561063657600080fd5b50610651600480360381019061064c9190612dab565b61157b565b60405161065e9190613314565b60405180910390f35b34801561067357600080fd5b5061067c611623565b6040516106899190613676565b60405180910390f35b34801561069e57600080fd5b506106a7611628565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190612b6e565b6116d0565b6040516106dd91906132f9565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190612b41565b611764565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107da57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085257506108518261185c565b5b9050919050565b60606001805461086890613900565b80601f016020809104026020016040519081016040528092919081815260200182805461089490613900565b80156108e15780601f106108b6576101008083540402835291602001916108e1565b820191906000526020600020905b8154815290600101906020018083116108c457829003601f168201915b5050505050905090565b60006108f6826118c6565b610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90613636565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097b82610e80565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390613556565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a0b6118d3565b73ffffffffffffffffffffffffffffffffffffffff161480610a3a5750610a3981610a346118d3565b6116d0565b5b610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7090613436565b60405180910390fd5b610a848383836118db565b505050565b610a916118d3565b73ffffffffffffffffffffffffffffffffffffffff16610aaf6110fa565b73ffffffffffffffffffffffffffffffffffffffff1614610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc906134d6565b60405180910390fd5b610b0f828261198d565b5050565b6000610299610b20610b3d565b1115610b355766670758aa7c80009050610b3a565b600090505b90565b60008054905090565b600760149054906101000a900460ff1681565b610b648383836119ab565b505050565b6000610b7483610e96565b8210610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90613336565b60405180910390fd5b6000610bbf610b3d565b905060008060005b83811015610d19576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cb957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d0b5786841415610d02578195505050505050610d55565b83806001019450505b508080600101915050610bc7565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c906135f6565b60405180910390fd5b92915050565b6122b881565b610d7c8383836040518060200160405280600081525061151f565b505050565b600066670758aa7c8000905090565b6000610d9a610b3d565b8210610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906133b6565b60405180910390fd5b819050919050565b610deb6118d3565b73ffffffffffffffffffffffffffffffffffffffff16610e096110fa565b73ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e56906134d6565b60405180910390fd5b818160099190610e70929190612935565b505050565b66670758aa7c800081565b6000610e8b82611eeb565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90613456565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f876118d3565b73ffffffffffffffffffffffffffffffffffffffff16610fa56110fa565b73ffffffffffffffffffffffffffffffffffffffff1614610ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff2906134d6565b60405180910390fd5b6110056000612085565b565b61100f6118d3565b73ffffffffffffffffffffffffffffffffffffffff1661102d6110fa565b73ffffffffffffffffffffffffffffffffffffffff1614611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906134d6565b60405180910390fd5b600047116110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90613416565b60405180910390fd5b60004790506110f7600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff164761214b565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461113390613900565b80601f016020809104026020016040519081016040528092919081815260200182805461115f90613900565b80156111ac5780601f10611181576101008083540402835291602001916111ac565b820191906000526020600020905b81548152906001019060200180831161118f57829003601f168201915b5050505050905090565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b90613656565b60405180910390fd5b600760149054906101000a900460ff16611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a906134b6565b60405180910390fd5b60648111156112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90613396565b60405180910390fd5b6122b8816112c3610b3d565b6112cd9190613735565b111561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590613476565b60405180910390fd5b6102998161131a610b3d565b6113249190613735565b111561139157610299611335610b3d565b1061139057348166670758aa7c800061134e91906137bc565b111561138f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611386906133f6565b60405180910390fd5b5b5b61139b338261198d565b50565b6113a66118d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b90613516565b60405180910390fd5b80600660006114216118d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ce6118d3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161151391906132f9565b60405180910390a35050565b61152a8484846119ab565b611536848484846121fc565b611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90613596565b60405180910390fd5b50505050565b6060611586826118c6565b6115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc906134f6565b60405180910390fd5b60006115cf612393565b90506000815114156115f0576040518060200160405280600081525061161b565b806115fa84612425565b60405160200161160b929190613259565b6040516020818303038152906040525b915050919050565b606481565b6116306118d3565b73ffffffffffffffffffffffffffffffffffffffff1661164e6110fa565b73ffffffffffffffffffffffffffffffffffffffff16146116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b906134d6565b60405180910390fd5b600760149054906101000a900460ff1615600760146101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61176c6118d3565b73ffffffffffffffffffffffffffffffffffffffff1661178a6110fa565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d7906134d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184790613356565b60405180910390fd5b61185981612085565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6119a7828260405180602001604052806000815250612586565b5050565b60006119b682611eeb565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119dd6118d3565b73ffffffffffffffffffffffffffffffffffffffff161480611a395750611a026118d3565b73ffffffffffffffffffffffffffffffffffffffff16611a21846108eb565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a555750611a548260000151611a4f6118d3565b6116d0565b5b905080611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e90613536565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0090613496565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b70906133d6565b60405180910390fd5b611b868585856001612598565b611b9660008484600001516118db565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e7b57611dda816118c6565b15611e7a5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ee4858585600161259e565b5050505050565b611ef36129bb565b611efc826118c6565b611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3290613376565b60405180910390fd5b60008290505b60008110612044576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612035578092505050612080565b50808060019003915050611f41565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207790613616565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121719061327d565b60006040518083038185875af1925050503d80600081146121ae576040519150601f19603f3d011682016040523d82523d6000602084013e6121b3565b606091505b50509050806121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90613576565b60405180910390fd5b505050565b600061221d8473ffffffffffffffffffffffffffffffffffffffff166125a4565b15612386578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122466118d3565b8786866040518563ffffffff1660e01b815260040161226894939291906132ad565b602060405180830381600087803b15801561228257600080fd5b505af19250505080156122b357506040513d601f19601f820116820180604052508101906122b09190612d31565b60015b612336573d80600081146122e3576040519150601f19603f3d011682016040523d82523d6000602084013e6122e8565b606091505b5060008151141561232e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232590613596565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061238b565b600190505b949350505050565b6060600980546123a290613900565b80601f01602080910402602001604051908101604052809291908181526020018280546123ce90613900565b801561241b5780601f106123f05761010080835404028352916020019161241b565b820191906000526020600020905b8154815290600101906020018083116123fe57829003601f168201915b5050505050905090565b6060600082141561246d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612581565b600082905060005b6000821461249f57808061248890613963565b915050600a82612498919061378b565b9150612475565b60008167ffffffffffffffff8111156124bb576124ba613a99565b5b6040519080825280601f01601f1916602001820160405280156124ed5781602001600182028036833780820191505090505b5090505b6000851461257a576001826125069190613816565b9150600a8561251591906139ac565b60306125219190613735565b60f81b81838151811061253757612536613a6a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612573919061378b565b94506124f1565b8093505050505b919050565b61259383838360016125b7565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561262d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612624906135b6565b60405180910390fd5b6000841415612671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612668906135d6565b60405180910390fd5b61267e6000868387612598565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561291857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612903576128c360008884886121fc565b612902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f990613596565b60405180910390fd5b5b8180600101925050808060010191505061284c565b50806000819055505061292e600086838761259e565b5050505050565b82805461294190613900565b90600052602060002090601f01602090048101928261296357600085556129aa565b82601f1061297c57803560ff19168380011785556129aa565b828001600101855582156129aa579182015b828111156129a957823582559160200191906001019061298e565b5b5090506129b791906129f5565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612a0e5760008160009055506001016129f6565b5090565b6000612a25612a20846136b6565b613691565b905082815260208101848484011115612a4157612a40613ad7565b5b612a4c8482856138be565b509392505050565b600081359050612a63816141d0565b92915050565b600081359050612a78816141e7565b92915050565b600081359050612a8d816141fe565b92915050565b600081519050612aa2816141fe565b92915050565b600082601f830112612abd57612abc613acd565b5b8135612acd848260208601612a12565b91505092915050565b60008083601f840112612aec57612aeb613acd565b5b8235905067ffffffffffffffff811115612b0957612b08613ac8565b5b602083019150836001820283011115612b2557612b24613ad2565b5b9250929050565b600081359050612b3b81614215565b92915050565b600060208284031215612b5757612b56613ae1565b5b6000612b6584828501612a54565b91505092915050565b60008060408385031215612b8557612b84613ae1565b5b6000612b9385828601612a54565b9250506020612ba485828601612a54565b9150509250929050565b600080600060608486031215612bc757612bc6613ae1565b5b6000612bd586828701612a54565b9350506020612be686828701612a54565b9250506040612bf786828701612b2c565b9150509250925092565b60008060008060808587031215612c1b57612c1a613ae1565b5b6000612c2987828801612a54565b9450506020612c3a87828801612a54565b9350506040612c4b87828801612b2c565b925050606085013567ffffffffffffffff811115612c6c57612c6b613adc565b5b612c7887828801612aa8565b91505092959194509250565b60008060408385031215612c9b57612c9a613ae1565b5b6000612ca985828601612a54565b9250506020612cba85828601612a69565b9150509250929050565b60008060408385031215612cdb57612cda613ae1565b5b6000612ce985828601612a54565b9250506020612cfa85828601612b2c565b9150509250929050565b600060208284031215612d1a57612d19613ae1565b5b6000612d2884828501612a7e565b91505092915050565b600060208284031215612d4757612d46613ae1565b5b6000612d5584828501612a93565b91505092915050565b60008060208385031215612d7557612d74613ae1565b5b600083013567ffffffffffffffff811115612d9357612d92613adc565b5b612d9f85828601612ad6565b92509250509250929050565b600060208284031215612dc157612dc0613ae1565b5b6000612dcf84828501612b2c565b91505092915050565b612de18161384a565b82525050565b612df08161385c565b82525050565b6000612e01826136e7565b612e0b81856136fd565b9350612e1b8185602086016138cd565b612e2481613ae6565b840191505092915050565b6000612e3a826136f2565b612e448185613719565b9350612e548185602086016138cd565b612e5d81613ae6565b840191505092915050565b6000612e73826136f2565b612e7d818561372a565b9350612e8d8185602086016138cd565b80840191505092915050565b6000612ea6602283613719565b9150612eb182613af7565b604082019050919050565b6000612ec9602683613719565b9150612ed482613b46565b604082019050919050565b6000612eec602a83613719565b9150612ef782613b95565b604082019050919050565b6000612f0f601a83613719565b9150612f1a82613be4565b602082019050919050565b6000612f32602383613719565b9150612f3d82613c0d565b604082019050919050565b6000612f55602583613719565b9150612f6082613c5c565b604082019050919050565b6000612f78601883613719565b9150612f8382613cab565b602082019050919050565b6000612f9b601483613719565b9150612fa682613cd4565b602082019050919050565b6000612fbe603983613719565b9150612fc982613cfd565b604082019050919050565b6000612fe1602b83613719565b9150612fec82613d4c565b604082019050919050565b6000613004601983613719565b915061300f82613d9b565b602082019050919050565b6000613027602683613719565b915061303282613dc4565b604082019050919050565b600061304a601683613719565b915061305582613e13565b602082019050919050565b600061306d602083613719565b915061307882613e3c565b602082019050919050565b6000613090602f83613719565b915061309b82613e65565b604082019050919050565b60006130b3601a83613719565b91506130be82613eb4565b602082019050919050565b60006130d6603283613719565b91506130e182613edd565b604082019050919050565b60006130f9602283613719565b915061310482613f2c565b604082019050919050565b600061311c60008361370e565b915061312782613f7b565b600082019050919050565b600061313f601083613719565b915061314a82613f7e565b602082019050919050565b6000613162603383613719565b915061316d82613fa7565b604082019050919050565b6000613185602183613719565b915061319082613ff6565b604082019050919050565b60006131a8602883613719565b91506131b382614045565b604082019050919050565b60006131cb602e83613719565b91506131d682614094565b604082019050919050565b60006131ee602f83613719565b91506131f9826140e3565b604082019050919050565b6000613211602d83613719565b915061321c82614132565b604082019050919050565b6000613234602383613719565b915061323f82614181565b604082019050919050565b613253816138b4565b82525050565b60006132658285612e68565b91506132718284612e68565b91508190509392505050565b60006132888261310f565b9150819050919050565b60006020820190506132a76000830184612dd8565b92915050565b60006080820190506132c26000830187612dd8565b6132cf6020830186612dd8565b6132dc604083018561324a565b81810360608301526132ee8184612df6565b905095945050505050565b600060208201905061330e6000830184612de7565b92915050565b6000602082019050818103600083015261332e8184612e2f565b905092915050565b6000602082019050818103600083015261334f81612e99565b9050919050565b6000602082019050818103600083015261336f81612ebc565b9050919050565b6000602082019050818103600083015261338f81612edf565b9050919050565b600060208201905081810360008301526133af81612f02565b9050919050565b600060208201905081810360008301526133cf81612f25565b9050919050565b600060208201905081810360008301526133ef81612f48565b9050919050565b6000602082019050818103600083015261340f81612f6b565b9050919050565b6000602082019050818103600083015261342f81612f8e565b9050919050565b6000602082019050818103600083015261344f81612fb1565b9050919050565b6000602082019050818103600083015261346f81612fd4565b9050919050565b6000602082019050818103600083015261348f81612ff7565b9050919050565b600060208201905081810360008301526134af8161301a565b9050919050565b600060208201905081810360008301526134cf8161303d565b9050919050565b600060208201905081810360008301526134ef81613060565b9050919050565b6000602082019050818103600083015261350f81613083565b9050919050565b6000602082019050818103600083015261352f816130a6565b9050919050565b6000602082019050818103600083015261354f816130c9565b9050919050565b6000602082019050818103600083015261356f816130ec565b9050919050565b6000602082019050818103600083015261358f81613132565b9050919050565b600060208201905081810360008301526135af81613155565b9050919050565b600060208201905081810360008301526135cf81613178565b9050919050565b600060208201905081810360008301526135ef8161319b565b9050919050565b6000602082019050818103600083015261360f816131be565b9050919050565b6000602082019050818103600083015261362f816131e1565b9050919050565b6000602082019050818103600083015261364f81613204565b9050919050565b6000602082019050818103600083015261366f81613227565b9050919050565b600060208201905061368b600083018461324a565b92915050565b600061369b6136ac565b90506136a78282613932565b919050565b6000604051905090565b600067ffffffffffffffff8211156136d1576136d0613a99565b5b6136da82613ae6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613740826138b4565b915061374b836138b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137805761377f6139dd565b5b828201905092915050565b6000613796826138b4565b91506137a1836138b4565b9250826137b1576137b0613a0c565b5b828204905092915050565b60006137c7826138b4565b91506137d2836138b4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561380b5761380a6139dd565b5b828202905092915050565b6000613821826138b4565b915061382c836138b4565b92508282101561383f5761383e6139dd565b5b828203905092915050565b600061385582613894565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138eb5780820151818401526020810190506138d0565b838111156138fa576000848401525b50505050565b6000600282049050600182168061391857607f821691505b6020821081141561392c5761392b613a3b565b5b50919050565b61393b82613ae6565b810181811067ffffffffffffffff8211171561395a57613959613a99565b5b80604052505050565b600061396e826138b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139a1576139a06139dd565b5b600182019050919050565b60006139b7826138b4565b91506139c2836138b4565b9250826139d2576139d1613a0c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820746f6b656e207075726368617365000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53656e7420696e636f7272656374204554482076616c75650000000000000000600082015250565b7f4e6f2066756e647320746f207769746864726177000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4d696e74206578636565647320746f74616c20737570706c7900000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206e6f742061637469766500000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f43616e2774206d696e74207468726f75676820616e6f7468657220636f6e747260008201527f6163740000000000000000000000000000000000000000000000000000000000602082015250565b6141d98161384a565b81146141e457600080fd5b50565b6141f08161385c565b81146141fb57600080fd5b50565b61420781613868565b811461421257600080fd5b50565b61421e816138b4565b811461422957600080fd5b5056fea2646970667358221220c4ec0aae41d48be2d7bcecc1088090bb771ae811b3ad08aecede5997cc74af6864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101d15760003560e01c8063611f3f10116100f7578063a0712d6811610095578063cce132d111610064578063cce132d114610667578063e222c7f914610692578063e985e9c5146106a9578063f2fde38b146106e6576101d8565b8063a0712d68146105bc578063a22cb465146105d8578063b88d4fde14610601578063c87b56dd1461062a576101d8565b8063715018a6116100d1578063715018a614610538578063853828b61461054f5780638da5cb5b1461056657806395d89b4114610591576101d8565b8063611f3f10146104935780636352211e146104be57806370a08231146104fb576101d8565b80631e84c4131161016f57806342842e0e1161013e57806342842e0e146103d9578063430b21d6146104025780634f6ccce71461042d57806355f804b31461046a576101d8565b80631e84c4131461031d57806323b872dd146103485780632f745c591461037157806332cb6b0c146103ae576101d8565b8063095ea7b3116101ab578063095ea7b3146102825780630bedd3a7146102ab57806313faede6146102c757806318160ddd146102f2576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612d04565b61070f565b60405161021191906132f9565b60405180910390f35b34801561022657600080fd5b5061022f610859565b60405161023c9190613314565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612dab565b6108eb565b6040516102799190613292565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612cc4565b610970565b005b6102c560048036038101906102c09190612cc4565b610a89565b005b3480156102d357600080fd5b506102dc610b13565b6040516102e99190613676565b60405180910390f35b3480156102fe57600080fd5b50610307610b3d565b6040516103149190613676565b60405180910390f35b34801561032957600080fd5b50610332610b46565b60405161033f91906132f9565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190612bae565b610b59565b005b34801561037d57600080fd5b5061039860048036038101906103939190612cc4565b610b69565b6040516103a59190613676565b60405180910390f35b3480156103ba57600080fd5b506103c3610d5b565b6040516103d09190613676565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190612bae565b610d61565b005b34801561040e57600080fd5b50610417610d81565b6040516104249190613676565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190612dab565b610d90565b6040516104619190613676565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c9190612d5e565b610de3565b005b34801561049f57600080fd5b506104a8610e75565b6040516104b59190613676565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190612dab565b610e80565b6040516104f29190613292565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190612b41565b610e96565b60405161052f9190613676565b60405180910390f35b34801561054457600080fd5b5061054d610f7f565b005b34801561055b57600080fd5b50610564611007565b005b34801561057257600080fd5b5061057b6110fa565b6040516105889190613292565b60405180910390f35b34801561059d57600080fd5b506105a6611124565b6040516105b39190613314565b60405180910390f35b6105d660048036038101906105d19190612dab565b6111b6565b005b3480156105e457600080fd5b506105ff60048036038101906105fa9190612c84565b61139e565b005b34801561060d57600080fd5b5061062860048036038101906106239190612c01565b61151f565b005b34801561063657600080fd5b50610651600480360381019061064c9190612dab565b61157b565b60405161065e9190613314565b60405180910390f35b34801561067357600080fd5b5061067c611623565b6040516106899190613676565b60405180910390f35b34801561069e57600080fd5b506106a7611628565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190612b6e565b6116d0565b6040516106dd91906132f9565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190612b41565b611764565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107da57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085257506108518261185c565b5b9050919050565b60606001805461086890613900565b80601f016020809104026020016040519081016040528092919081815260200182805461089490613900565b80156108e15780601f106108b6576101008083540402835291602001916108e1565b820191906000526020600020905b8154815290600101906020018083116108c457829003601f168201915b5050505050905090565b60006108f6826118c6565b610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90613636565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097b82610e80565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390613556565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a0b6118d3565b73ffffffffffffffffffffffffffffffffffffffff161480610a3a5750610a3981610a346118d3565b6116d0565b5b610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7090613436565b60405180910390fd5b610a848383836118db565b505050565b610a916118d3565b73ffffffffffffffffffffffffffffffffffffffff16610aaf6110fa565b73ffffffffffffffffffffffffffffffffffffffff1614610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc906134d6565b60405180910390fd5b610b0f828261198d565b5050565b6000610299610b20610b3d565b1115610b355766670758aa7c80009050610b3a565b600090505b90565b60008054905090565b600760149054906101000a900460ff1681565b610b648383836119ab565b505050565b6000610b7483610e96565b8210610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90613336565b60405180910390fd5b6000610bbf610b3d565b905060008060005b83811015610d19576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cb957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d0b5786841415610d02578195505050505050610d55565b83806001019450505b508080600101915050610bc7565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c906135f6565b60405180910390fd5b92915050565b6122b881565b610d7c8383836040518060200160405280600081525061151f565b505050565b600066670758aa7c8000905090565b6000610d9a610b3d565b8210610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906133b6565b60405180910390fd5b819050919050565b610deb6118d3565b73ffffffffffffffffffffffffffffffffffffffff16610e096110fa565b73ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e56906134d6565b60405180910390fd5b818160099190610e70929190612935565b505050565b66670758aa7c800081565b6000610e8b82611eeb565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90613456565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f876118d3565b73ffffffffffffffffffffffffffffffffffffffff16610fa56110fa565b73ffffffffffffffffffffffffffffffffffffffff1614610ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff2906134d6565b60405180910390fd5b6110056000612085565b565b61100f6118d3565b73ffffffffffffffffffffffffffffffffffffffff1661102d6110fa565b73ffffffffffffffffffffffffffffffffffffffff1614611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906134d6565b60405180910390fd5b600047116110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90613416565b60405180910390fd5b60004790506110f7600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff164761214b565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461113390613900565b80601f016020809104026020016040519081016040528092919081815260200182805461115f90613900565b80156111ac5780601f10611181576101008083540402835291602001916111ac565b820191906000526020600020905b81548152906001019060200180831161118f57829003601f168201915b5050505050905090565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b90613656565b60405180910390fd5b600760149054906101000a900460ff16611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a906134b6565b60405180910390fd5b60648111156112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90613396565b60405180910390fd5b6122b8816112c3610b3d565b6112cd9190613735565b111561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590613476565b60405180910390fd5b6102998161131a610b3d565b6113249190613735565b111561139157610299611335610b3d565b1061139057348166670758aa7c800061134e91906137bc565b111561138f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611386906133f6565b60405180910390fd5b5b5b61139b338261198d565b50565b6113a66118d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b90613516565b60405180910390fd5b80600660006114216118d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ce6118d3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161151391906132f9565b60405180910390a35050565b61152a8484846119ab565b611536848484846121fc565b611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90613596565b60405180910390fd5b50505050565b6060611586826118c6565b6115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc906134f6565b60405180910390fd5b60006115cf612393565b90506000815114156115f0576040518060200160405280600081525061161b565b806115fa84612425565b60405160200161160b929190613259565b6040516020818303038152906040525b915050919050565b606481565b6116306118d3565b73ffffffffffffffffffffffffffffffffffffffff1661164e6110fa565b73ffffffffffffffffffffffffffffffffffffffff16146116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b906134d6565b60405180910390fd5b600760149054906101000a900460ff1615600760146101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61176c6118d3565b73ffffffffffffffffffffffffffffffffffffffff1661178a6110fa565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d7906134d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184790613356565b60405180910390fd5b61185981612085565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6119a7828260405180602001604052806000815250612586565b5050565b60006119b682611eeb565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119dd6118d3565b73ffffffffffffffffffffffffffffffffffffffff161480611a395750611a026118d3565b73ffffffffffffffffffffffffffffffffffffffff16611a21846108eb565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a555750611a548260000151611a4f6118d3565b6116d0565b5b905080611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e90613536565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0090613496565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b70906133d6565b60405180910390fd5b611b868585856001612598565b611b9660008484600001516118db565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e7b57611dda816118c6565b15611e7a5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ee4858585600161259e565b5050505050565b611ef36129bb565b611efc826118c6565b611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3290613376565b60405180910390fd5b60008290505b60008110612044576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612035578092505050612080565b50808060019003915050611f41565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207790613616565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121719061327d565b60006040518083038185875af1925050503d80600081146121ae576040519150601f19603f3d011682016040523d82523d6000602084013e6121b3565b606091505b50509050806121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90613576565b60405180910390fd5b505050565b600061221d8473ffffffffffffffffffffffffffffffffffffffff166125a4565b15612386578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122466118d3565b8786866040518563ffffffff1660e01b815260040161226894939291906132ad565b602060405180830381600087803b15801561228257600080fd5b505af19250505080156122b357506040513d601f19601f820116820180604052508101906122b09190612d31565b60015b612336573d80600081146122e3576040519150601f19603f3d011682016040523d82523d6000602084013e6122e8565b606091505b5060008151141561232e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232590613596565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061238b565b600190505b949350505050565b6060600980546123a290613900565b80601f01602080910402602001604051908101604052809291908181526020018280546123ce90613900565b801561241b5780601f106123f05761010080835404028352916020019161241b565b820191906000526020600020905b8154815290600101906020018083116123fe57829003601f168201915b5050505050905090565b6060600082141561246d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612581565b600082905060005b6000821461249f57808061248890613963565b915050600a82612498919061378b565b9150612475565b60008167ffffffffffffffff8111156124bb576124ba613a99565b5b6040519080825280601f01601f1916602001820160405280156124ed5781602001600182028036833780820191505090505b5090505b6000851461257a576001826125069190613816565b9150600a8561251591906139ac565b60306125219190613735565b60f81b81838151811061253757612536613a6a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612573919061378b565b94506124f1565b8093505050505b919050565b61259383838360016125b7565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561262d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612624906135b6565b60405180910390fd5b6000841415612671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612668906135d6565b60405180910390fd5b61267e6000868387612598565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561291857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612903576128c360008884886121fc565b612902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f990613596565b60405180910390fd5b5b8180600101925050808060010191505061284c565b50806000819055505061292e600086838761259e565b5050505050565b82805461294190613900565b90600052602060002090601f01602090048101928261296357600085556129aa565b82601f1061297c57803560ff19168380011785556129aa565b828001600101855582156129aa579182015b828111156129a957823582559160200191906001019061298e565b5b5090506129b791906129f5565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612a0e5760008160009055506001016129f6565b5090565b6000612a25612a20846136b6565b613691565b905082815260208101848484011115612a4157612a40613ad7565b5b612a4c8482856138be565b509392505050565b600081359050612a63816141d0565b92915050565b600081359050612a78816141e7565b92915050565b600081359050612a8d816141fe565b92915050565b600081519050612aa2816141fe565b92915050565b600082601f830112612abd57612abc613acd565b5b8135612acd848260208601612a12565b91505092915050565b60008083601f840112612aec57612aeb613acd565b5b8235905067ffffffffffffffff811115612b0957612b08613ac8565b5b602083019150836001820283011115612b2557612b24613ad2565b5b9250929050565b600081359050612b3b81614215565b92915050565b600060208284031215612b5757612b56613ae1565b5b6000612b6584828501612a54565b91505092915050565b60008060408385031215612b8557612b84613ae1565b5b6000612b9385828601612a54565b9250506020612ba485828601612a54565b9150509250929050565b600080600060608486031215612bc757612bc6613ae1565b5b6000612bd586828701612a54565b9350506020612be686828701612a54565b9250506040612bf786828701612b2c565b9150509250925092565b60008060008060808587031215612c1b57612c1a613ae1565b5b6000612c2987828801612a54565b9450506020612c3a87828801612a54565b9350506040612c4b87828801612b2c565b925050606085013567ffffffffffffffff811115612c6c57612c6b613adc565b5b612c7887828801612aa8565b91505092959194509250565b60008060408385031215612c9b57612c9a613ae1565b5b6000612ca985828601612a54565b9250506020612cba85828601612a69565b9150509250929050565b60008060408385031215612cdb57612cda613ae1565b5b6000612ce985828601612a54565b9250506020612cfa85828601612b2c565b9150509250929050565b600060208284031215612d1a57612d19613ae1565b5b6000612d2884828501612a7e565b91505092915050565b600060208284031215612d4757612d46613ae1565b5b6000612d5584828501612a93565b91505092915050565b60008060208385031215612d7557612d74613ae1565b5b600083013567ffffffffffffffff811115612d9357612d92613adc565b5b612d9f85828601612ad6565b92509250509250929050565b600060208284031215612dc157612dc0613ae1565b5b6000612dcf84828501612b2c565b91505092915050565b612de18161384a565b82525050565b612df08161385c565b82525050565b6000612e01826136e7565b612e0b81856136fd565b9350612e1b8185602086016138cd565b612e2481613ae6565b840191505092915050565b6000612e3a826136f2565b612e448185613719565b9350612e548185602086016138cd565b612e5d81613ae6565b840191505092915050565b6000612e73826136f2565b612e7d818561372a565b9350612e8d8185602086016138cd565b80840191505092915050565b6000612ea6602283613719565b9150612eb182613af7565b604082019050919050565b6000612ec9602683613719565b9150612ed482613b46565b604082019050919050565b6000612eec602a83613719565b9150612ef782613b95565b604082019050919050565b6000612f0f601a83613719565b9150612f1a82613be4565b602082019050919050565b6000612f32602383613719565b9150612f3d82613c0d565b604082019050919050565b6000612f55602583613719565b9150612f6082613c5c565b604082019050919050565b6000612f78601883613719565b9150612f8382613cab565b602082019050919050565b6000612f9b601483613719565b9150612fa682613cd4565b602082019050919050565b6000612fbe603983613719565b9150612fc982613cfd565b604082019050919050565b6000612fe1602b83613719565b9150612fec82613d4c565b604082019050919050565b6000613004601983613719565b915061300f82613d9b565b602082019050919050565b6000613027602683613719565b915061303282613dc4565b604082019050919050565b600061304a601683613719565b915061305582613e13565b602082019050919050565b600061306d602083613719565b915061307882613e3c565b602082019050919050565b6000613090602f83613719565b915061309b82613e65565b604082019050919050565b60006130b3601a83613719565b91506130be82613eb4565b602082019050919050565b60006130d6603283613719565b91506130e182613edd565b604082019050919050565b60006130f9602283613719565b915061310482613f2c565b604082019050919050565b600061311c60008361370e565b915061312782613f7b565b600082019050919050565b600061313f601083613719565b915061314a82613f7e565b602082019050919050565b6000613162603383613719565b915061316d82613fa7565b604082019050919050565b6000613185602183613719565b915061319082613ff6565b604082019050919050565b60006131a8602883613719565b91506131b382614045565b604082019050919050565b60006131cb602e83613719565b91506131d682614094565b604082019050919050565b60006131ee602f83613719565b91506131f9826140e3565b604082019050919050565b6000613211602d83613719565b915061321c82614132565b604082019050919050565b6000613234602383613719565b915061323f82614181565b604082019050919050565b613253816138b4565b82525050565b60006132658285612e68565b91506132718284612e68565b91508190509392505050565b60006132888261310f565b9150819050919050565b60006020820190506132a76000830184612dd8565b92915050565b60006080820190506132c26000830187612dd8565b6132cf6020830186612dd8565b6132dc604083018561324a565b81810360608301526132ee8184612df6565b905095945050505050565b600060208201905061330e6000830184612de7565b92915050565b6000602082019050818103600083015261332e8184612e2f565b905092915050565b6000602082019050818103600083015261334f81612e99565b9050919050565b6000602082019050818103600083015261336f81612ebc565b9050919050565b6000602082019050818103600083015261338f81612edf565b9050919050565b600060208201905081810360008301526133af81612f02565b9050919050565b600060208201905081810360008301526133cf81612f25565b9050919050565b600060208201905081810360008301526133ef81612f48565b9050919050565b6000602082019050818103600083015261340f81612f6b565b9050919050565b6000602082019050818103600083015261342f81612f8e565b9050919050565b6000602082019050818103600083015261344f81612fb1565b9050919050565b6000602082019050818103600083015261346f81612fd4565b9050919050565b6000602082019050818103600083015261348f81612ff7565b9050919050565b600060208201905081810360008301526134af8161301a565b9050919050565b600060208201905081810360008301526134cf8161303d565b9050919050565b600060208201905081810360008301526134ef81613060565b9050919050565b6000602082019050818103600083015261350f81613083565b9050919050565b6000602082019050818103600083015261352f816130a6565b9050919050565b6000602082019050818103600083015261354f816130c9565b9050919050565b6000602082019050818103600083015261356f816130ec565b9050919050565b6000602082019050818103600083015261358f81613132565b9050919050565b600060208201905081810360008301526135af81613155565b9050919050565b600060208201905081810360008301526135cf81613178565b9050919050565b600060208201905081810360008301526135ef8161319b565b9050919050565b6000602082019050818103600083015261360f816131be565b9050919050565b6000602082019050818103600083015261362f816131e1565b9050919050565b6000602082019050818103600083015261364f81613204565b9050919050565b6000602082019050818103600083015261366f81613227565b9050919050565b600060208201905061368b600083018461324a565b92915050565b600061369b6136ac565b90506136a78282613932565b919050565b6000604051905090565b600067ffffffffffffffff8211156136d1576136d0613a99565b5b6136da82613ae6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613740826138b4565b915061374b836138b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137805761377f6139dd565b5b828201905092915050565b6000613796826138b4565b91506137a1836138b4565b9250826137b1576137b0613a0c565b5b828204905092915050565b60006137c7826138b4565b91506137d2836138b4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561380b5761380a6139dd565b5b828202905092915050565b6000613821826138b4565b915061382c836138b4565b92508282101561383f5761383e6139dd565b5b828203905092915050565b600061385582613894565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138eb5780820151818401526020810190506138d0565b838111156138fa576000848401525b50505050565b6000600282049050600182168061391857607f821691505b6020821081141561392c5761392b613a3b565b5b50919050565b61393b82613ae6565b810181811067ffffffffffffffff8211171561395a57613959613a99565b5b80604052505050565b600061396e826138b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139a1576139a06139dd565b5b600182019050919050565b60006139b7826138b4565b91506139c2836138b4565b9250826139d2576139d1613a0c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820746f6b656e207075726368617365000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53656e7420696e636f7272656374204554482076616c75650000000000000000600082015250565b7f4e6f2066756e647320746f207769746864726177000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4d696e74206578636565647320746f74616c20737570706c7900000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206e6f742061637469766500000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f43616e2774206d696e74207468726f75676820616e6f7468657220636f6e747260008201527f6163740000000000000000000000000000000000000000000000000000000000602082015250565b6141d98161384a565b81146141e457600080fd5b50565b6141f08161385c565b81146141fb57600080fd5b50565b61420781613868565b811461421257600080fd5b50565b61421e816138b4565b811461422957600080fd5b5056fea2646970667358221220c4ec0aae41d48be2d7bcecc1088090bb771ae811b3ad08aecede5997cc74af6864736f6c63430008070033

Deployed Bytecode Sourcemap

42420:2093:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26704:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28590:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30152:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29673:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43375:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43493:156;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24961:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42605:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31028:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25625:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42458:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31261:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43655:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25138:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43971:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42548:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28399:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27140:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41541:103;;;;;;;;;;;;;:::i;:::-;;43747:218;;;;;;;;;;;;;:::i;:::-;;40890:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28759:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42824:545;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30438:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31509:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28934:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42504:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44199:100;;;;;;;;;;;;;:::i;:::-;;30797:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41799:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26704:372;26806:4;26858:25;26843:40;;;:11;:40;;;;:105;;;;26915:33;26900:48;;;:11;:48;;;;26843:105;:172;;;;26980:35;26965:50;;;:11;:50;;;;26843:172;:225;;;;27032:36;27056:11;27032:23;:36::i;:::-;26843:225;26823:245;;26704:372;;;:::o;28590:100::-;28644:13;28677:5;28670:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28590:100;:::o;30152:214::-;30220:7;30248:16;30256:7;30248;:16::i;:::-;30240:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30334:15;:24;30350:7;30334:24;;;;;;;;;;;;;;;;;;;;;30327:31;;30152:214;;;:::o;29673:413::-;29746:13;29762:24;29778:7;29762:15;:24::i;:::-;29746:40;;29811:5;29805:11;;:2;:11;;;;29797:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29906:5;29890:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29915:37;29932:5;29939:12;:10;:12::i;:::-;29915:16;:37::i;:::-;29890:62;29868:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;30050:28;30059:2;30063:7;30072:5;30050:8;:28::i;:::-;29735:351;29673:413;;:::o;43375:112::-;41121:12;:10;:12::i;:::-;41110:23;;:7;:5;:7::i;:::-;:23;;;41102:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43456:25:::1;43466:6;43474;43456:9;:25::i;:::-;43375:112:::0;;:::o;43493:156::-;43530:7;43564:3;43550:13;:11;:13::i;:::-;:17;43547:96;;;42587:11;43579:19;;;;43547:96;43632:1;43625:8;;43493:156;;:::o;24961:100::-;25014:7;25041:12;;25034:19;;24961:100;:::o;42605:38::-;;;;;;;;;;;;;:::o;31028:162::-;31154:28;31164:4;31170:2;31174:7;31154:9;:28::i;:::-;31028:162;;;:::o;25625:1007::-;25714:7;25750:16;25760:5;25750:9;:16::i;:::-;25742:5;:24;25734:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25816:22;25841:13;:11;:13::i;:::-;25816:38;;25865:19;25895:25;26084:9;26079:466;26099:14;26095:1;:18;26079:466;;;26139:31;26173:11;:14;26185:1;26173:14;;;;;;;;;;;26139:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26236:1;26210:28;;:9;:14;;;:28;;;26206:111;;26283:9;:14;;;26263:34;;26206:111;26360:5;26339:26;;:17;:26;;;26335:195;;;26409:5;26394:11;:20;26390:85;;;26450:1;26443:8;;;;;;;;;26390:85;26497:13;;;;;;;26335:195;26120:425;26115:3;;;;;;;26079:466;;;;26568:56;;;;;;;;;;:::i;:::-;;;;;;;;25625:1007;;;;;:::o;42458:41::-;42495:4;42458:41;:::o;31261:177::-;31391:39;31408:4;31414:2;31418:7;31391:39;;;;;;;;;;;;:16;:39::i;:::-;31261:177;;;:::o;43655:86::-;43699:7;42587:11;43714:19;;43655:86;:::o;25138:187::-;25205:7;25241:13;:11;:13::i;:::-;25233:5;:21;25225:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;25312:5;25305:12;;25138:187;;;:::o;43971:105::-;41121:12;:10;:12::i;:::-;41110:23;;:7;:5;:7::i;:::-;:23;;;41102:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44062:8:::1;;44043:16;:27;;;;;;;:::i;:::-;;43971:105:::0;;:::o;42548:50::-;42587:11;42548:50;:::o;28399:124::-;28463:7;28490:20;28502:7;28490:11;:20::i;:::-;:25;;;28483:32;;28399:124;;;:::o;27140:221::-;27204:7;27249:1;27232:19;;:5;:19;;;;27224:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;27325:12;:19;27338:5;27325:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27317:36;;27310:43;;27140:221;;;:::o;41541:103::-;41121:12;:10;:12::i;:::-;41110:23;;:7;:5;:7::i;:::-;:23;;;41102:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41606:30:::1;41633:1;41606:18;:30::i;:::-;41541:103::o:0;43747:218::-;41121:12;:10;:12::i;:::-;41110:23;;:7;:5;:7::i;:::-;:23;;;41102:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43828:1:::1;43804:21;:25;43796:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43861:23;43887:21;43861:47;;43915:44;43925:10;;;;;;;;;;;43937:21;43915:9;:44::i;:::-;43789:176;43747:218::o:0;40890:87::-;40936:7;40963:6;;;;;;;;;;;40956:13;;40890:87;:::o;28759:104::-;28815:13;28848:7;28841:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28759:104;:::o;42824:545::-;42900:9;42886:23;;:10;:23;;;42878:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;42964:18;;;;;;;;;;;42956:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;42540:3;43024:6;:19;;43016:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;42495:4;43105:6;43089:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;43081:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;43186:3;43179:6;43165:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:24;43162:166;;;43219:3;43204:13;:11;:13::i;:::-;:18;43201:120;;43271:9;43261:6;42587:11;43246:21;;;;:::i;:::-;:34;;43238:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43201:120;43162:166;43334:29;43344:10;43356:6;43334:9;:29::i;:::-;42824:545;:::o;30438:288::-;30545:12;:10;:12::i;:::-;30533:24;;:8;:24;;;;30525:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;30646:8;30601:18;:32;30620:12;:10;:12::i;:::-;30601:32;;;;;;;;;;;;;;;:42;30634:8;30601:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30699:8;30670:48;;30685:12;:10;:12::i;:::-;30670:48;;;30709:8;30670:48;;;;;;:::i;:::-;;;;;;;;30438:288;;:::o;31509:355::-;31668:28;31678:4;31684:2;31688:7;31668:9;:28::i;:::-;31729:48;31752:4;31758:2;31762:7;31771:5;31729:22;:48::i;:::-;31707:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;31509:355;;;;:::o;28934:335::-;29007:13;29041:16;29049:7;29041;:16::i;:::-;29033:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;29122:21;29146:10;:8;:10::i;:::-;29122:34;;29199:1;29180:7;29174:21;:26;;:87;;;;;;;;;;;;;;;;;29227:7;29236:18;:7;:16;:18::i;:::-;29210:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29174:87;29167:94;;;28934:335;;;:::o;42504:39::-;42540:3;42504:39;:::o;44199:100::-;41121:12;:10;:12::i;:::-;41110:23;;:7;:5;:7::i;:::-;:23;;;41102:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44275:18:::1;;;;;;;;;;;44274:19;44253:18;;:40;;;;;;;;;;;;;;;;;;44199:100::o:0;30797:164::-;30894:4;30918:18;:25;30937:5;30918:25;;;;;;;;;;;;;;;:35;30944:8;30918:35;;;;;;;;;;;;;;;;;;;;;;;;;30911:42;;30797:164;;;;:::o;41799:201::-;41121:12;:10;:12::i;:::-;41110:23;;:7;:5;:7::i;:::-;:23;;;41102:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41908:1:::1;41888:22;;:8;:22;;;;41880:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41964:28;41983:8;41964:18;:28::i;:::-;41799:201:::0;:::o;13127:157::-;13212:4;13251:25;13236:40;;;:11;:40;;;;13229:47;;13127:157;;;:::o;32119:111::-;32176:4;32210:12;;32200:7;:22;32193:29;;32119:111;;;:::o;22886:98::-;22939:7;22966:10;22959:17;;22886:98;:::o;37039:196::-;37181:2;37154:15;:24;37170:7;37154:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37219:7;37215:2;37199:28;;37208:5;37199:28;;;;;;;;;;;;37039:196;;;:::o;32238:104::-;32307:27;32317:2;32321:8;32307:27;;;;;;;;;;;;:9;:27::i;:::-;32238:104;;:::o;34919:2002::-;35034:35;35072:20;35084:7;35072:11;:20::i;:::-;35034:58;;35105:22;35147:13;:18;;;35131:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;35206:12;:10;:12::i;:::-;35182:36;;:20;35194:7;35182:11;:20::i;:::-;:36;;;35131:87;:154;;;;35235:50;35252:13;:18;;;35272:12;:10;:12::i;:::-;35235:16;:50::i;:::-;35131:154;35105:181;;35307:17;35299:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;35422:4;35400:26;;:13;:18;;;:26;;;35392:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;35502:1;35488:16;;:2;:16;;;;35480:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35559:43;35581:4;35587:2;35591:7;35600:1;35559:21;:43::i;:::-;35667:49;35684:1;35688:7;35697:13;:18;;;35667:8;:49::i;:::-;36042:1;36012:12;:18;36025:4;36012:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36086:1;36058:12;:16;36071:2;36058:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36132:2;36104:11;:20;36116:7;36104:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;36194:15;36149:11;:20;36161:7;36149:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;36462:19;36494:1;36484:7;:11;36462:33;;36555:1;36514:43;;:11;:24;36526:11;36514:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36510:295;;;36582:20;36590:11;36582:7;:20::i;:::-;36578:212;;;36659:13;:18;;;36627:11;:24;36639:11;36627:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;36742:13;:28;;;36700:11;:24;36712:11;36700:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;36578:212;36510:295;35987:829;36852:7;36848:2;36833:27;;36842:4;36833:27;;;;;;;;;;;;36871:42;36892:4;36898:2;36902:7;36911:1;36871:20;:42::i;:::-;35023:1898;;34919:2002;;;:::o;27800:537::-;27861:21;;:::i;:::-;27903:16;27911:7;27903;:16::i;:::-;27895:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28009:12;28024:7;28009:22;;28004:245;28041:1;28033:4;:9;28004:245;;28071:31;28105:11;:17;28117:4;28105:17;;;;;;;;;;;28071:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28171:1;28145:28;;:9;:14;;;:28;;;28141:93;;28205:9;28198:16;;;;;;28141:93;28052:197;28044:6;;;;;;;;28004:245;;;;28272:57;;;;;;;;;;:::i;:::-;;;;;;;;27800:537;;;;:::o;42160:191::-;42234:16;42253:6;;;;;;;;;;;42234:25;;42279:8;42270:6;;:17;;;;;;;;;;;;;;;;;;42334:8;42303:40;;42324:8;42303:40;;;;;;;;;;;;42223:128;42160:191;:::o;44305:170::-;44375:12;44393:8;:13;;44414:7;44393:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44374:52;;;44441:7;44433:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;44367:108;44305:170;;:::o;37800:804::-;37955:4;37976:15;:2;:13;;;:15::i;:::-;37972:625;;;38028:2;38012:36;;;38049:12;:10;:12::i;:::-;38063:4;38069:7;38078:5;38012:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38008:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38275:1;38258:6;:13;:18;38254:273;;;38301:61;;;;;;;;;;:::i;:::-;;;;;;;;38254:273;38477:6;38471:13;38462:6;38458:2;38454:15;38447:38;38008:534;38145:45;;;38135:55;;;:6;:55;;;;38128:62;;;;;37972:625;38581:4;38574:11;;37800:804;;;;;;;:::o;44082:111::-;44142:13;44171:16;44164:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44082:111;:::o;404:723::-;460:13;690:1;681:5;:10;677:53;;;708:10;;;;;;;;;;;;;;;;;;;;;677:53;740:12;755:5;740:20;;771:14;796:78;811:1;803:4;:9;796:78;;829:8;;;;;:::i;:::-;;;;860:2;852:10;;;;;:::i;:::-;;;796:78;;;884:19;916:6;906:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;884:39;;934:154;950:1;941:5;:10;934:154;;978:1;968:11;;;;;:::i;:::-;;;1045:2;1037:5;:10;;;;:::i;:::-;1024:2;:24;;;;:::i;:::-;1011:39;;994:6;1001;994:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1074:2;1065:11;;;;;:::i;:::-;;;934:154;;;1112:6;1098:21;;;;;404:723;;;;:::o;32705:163::-;32828:32;32834:2;32838:8;32848:5;32855:4;32828:5;:32::i;:::-;32705:163;;;:::o;39092:159::-;;;;;:::o;39663:158::-;;;;;:::o;2983:387::-;3043:4;3251:12;3318:7;3306:20;3298:28;;3361:1;3354:4;:8;3347:15;;;2983:387;;;:::o;33127:1538::-;33266:20;33289:12;;33266:35;;33334:1;33320:16;;:2;:16;;;;33312:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33405:1;33393:8;:13;;33385:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;33464:61;33494:1;33498:2;33502:12;33516:8;33464:21;:61::i;:::-;33839:8;33803:12;:16;33816:2;33803:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33904:8;33863:12;:16;33876:2;33863:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33963:2;33930:11;:25;33942:12;33930:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34030:15;33980:11;:25;33992:12;33980:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;34063:20;34086:12;34063:35;;34120:9;34115:415;34135:8;34131:1;:12;34115:415;;;34199:12;34195:2;34174:38;;34191:1;34174:38;;;;;;;;;;;;34235:4;34231:249;;;34298:59;34329:1;34333:2;34337:12;34351:5;34298:22;:59::i;:::-;34264:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;34231:249;34500:14;;;;;;;34145:3;;;;;;;34115:415;;;;34561:12;34546;:27;;;;33778:807;34597:60;34626:1;34630:2;34634:12;34648:8;34597:20;:60::i;:::-;33255:1410;33127:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:::-;11077:3;11098:67;11162:2;11157:3;11098:67;:::i;:::-;11091:74;;11174:93;11263:3;11174:93;:::i;:::-;11292:2;11287:3;11283:12;11276:19;;10935:366;;;:::o;11307:::-;11449:3;11470:67;11534:2;11529:3;11470:67;:::i;:::-;11463:74;;11546:93;11635:3;11546:93;:::i;:::-;11664:2;11659:3;11655:12;11648:19;;11307:366;;;:::o;11679:::-;11821:3;11842:67;11906:2;11901:3;11842:67;:::i;:::-;11835:74;;11918:93;12007:3;11918:93;:::i;:::-;12036:2;12031:3;12027:12;12020:19;;11679:366;;;:::o;12051:::-;12193:3;12214:67;12278:2;12273:3;12214:67;:::i;:::-;12207:74;;12290:93;12379:3;12290:93;:::i;:::-;12408:2;12403:3;12399:12;12392:19;;12051:366;;;:::o;12423:::-;12565:3;12586:67;12650:2;12645:3;12586:67;:::i;:::-;12579:74;;12662:93;12751:3;12662:93;:::i;:::-;12780:2;12775:3;12771:12;12764:19;;12423:366;;;:::o;12795:::-;12937:3;12958:67;13022:2;13017:3;12958:67;:::i;:::-;12951:74;;13034:93;13123:3;13034:93;:::i;:::-;13152:2;13147:3;13143:12;13136:19;;12795:366;;;:::o;13167:::-;13309:3;13330:67;13394:2;13389:3;13330:67;:::i;:::-;13323:74;;13406:93;13495:3;13406:93;:::i;:::-;13524:2;13519:3;13515:12;13508:19;;13167:366;;;:::o;13539:::-;13681:3;13702:67;13766:2;13761:3;13702:67;:::i;:::-;13695:74;;13778:93;13867:3;13778:93;:::i;:::-;13896:2;13891:3;13887:12;13880:19;;13539:366;;;:::o;13911:::-;14053:3;14074:67;14138:2;14133:3;14074:67;:::i;:::-;14067:74;;14150:93;14239:3;14150:93;:::i;:::-;14268:2;14263:3;14259:12;14252:19;;13911:366;;;:::o;14283:::-;14425:3;14446:67;14510:2;14505:3;14446:67;:::i;:::-;14439:74;;14522:93;14611:3;14522:93;:::i;:::-;14640:2;14635:3;14631:12;14624:19;;14283:366;;;:::o;14655:::-;14797:3;14818:67;14882:2;14877:3;14818:67;:::i;:::-;14811:74;;14894:93;14983:3;14894:93;:::i;:::-;15012:2;15007:3;15003:12;14996:19;;14655:366;;;:::o;15027:398::-;15186:3;15207:83;15288:1;15283:3;15207:83;:::i;:::-;15200:90;;15299:93;15388:3;15299:93;:::i;:::-;15417:1;15412:3;15408:11;15401:18;;15027:398;;;:::o;15431:366::-;15573:3;15594:67;15658:2;15653:3;15594:67;:::i;:::-;15587:74;;15670:93;15759:3;15670:93;:::i;:::-;15788:2;15783:3;15779:12;15772:19;;15431:366;;;:::o;15803:::-;15945:3;15966:67;16030:2;16025:3;15966:67;:::i;:::-;15959:74;;16042:93;16131:3;16042:93;:::i;:::-;16160:2;16155:3;16151:12;16144:19;;15803:366;;;:::o;16175:::-;16317:3;16338:67;16402:2;16397:3;16338:67;:::i;:::-;16331:74;;16414:93;16503:3;16414:93;:::i;:::-;16532:2;16527:3;16523:12;16516:19;;16175:366;;;:::o;16547:::-;16689:3;16710:67;16774:2;16769:3;16710:67;:::i;:::-;16703:74;;16786:93;16875:3;16786:93;:::i;:::-;16904:2;16899:3;16895:12;16888:19;;16547:366;;;:::o;16919:::-;17061:3;17082:67;17146:2;17141:3;17082:67;:::i;:::-;17075:74;;17158:93;17247:3;17158:93;:::i;:::-;17276:2;17271:3;17267:12;17260:19;;16919:366;;;:::o;17291:::-;17433:3;17454:67;17518:2;17513:3;17454:67;:::i;:::-;17447:74;;17530:93;17619:3;17530:93;:::i;:::-;17648:2;17643:3;17639:12;17632:19;;17291:366;;;:::o;17663:::-;17805:3;17826:67;17890:2;17885:3;17826:67;:::i;:::-;17819:74;;17902:93;17991:3;17902:93;:::i;:::-;18020:2;18015:3;18011:12;18004:19;;17663:366;;;:::o;18035:::-;18177:3;18198:67;18262:2;18257:3;18198:67;:::i;:::-;18191:74;;18274:93;18363:3;18274:93;:::i;:::-;18392:2;18387:3;18383:12;18376:19;;18035:366;;;:::o;18407:118::-;18494:24;18512:5;18494:24;:::i;:::-;18489:3;18482:37;18407:118;;:::o;18531:435::-;18711:3;18733:95;18824:3;18815:6;18733:95;:::i;:::-;18726:102;;18845:95;18936:3;18927:6;18845:95;:::i;:::-;18838:102;;18957:3;18950:10;;18531:435;;;;;:::o;18972:379::-;19156:3;19178:147;19321:3;19178:147;:::i;:::-;19171:154;;19342:3;19335:10;;18972:379;;;:::o;19357:222::-;19450:4;19488:2;19477:9;19473:18;19465:26;;19501:71;19569:1;19558:9;19554:17;19545:6;19501:71;:::i;:::-;19357:222;;;;:::o;19585:640::-;19780:4;19818:3;19807:9;19803:19;19795:27;;19832:71;19900:1;19889:9;19885:17;19876:6;19832:71;:::i;:::-;19913:72;19981:2;19970:9;19966:18;19957:6;19913:72;:::i;:::-;19995;20063:2;20052:9;20048:18;20039:6;19995:72;:::i;:::-;20114:9;20108:4;20104:20;20099:2;20088:9;20084:18;20077:48;20142:76;20213:4;20204:6;20142:76;:::i;:::-;20134:84;;19585:640;;;;;;;:::o;20231:210::-;20318:4;20356:2;20345:9;20341:18;20333:26;;20369:65;20431:1;20420:9;20416:17;20407:6;20369:65;:::i;:::-;20231:210;;;;:::o;20447:313::-;20560:4;20598:2;20587:9;20583:18;20575:26;;20647:9;20641:4;20637:20;20633:1;20622:9;20618:17;20611:47;20675:78;20748:4;20739:6;20675:78;:::i;:::-;20667:86;;20447:313;;;;:::o;20766:419::-;20932:4;20970:2;20959:9;20955:18;20947:26;;21019:9;21013:4;21009:20;21005:1;20994:9;20990:17;20983:47;21047:131;21173:4;21047:131;:::i;:::-;21039:139;;20766:419;;;:::o;21191:::-;21357:4;21395:2;21384:9;21380:18;21372:26;;21444:9;21438:4;21434:20;21430:1;21419:9;21415:17;21408:47;21472:131;21598:4;21472:131;:::i;:::-;21464:139;;21191:419;;;:::o;21616:::-;21782:4;21820:2;21809:9;21805:18;21797:26;;21869:9;21863:4;21859:20;21855:1;21844:9;21840:17;21833:47;21897:131;22023:4;21897:131;:::i;:::-;21889:139;;21616:419;;;:::o;22041:::-;22207:4;22245:2;22234:9;22230:18;22222:26;;22294:9;22288:4;22284:20;22280:1;22269:9;22265:17;22258:47;22322:131;22448:4;22322:131;:::i;:::-;22314:139;;22041:419;;;:::o;22466:::-;22632:4;22670:2;22659:9;22655:18;22647:26;;22719:9;22713:4;22709:20;22705:1;22694:9;22690:17;22683:47;22747:131;22873:4;22747:131;:::i;:::-;22739:139;;22466:419;;;:::o;22891:::-;23057:4;23095:2;23084:9;23080:18;23072:26;;23144:9;23138:4;23134:20;23130:1;23119:9;23115:17;23108:47;23172:131;23298:4;23172:131;:::i;:::-;23164:139;;22891:419;;;:::o;23316:::-;23482:4;23520:2;23509:9;23505:18;23497:26;;23569:9;23563:4;23559:20;23555:1;23544:9;23540:17;23533:47;23597:131;23723:4;23597:131;:::i;:::-;23589:139;;23316:419;;;:::o;23741:::-;23907:4;23945:2;23934:9;23930:18;23922:26;;23994:9;23988:4;23984:20;23980:1;23969:9;23965:17;23958:47;24022:131;24148:4;24022:131;:::i;:::-;24014:139;;23741:419;;;:::o;24166:::-;24332:4;24370:2;24359:9;24355:18;24347:26;;24419:9;24413:4;24409:20;24405:1;24394:9;24390:17;24383:47;24447:131;24573:4;24447:131;:::i;:::-;24439:139;;24166:419;;;:::o;24591:::-;24757:4;24795:2;24784:9;24780:18;24772:26;;24844:9;24838:4;24834:20;24830:1;24819:9;24815:17;24808:47;24872:131;24998:4;24872:131;:::i;:::-;24864:139;;24591:419;;;:::o;25016:::-;25182:4;25220:2;25209:9;25205:18;25197:26;;25269:9;25263:4;25259:20;25255:1;25244:9;25240:17;25233:47;25297:131;25423:4;25297:131;:::i;:::-;25289:139;;25016:419;;;:::o;25441:::-;25607:4;25645:2;25634:9;25630:18;25622:26;;25694:9;25688:4;25684:20;25680:1;25669:9;25665:17;25658:47;25722:131;25848:4;25722:131;:::i;:::-;25714:139;;25441:419;;;:::o;25866:::-;26032:4;26070:2;26059:9;26055:18;26047:26;;26119:9;26113:4;26109:20;26105:1;26094:9;26090:17;26083:47;26147:131;26273:4;26147:131;:::i;:::-;26139:139;;25866:419;;;:::o;26291:::-;26457:4;26495:2;26484:9;26480:18;26472:26;;26544:9;26538:4;26534:20;26530:1;26519:9;26515:17;26508:47;26572:131;26698:4;26572:131;:::i;:::-;26564:139;;26291:419;;;:::o;26716:::-;26882:4;26920:2;26909:9;26905:18;26897:26;;26969:9;26963:4;26959:20;26955:1;26944:9;26940:17;26933:47;26997:131;27123:4;26997:131;:::i;:::-;26989:139;;26716:419;;;:::o;27141:::-;27307:4;27345:2;27334:9;27330:18;27322:26;;27394:9;27388:4;27384:20;27380:1;27369:9;27365:17;27358:47;27422:131;27548:4;27422:131;:::i;:::-;27414:139;;27141:419;;;:::o;27566:::-;27732:4;27770:2;27759:9;27755:18;27747:26;;27819:9;27813:4;27809:20;27805:1;27794:9;27790:17;27783:47;27847:131;27973:4;27847:131;:::i;:::-;27839:139;;27566:419;;;:::o;27991:::-;28157:4;28195:2;28184:9;28180:18;28172:26;;28244:9;28238:4;28234:20;28230:1;28219:9;28215:17;28208:47;28272:131;28398:4;28272:131;:::i;:::-;28264:139;;27991:419;;;:::o;28416:::-;28582:4;28620:2;28609:9;28605:18;28597:26;;28669:9;28663:4;28659:20;28655:1;28644:9;28640:17;28633:47;28697:131;28823:4;28697:131;:::i;:::-;28689:139;;28416:419;;;:::o;28841:::-;29007:4;29045:2;29034:9;29030:18;29022:26;;29094:9;29088:4;29084:20;29080:1;29069:9;29065:17;29058:47;29122:131;29248:4;29122:131;:::i;:::-;29114:139;;28841:419;;;:::o;29266:::-;29432:4;29470:2;29459:9;29455:18;29447:26;;29519:9;29513:4;29509:20;29505:1;29494:9;29490:17;29483:47;29547:131;29673:4;29547:131;:::i;:::-;29539:139;;29266:419;;;:::o;29691:::-;29857:4;29895:2;29884:9;29880:18;29872:26;;29944:9;29938:4;29934:20;29930:1;29919:9;29915:17;29908:47;29972:131;30098:4;29972:131;:::i;:::-;29964:139;;29691:419;;;:::o;30116:::-;30282:4;30320:2;30309:9;30305:18;30297:26;;30369:9;30363:4;30359:20;30355:1;30344:9;30340:17;30333:47;30397:131;30523:4;30397:131;:::i;:::-;30389:139;;30116:419;;;:::o;30541:::-;30707:4;30745:2;30734:9;30730:18;30722:26;;30794:9;30788:4;30784:20;30780:1;30769:9;30765:17;30758:47;30822:131;30948:4;30822:131;:::i;:::-;30814:139;;30541:419;;;:::o;30966:::-;31132:4;31170:2;31159:9;31155:18;31147:26;;31219:9;31213:4;31209:20;31205:1;31194:9;31190:17;31183:47;31247:131;31373:4;31247:131;:::i;:::-;31239:139;;30966:419;;;:::o;31391:::-;31557:4;31595:2;31584:9;31580:18;31572:26;;31644:9;31638:4;31634:20;31630:1;31619:9;31615:17;31608:47;31672:131;31798:4;31672:131;:::i;:::-;31664:139;;31391:419;;;:::o;31816:222::-;31909:4;31947:2;31936:9;31932:18;31924:26;;31960:71;32028:1;32017:9;32013:17;32004:6;31960:71;:::i;:::-;31816:222;;;;:::o;32044:129::-;32078:6;32105:20;;:::i;:::-;32095:30;;32134:33;32162:4;32154:6;32134:33;:::i;:::-;32044:129;;;:::o;32179:75::-;32212:6;32245:2;32239:9;32229:19;;32179:75;:::o;32260:307::-;32321:4;32411:18;32403:6;32400:30;32397:56;;;32433:18;;:::i;:::-;32397:56;32471:29;32493:6;32471:29;:::i;:::-;32463:37;;32555:4;32549;32545:15;32537:23;;32260:307;;;:::o;32573:98::-;32624:6;32658:5;32652:12;32642:22;;32573:98;;;:::o;32677:99::-;32729:6;32763:5;32757:12;32747:22;;32677:99;;;:::o;32782:168::-;32865:11;32899:6;32894:3;32887:19;32939:4;32934:3;32930:14;32915:29;;32782:168;;;;:::o;32956:147::-;33057:11;33094:3;33079:18;;32956:147;;;;:::o;33109:169::-;33193:11;33227:6;33222:3;33215:19;33267:4;33262:3;33258:14;33243:29;;33109:169;;;;:::o;33284:148::-;33386:11;33423:3;33408:18;;33284:148;;;;:::o;33438:305::-;33478:3;33497:20;33515:1;33497:20;:::i;:::-;33492:25;;33531:20;33549:1;33531:20;:::i;:::-;33526:25;;33685:1;33617:66;33613:74;33610:1;33607:81;33604:107;;;33691:18;;:::i;:::-;33604:107;33735:1;33732;33728:9;33721:16;;33438:305;;;;:::o;33749:185::-;33789:1;33806:20;33824:1;33806:20;:::i;:::-;33801:25;;33840:20;33858:1;33840:20;:::i;:::-;33835:25;;33879:1;33869:35;;33884:18;;:::i;:::-;33869:35;33926:1;33923;33919:9;33914:14;;33749:185;;;;:::o;33940:348::-;33980:7;34003:20;34021:1;34003:20;:::i;:::-;33998:25;;34037:20;34055:1;34037:20;:::i;:::-;34032:25;;34225:1;34157:66;34153:74;34150:1;34147:81;34142:1;34135:9;34128:17;34124:105;34121:131;;;34232:18;;:::i;:::-;34121:131;34280:1;34277;34273:9;34262:20;;33940:348;;;;:::o;34294:191::-;34334:4;34354:20;34372:1;34354:20;:::i;:::-;34349:25;;34388:20;34406:1;34388:20;:::i;:::-;34383:25;;34427:1;34424;34421:8;34418:34;;;34432:18;;:::i;:::-;34418:34;34477:1;34474;34470:9;34462:17;;34294:191;;;;:::o;34491:96::-;34528:7;34557:24;34575:5;34557:24;:::i;:::-;34546:35;;34491:96;;;:::o;34593:90::-;34627:7;34670:5;34663:13;34656:21;34645:32;;34593:90;;;:::o;34689:149::-;34725:7;34765:66;34758:5;34754:78;34743:89;;34689:149;;;:::o;34844:126::-;34881:7;34921:42;34914:5;34910:54;34899:65;;34844:126;;;:::o;34976:77::-;35013:7;35042:5;35031:16;;34976:77;;;:::o;35059:154::-;35143:6;35138:3;35133;35120:30;35205:1;35196:6;35191:3;35187:16;35180:27;35059:154;;;:::o;35219:307::-;35287:1;35297:113;35311:6;35308:1;35305:13;35297:113;;;35396:1;35391:3;35387:11;35381:18;35377:1;35372:3;35368:11;35361:39;35333:2;35330:1;35326:10;35321:15;;35297:113;;;35428:6;35425:1;35422:13;35419:101;;;35508:1;35499:6;35494:3;35490:16;35483:27;35419:101;35268:258;35219:307;;;:::o;35532:320::-;35576:6;35613:1;35607:4;35603:12;35593:22;;35660:1;35654:4;35650:12;35681:18;35671:81;;35737:4;35729:6;35725:17;35715:27;;35671:81;35799:2;35791:6;35788:14;35768:18;35765:38;35762:84;;;35818:18;;:::i;:::-;35762:84;35583:269;35532:320;;;:::o;35858:281::-;35941:27;35963:4;35941:27;:::i;:::-;35933:6;35929:40;36071:6;36059:10;36056:22;36035:18;36023:10;36020:34;36017:62;36014:88;;;36082:18;;:::i;:::-;36014:88;36122:10;36118:2;36111:22;35901:238;35858:281;;:::o;36145:233::-;36184:3;36207:24;36225:5;36207:24;:::i;:::-;36198:33;;36253:66;36246:5;36243:77;36240:103;;;36323:18;;:::i;:::-;36240:103;36370:1;36363:5;36359:13;36352:20;;36145:233;;;:::o;36384:176::-;36416:1;36433:20;36451:1;36433:20;:::i;:::-;36428:25;;36467:20;36485:1;36467:20;:::i;:::-;36462:25;;36506:1;36496:35;;36511:18;;:::i;:::-;36496:35;36552:1;36549;36545:9;36540:14;;36384:176;;;;:::o;36566:180::-;36614:77;36611:1;36604:88;36711:4;36708:1;36701:15;36735:4;36732:1;36725:15;36752:180;36800:77;36797:1;36790:88;36897:4;36894:1;36887:15;36921:4;36918:1;36911:15;36938:180;36986:77;36983:1;36976:88;37083:4;37080:1;37073:15;37107:4;37104:1;37097:15;37124:180;37172:77;37169:1;37162:88;37269:4;37266:1;37259:15;37293:4;37290:1;37283:15;37310:180;37358:77;37355:1;37348:88;37455:4;37452:1;37445:15;37479:4;37476:1;37469:15;37496:117;37605:1;37602;37595:12;37619:117;37728:1;37725;37718:12;37742:117;37851:1;37848;37841:12;37865:117;37974:1;37971;37964:12;37988:117;38097:1;38094;38087:12;38111:117;38220:1;38217;38210:12;38234:102;38275:6;38326:2;38322:7;38317:2;38310:5;38306:14;38302:28;38292:38;;38234:102;;;:::o;38342:221::-;38482:34;38478:1;38470:6;38466:14;38459:58;38551:4;38546:2;38538:6;38534:15;38527:29;38342:221;:::o;38569:225::-;38709:34;38705:1;38697:6;38693:14;38686:58;38778:8;38773:2;38765:6;38761:15;38754:33;38569:225;:::o;38800:229::-;38940:34;38936:1;38928:6;38924:14;38917:58;39009:12;39004:2;38996:6;38992:15;38985:37;38800:229;:::o;39035:176::-;39175:28;39171:1;39163:6;39159:14;39152:52;39035:176;:::o;39217:222::-;39357:34;39353:1;39345:6;39341:14;39334:58;39426:5;39421:2;39413:6;39409:15;39402:30;39217:222;:::o;39445:224::-;39585:34;39581:1;39573:6;39569:14;39562:58;39654:7;39649:2;39641:6;39637:15;39630:32;39445:224;:::o;39675:174::-;39815:26;39811:1;39803:6;39799:14;39792:50;39675:174;:::o;39855:170::-;39995:22;39991:1;39983:6;39979:14;39972:46;39855:170;:::o;40031:244::-;40171:34;40167:1;40159:6;40155:14;40148:58;40240:27;40235:2;40227:6;40223:15;40216:52;40031:244;:::o;40281:230::-;40421:34;40417:1;40409:6;40405:14;40398:58;40490:13;40485:2;40477:6;40473:15;40466:38;40281:230;:::o;40517:175::-;40657:27;40653:1;40645:6;40641:14;40634:51;40517:175;:::o;40698:225::-;40838:34;40834:1;40826:6;40822:14;40815:58;40907:8;40902:2;40894:6;40890:15;40883:33;40698:225;:::o;40929:172::-;41069:24;41065:1;41057:6;41053:14;41046:48;40929:172;:::o;41107:182::-;41247:34;41243:1;41235:6;41231:14;41224:58;41107:182;:::o;41295:234::-;41435:34;41431:1;41423:6;41419:14;41412:58;41504:17;41499:2;41491:6;41487:15;41480:42;41295:234;:::o;41535:176::-;41675:28;41671:1;41663:6;41659:14;41652:52;41535:176;:::o;41717:237::-;41857:34;41853:1;41845:6;41841:14;41834:58;41926:20;41921:2;41913:6;41909:15;41902:45;41717:237;:::o;41960:221::-;42100:34;42096:1;42088:6;42084:14;42077:58;42169:4;42164:2;42156:6;42152:15;42145:29;41960:221;:::o;42187:114::-;;:::o;42307:166::-;42447:18;42443:1;42435:6;42431:14;42424:42;42307:166;:::o;42479:238::-;42619:34;42615:1;42607:6;42603:14;42596:58;42688:21;42683:2;42675:6;42671:15;42664:46;42479:238;:::o;42723:220::-;42863:34;42859:1;42851:6;42847:14;42840:58;42932:3;42927:2;42919:6;42915:15;42908:28;42723:220;:::o;42949:227::-;43089:34;43085:1;43077:6;43073:14;43066:58;43158:10;43153:2;43145:6;43141:15;43134:35;42949:227;:::o;43182:233::-;43322:34;43318:1;43310:6;43306:14;43299:58;43391:16;43386:2;43378:6;43374:15;43367:41;43182:233;:::o;43421:234::-;43561:34;43557:1;43549:6;43545:14;43538:58;43630:17;43625:2;43617:6;43613:15;43606:42;43421:234;:::o;43661:232::-;43801:34;43797:1;43789:6;43785:14;43778:58;43870:15;43865:2;43857:6;43853:15;43846:40;43661:232;:::o;43899:222::-;44039:34;44035:1;44027:6;44023:14;44016:58;44108:5;44103:2;44095:6;44091:15;44084:30;43899:222;:::o;44127:122::-;44200:24;44218:5;44200:24;:::i;:::-;44193:5;44190:35;44180:63;;44239:1;44236;44229:12;44180:63;44127:122;:::o;44255:116::-;44325:21;44340:5;44325:21;:::i;:::-;44318:5;44315:32;44305:60;;44361:1;44358;44351:12;44305:60;44255:116;:::o;44377:120::-;44449:23;44466:5;44449:23;:::i;:::-;44442:5;44439:34;44429:62;;44487:1;44484;44477:12;44429:62;44377:120;:::o;44503:122::-;44576:24;44594:5;44576:24;:::i;:::-;44569:5;44566:35;44556:63;;44615:1;44612;44605:12;44556:63;44503:122;:::o

Swarm Source

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