Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
818 degendobermans
Holders
208
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 degendobermansLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DegenDobermans
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-05 */ // Degen Dobermans NFT collection // Website: https://degen-dobermans.com/ // Twitter: https://twitter.com/DegenDobermans // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // 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/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/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; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/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/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (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/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: contracts/TwistedToonz.sol // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "ERC721A: number minted query for the zero address"); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public 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 DegenDobermans is ERC721A, Ownable, ReentrancyGuard { string public baseURI; string public baseExtension = ".json"; uint public price = 0.003 ether; uint public maxPerTx = 4; uint public totalFree = 2800; uint public maxSupply = 6000; bool public mintEnabled; constructor() ERC721A("degen dobermans", "degendobermans"){ } function mint(uint256 amount) external payable { uint cost = price; if(totalSupply() + amount < totalFree + 1) { cost = 0; } require(mintEnabled, "Minting is not live yet, hold on degen"); require(totalSupply() + amount < maxSupply + 1,"No more dobermans"); require(msg.value == amount * cost,"Please send the exact amount"); require(amount < maxPerTx + 1, "Max per TX reached"); _safeMint(msg.sender, amount); } function ownerBatchMint(uint256 amount) external onlyOwner { require(totalSupply() + amount < maxSupply + 1,"too many!"); _safeMint(msg.sender, amount); } function toggleMinting() external onlyOwner { mintEnabled = !mintEnabled; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), baseExtension ) ) : ""; } function setPrice(uint256 price_) external onlyOwner { price = price_; } function setTotalFree(uint256 totalFree_) external onlyOwner { totalFree = totalFree_; } function setMaxPerTx(uint256 maxPerTx_) external onlyOwner { maxPerTx = maxPerTx_; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"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":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005192919062000218565b50660aa87bee538000600b556004600c55610af0600d55611770600e553480156200007b57600080fd5b506040518060400160405280600f81526020017f646567656e20646f6265726d616e7300000000000000000000000000000000008152506040518060400160405280600e81526020017f646567656e646f6265726d616e7300000000000000000000000000000000000081525081600190805190602001906200010092919062000218565b5080600290805190602001906200011992919062000218565b5050506200013c620001306200014a60201b60201c565b6200015260201b60201c565b60016008819055506200032d565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022690620002c8565b90600052602060002090601f0160209004810192826200024a576000855562000296565b82601f106200026557805160ff191683800117855562000296565b8280016001018555821562000296579182015b828111156200029557825182559160200191906001019062000278565b5b509050620002a59190620002a9565b5090565b5b80821115620002c4576000816000905550600101620002aa565b5090565b60006002820490506001821680620002e157607f821691505b60208210811415620002f857620002f7620002fe565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614764806200033d6000396000f3fe6080604052600436106102045760003560e01c80637d55094d11610118578063c6682862116100a0578063d5abeb011161006f578063d5abeb0114610732578063dc33e6811461075d578063e985e9c51461079a578063f2fde38b146107d7578063f968adbe1461080057610204565b8063c668286214610676578063c6f6f216146106a1578063c87b56dd146106ca578063d12397301461070757610204565b806395d89b41116100e757806395d89b41146105b2578063a035b1fe146105dd578063a0712d6814610608578063a22cb46514610624578063b88d4fde1461064d57610204565b80637d55094d1461051e5780638da5cb5b146105355780638db89f071461056057806391b7f5ed1461058957610204565b80633ccfd60b1161019b578063563aaf111161016a578063563aaf11146104395780636352211e146104625780636c0360eb1461049f57806370a08231146104ca578063715018a61461050757610204565b80633ccfd60b1461039357806342842e0e146103aa5780634f6ccce7146103d357806355f804b31461041057610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632f745c591461032b578063333e44e61461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906130f9565b61082b565b60405161023d919061379d565b60405180910390f35b34801561025257600080fd5b5061025b610975565b60405161026891906137b8565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906131a0565b610a07565b6040516102a59190613736565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906130b9565b610a8c565b005b3480156102e357600080fd5b506102ec610ba5565b6040516102f99190613b3a565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612fa3565b610bae565b005b34801561033757600080fd5b50610352600480360381019061034d91906130b9565b610bbe565b60405161035f9190613b3a565b60405180910390f35b34801561037457600080fd5b5061037d610db0565b60405161038a9190613b3a565b60405180910390f35b34801561039f57600080fd5b506103a8610db6565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190612fa3565b610f37565b005b3480156103df57600080fd5b506103fa60048036038101906103f591906131a0565b610f57565b6040516104079190613b3a565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613153565b610faa565b005b34801561044557600080fd5b50610460600480360381019061045b91906131a0565b61103c565b005b34801561046e57600080fd5b50610489600480360381019061048491906131a0565b6110c2565b6040516104969190613736565b60405180910390f35b3480156104ab57600080fd5b506104b46110d8565b6040516104c191906137b8565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190612f36565b611166565b6040516104fe9190613b3a565b60405180910390f35b34801561051357600080fd5b5061051c61124f565b005b34801561052a57600080fd5b506105336112d7565b005b34801561054157600080fd5b5061054a61137f565b6040516105579190613736565b60405180910390f35b34801561056c57600080fd5b50610587600480360381019061058291906131a0565b6113a9565b005b34801561059557600080fd5b506105b060048036038101906105ab91906131a0565b611494565b005b3480156105be57600080fd5b506105c761151a565b6040516105d491906137b8565b60405180910390f35b3480156105e957600080fd5b506105f26115ac565b6040516105ff9190613b3a565b60405180910390f35b610622600480360381019061061d91906131a0565b6115b2565b005b34801561063057600080fd5b5061064b60048036038101906106469190613079565b611742565b005b34801561065957600080fd5b50610674600480360381019061066f9190612ff6565b6118c3565b005b34801561068257600080fd5b5061068b61191f565b60405161069891906137b8565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c391906131a0565b6119ad565b005b3480156106d657600080fd5b506106f160048036038101906106ec91906131a0565b611a33565b6040516106fe91906137b8565b60405180910390f35b34801561071357600080fd5b5061071c611ade565b604051610729919061379d565b60405180910390f35b34801561073e57600080fd5b50610747611af1565b6040516107549190613b3a565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190612f36565b611af7565b6040516107919190613b3a565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190612f63565b611b09565b6040516107ce919061379d565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190612f36565b611b9d565b005b34801561080c57600080fd5b50610815611c95565b6040516108229190613b3a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096e575061096d82611c9b565b5b9050919050565b60606001805461098490613dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546109b090613dd9565b80156109fd5780601f106109d2576101008083540402835291602001916109fd565b820191906000526020600020905b8154815290600101906020018083116109e057829003601f168201915b5050505050905090565b6000610a1282611d05565b610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890613b1a565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a97826110c2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff906139ba565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b27611d12565b73ffffffffffffffffffffffffffffffffffffffff161480610b565750610b5581610b50611d12565b611b09565b5b610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c906138ba565b60405180910390fd5b610ba0838383611d1a565b505050565b60008054905090565b610bb9838383611dcc565b505050565b6000610bc983611166565b8210610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c01906137da565b60405180910390fd5b6000610c14610ba5565b905060008060005b83811015610d6e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d0e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d605786841415610d57578195505050505050610daa565b83806001019450505b508080600101915050610c1c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190613aba565b60405180910390fd5b92915050565b600d5481565b610dbe611d12565b73ffffffffffffffffffffffffffffffffffffffff16610ddc61137f565b73ffffffffffffffffffffffffffffffffffffffff1614610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e299061393a565b60405180910390fd5b60026008541415610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f90613ada565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610ea690613721565b60006040518083038185875af1925050503d8060008114610ee3576040519150601f19603f3d011682016040523d82523d6000602084013e610ee8565b606091505b5050905080610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f23906139da565b60405180910390fd5b506001600881905550565b610f52838383604051806020016040528060008152506118c3565b505050565b6000610f61610ba5565b8210610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f999061383a565b60405180910390fd5b819050919050565b610fb2611d12565b73ffffffffffffffffffffffffffffffffffffffff16610fd061137f565b73ffffffffffffffffffffffffffffffffffffffff1614611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d9061393a565b60405180910390fd5b818160099190611037929190612d2a565b505050565b611044611d12565b73ffffffffffffffffffffffffffffffffffffffff1661106261137f565b73ffffffffffffffffffffffffffffffffffffffff16146110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af9061393a565b60405180910390fd5b80600d8190555050565b60006110cd8261230c565b600001519050919050565b600980546110e590613dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461111190613dd9565b801561115e5780601f106111335761010080835404028352916020019161115e565b820191906000526020600020905b81548152906001019060200180831161114157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce906138da565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611257611d12565b73ffffffffffffffffffffffffffffffffffffffff1661127561137f565b73ffffffffffffffffffffffffffffffffffffffff16146112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c29061393a565b60405180910390fd5b6112d560006124a6565b565b6112df611d12565b73ffffffffffffffffffffffffffffffffffffffff166112fd61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a9061393a565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113b1611d12565b73ffffffffffffffffffffffffffffffffffffffff166113cf61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c9061393a565b60405180910390fd5b6001600e546114349190613c0e565b8161143d610ba5565b6114479190613c0e565b10611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e9061389a565b60405180910390fd5b611491338261256c565b50565b61149c611d12565b73ffffffffffffffffffffffffffffffffffffffff166114ba61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611510576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115079061393a565b60405180910390fd5b80600b8190555050565b60606002805461152990613dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461155590613dd9565b80156115a25780601f10611577576101008083540402835291602001916115a2565b820191906000526020600020905b81548152906001019060200180831161158557829003601f168201915b5050505050905090565b600b5481565b6000600b5490506001600d546115c89190613c0e565b826115d1610ba5565b6115db9190613c0e565b10156115e657600090505b600f60009054906101000a900460ff16611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90613a7a565b60405180910390fd5b6001600e546116449190613c0e565b8261164d610ba5565b6116579190613c0e565b10611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90613a1a565b60405180910390fd5b80826116a39190613c95565b34146116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db9061399a565b60405180910390fd5b6001600c546116f39190613c0e565b8210611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90613a3a565b60405180910390fd5b61173e338361256c565b5050565b61174a611d12565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af9061395a565b60405180910390fd5b80600660006117c5611d12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611872611d12565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118b7919061379d565b60405180910390a35050565b6118ce848484611dcc565b6118da8484848461258a565b611919576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611910906139fa565b60405180910390fd5b50505050565b600a805461192c90613dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461195890613dd9565b80156119a55780601f1061197a576101008083540402835291602001916119a5565b820191906000526020600020905b81548152906001019060200180831161198857829003601f168201915b505050505081565b6119b5611d12565b73ffffffffffffffffffffffffffffffffffffffff166119d361137f565b73ffffffffffffffffffffffffffffffffffffffff1614611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a209061393a565b60405180910390fd5b80600c8190555050565b6060611a3e82611d05565b611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a74906138fa565b60405180910390fd5b600060098054611a8c90613dd9565b905011611aa85760405180602001604052806000815250611ad7565b6009611ab383612721565b600a604051602001611ac7939291906136f0565b6040516020818303038152906040525b9050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000611b0282612882565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ba5611d12565b73ffffffffffffffffffffffffffffffffffffffff16611bc361137f565b73ffffffffffffffffffffffffffffffffffffffff1614611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c109061393a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c80906137fa565b60405180910390fd5b611c92816124a6565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611dd78261230c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dfe611d12565b73ffffffffffffffffffffffffffffffffffffffff161480611e5a5750611e23611d12565b73ffffffffffffffffffffffffffffffffffffffff16611e4284610a07565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e765750611e758260000151611e70611d12565b611b09565b5b905080611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf9061397a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f219061391a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f919061385a565b60405180910390fd5b611fa7858585600161296b565b611fb76000848460000151611d1a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561229c576121fb81611d05565b1561229b5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123058585856001612971565b5050505050565b612314612db0565b61231d82611d05565b61235c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123539061381a565b60405180910390fd5b60008290505b60008110612465576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124565780925050506124a1565b50808060019003915050612362565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249890613afa565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612586828260405180602001604052806000815250612977565b5050565b60006125ab8473ffffffffffffffffffffffffffffffffffffffff16612989565b15612714578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125d4611d12565b8786866040518563ffffffff1660e01b81526004016125f69493929190613751565b602060405180830381600087803b15801561261057600080fd5b505af192505050801561264157506040513d601f19601f8201168201806040525081019061263e9190613126565b60015b6126c4573d8060008114612671576040519150601f19603f3d011682016040523d82523d6000602084013e612676565b606091505b506000815114156126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b3906139fa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612719565b600190505b949350505050565b60606000821415612769576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061287d565b600082905060005b6000821461279b57808061278490613e3c565b915050600a826127949190613c64565b9150612771565b60008167ffffffffffffffff8111156127b7576127b6613f72565b5b6040519080825280601f01601f1916602001820160405280156127e95781602001600182028036833780820191505090505b5090505b60008514612876576001826128029190613cef565b9150600a856128119190613e85565b603061281d9190613c0e565b60f81b81838151811061283357612832613f43565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561286f9190613c64565b94506127ed565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ea9061387a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b61298483838360016129ac565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1990613a5a565b60405180910390fd5b6000841415612a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5d90613a9a565b60405180910390fd5b612a73600086838761296b565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612d0d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612cf857612cb8600088848861258a565b612cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cee906139fa565b60405180910390fd5b5b81806001019250508080600101915050612c41565b508060008190555050612d236000868387612971565b5050505050565b828054612d3690613dd9565b90600052602060002090601f016020900481019282612d585760008555612d9f565b82601f10612d7157803560ff1916838001178555612d9f565b82800160010185558215612d9f579182015b82811115612d9e578235825591602001919060010190612d83565b5b509050612dac9190612dea565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e03576000816000905550600101612deb565b5090565b6000612e1a612e1584613b7a565b613b55565b905082815260208101848484011115612e3657612e35613fb0565b5b612e41848285613d97565b509392505050565b600081359050612e58816146d2565b92915050565b600081359050612e6d816146e9565b92915050565b600081359050612e8281614700565b92915050565b600081519050612e9781614700565b92915050565b600082601f830112612eb257612eb1613fa6565b5b8135612ec2848260208601612e07565b91505092915050565b60008083601f840112612ee157612ee0613fa6565b5b8235905067ffffffffffffffff811115612efe57612efd613fa1565b5b602083019150836001820283011115612f1a57612f19613fab565b5b9250929050565b600081359050612f3081614717565b92915050565b600060208284031215612f4c57612f4b613fba565b5b6000612f5a84828501612e49565b91505092915050565b60008060408385031215612f7a57612f79613fba565b5b6000612f8885828601612e49565b9250506020612f9985828601612e49565b9150509250929050565b600080600060608486031215612fbc57612fbb613fba565b5b6000612fca86828701612e49565b9350506020612fdb86828701612e49565b9250506040612fec86828701612f21565b9150509250925092565b600080600080608085870312156130105761300f613fba565b5b600061301e87828801612e49565b945050602061302f87828801612e49565b935050604061304087828801612f21565b925050606085013567ffffffffffffffff81111561306157613060613fb5565b5b61306d87828801612e9d565b91505092959194509250565b600080604083850312156130905761308f613fba565b5b600061309e85828601612e49565b92505060206130af85828601612e5e565b9150509250929050565b600080604083850312156130d0576130cf613fba565b5b60006130de85828601612e49565b92505060206130ef85828601612f21565b9150509250929050565b60006020828403121561310f5761310e613fba565b5b600061311d84828501612e73565b91505092915050565b60006020828403121561313c5761313b613fba565b5b600061314a84828501612e88565b91505092915050565b6000806020838503121561316a57613169613fba565b5b600083013567ffffffffffffffff81111561318857613187613fb5565b5b61319485828601612ecb565b92509250509250929050565b6000602082840312156131b6576131b5613fba565b5b60006131c484828501612f21565b91505092915050565b6131d681613d23565b82525050565b6131e581613d35565b82525050565b60006131f682613bc0565b6132008185613bd6565b9350613210818560208601613da6565b61321981613fbf565b840191505092915050565b600061322f82613bcb565b6132398185613bf2565b9350613249818560208601613da6565b61325281613fbf565b840191505092915050565b600061326882613bcb565b6132728185613c03565b9350613282818560208601613da6565b80840191505092915050565b6000815461329b81613dd9565b6132a58186613c03565b945060018216600081146132c057600181146132d157613304565b60ff19831686528186019350613304565b6132da85613bab565b60005b838110156132fc578154818901526001820191506020810190506132dd565b838801955050505b50505092915050565b600061331a602283613bf2565b915061332582613fd0565b604082019050919050565b600061333d602683613bf2565b91506133488261401f565b604082019050919050565b6000613360602a83613bf2565b915061336b8261406e565b604082019050919050565b6000613383602383613bf2565b915061338e826140bd565b604082019050919050565b60006133a6602583613bf2565b91506133b18261410c565b604082019050919050565b60006133c9603183613bf2565b91506133d48261415b565b604082019050919050565b60006133ec600983613bf2565b91506133f7826141aa565b602082019050919050565b600061340f603983613bf2565b915061341a826141d3565b604082019050919050565b6000613432602b83613bf2565b915061343d82614222565b604082019050919050565b6000613455601583613bf2565b915061346082614271565b602082019050919050565b6000613478602683613bf2565b91506134838261429a565b604082019050919050565b600061349b602083613bf2565b91506134a6826142e9565b602082019050919050565b60006134be601a83613bf2565b91506134c982614312565b602082019050919050565b60006134e1603283613bf2565b91506134ec8261433b565b604082019050919050565b6000613504601c83613bf2565b915061350f8261438a565b602082019050919050565b6000613527602283613bf2565b9150613532826143b3565b604082019050919050565b600061354a600083613be7565b915061355582614402565b600082019050919050565b600061356d601083613bf2565b915061357882614405565b602082019050919050565b6000613590603383613bf2565b915061359b8261442e565b604082019050919050565b60006135b3601183613bf2565b91506135be8261447d565b602082019050919050565b60006135d6601283613bf2565b91506135e1826144a6565b602082019050919050565b60006135f9602183613bf2565b9150613604826144cf565b604082019050919050565b600061361c602683613bf2565b91506136278261451e565b604082019050919050565b600061363f602883613bf2565b915061364a8261456d565b604082019050919050565b6000613662602e83613bf2565b915061366d826145bc565b604082019050919050565b6000613685601f83613bf2565b91506136908261460b565b602082019050919050565b60006136a8602f83613bf2565b91506136b382614634565b604082019050919050565b60006136cb602d83613bf2565b91506136d682614683565b604082019050919050565b6136ea81613d8d565b82525050565b60006136fc828661328e565b9150613708828561325d565b9150613714828461328e565b9150819050949350505050565b600061372c8261353d565b9150819050919050565b600060208201905061374b60008301846131cd565b92915050565b600060808201905061376660008301876131cd565b61377360208301866131cd565b61378060408301856136e1565b818103606083015261379281846131eb565b905095945050505050565b60006020820190506137b260008301846131dc565b92915050565b600060208201905081810360008301526137d28184613224565b905092915050565b600060208201905081810360008301526137f38161330d565b9050919050565b6000602082019050818103600083015261381381613330565b9050919050565b6000602082019050818103600083015261383381613353565b9050919050565b6000602082019050818103600083015261385381613376565b9050919050565b6000602082019050818103600083015261387381613399565b9050919050565b60006020820190508181036000830152613893816133bc565b9050919050565b600060208201905081810360008301526138b3816133df565b9050919050565b600060208201905081810360008301526138d381613402565b9050919050565b600060208201905081810360008301526138f381613425565b9050919050565b6000602082019050818103600083015261391381613448565b9050919050565b600060208201905081810360008301526139338161346b565b9050919050565b600060208201905081810360008301526139538161348e565b9050919050565b60006020820190508181036000830152613973816134b1565b9050919050565b60006020820190508181036000830152613993816134d4565b9050919050565b600060208201905081810360008301526139b3816134f7565b9050919050565b600060208201905081810360008301526139d38161351a565b9050919050565b600060208201905081810360008301526139f381613560565b9050919050565b60006020820190508181036000830152613a1381613583565b9050919050565b60006020820190508181036000830152613a33816135a6565b9050919050565b60006020820190508181036000830152613a53816135c9565b9050919050565b60006020820190508181036000830152613a73816135ec565b9050919050565b60006020820190508181036000830152613a938161360f565b9050919050565b60006020820190508181036000830152613ab381613632565b9050919050565b60006020820190508181036000830152613ad381613655565b9050919050565b60006020820190508181036000830152613af381613678565b9050919050565b60006020820190508181036000830152613b138161369b565b9050919050565b60006020820190508181036000830152613b33816136be565b9050919050565b6000602082019050613b4f60008301846136e1565b92915050565b6000613b5f613b70565b9050613b6b8282613e0b565b919050565b6000604051905090565b600067ffffffffffffffff821115613b9557613b94613f72565b5b613b9e82613fbf565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c1982613d8d565b9150613c2483613d8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c5957613c58613eb6565b5b828201905092915050565b6000613c6f82613d8d565b9150613c7a83613d8d565b925082613c8a57613c89613ee5565b5b828204905092915050565b6000613ca082613d8d565b9150613cab83613d8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ce457613ce3613eb6565b5b828202905092915050565b6000613cfa82613d8d565b9150613d0583613d8d565b925082821015613d1857613d17613eb6565b5b828203905092915050565b6000613d2e82613d6d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dc4578082015181840152602081019050613da9565b83811115613dd3576000848401525b50505050565b60006002820490506001821680613df157607f821691505b60208210811415613e0557613e04613f14565b5b50919050565b613e1482613fbf565b810181811067ffffffffffffffff82111715613e3357613e32613f72565b5b80604052505050565b6000613e4782613d8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e7a57613e79613eb6565b5b600182019050919050565b6000613e9082613d8d565b9150613e9b83613d8d565b925082613eab57613eaa613ee5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e7400000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e6f206d6f726520646f6265726d616e73000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865640000000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f20646567656e0000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6146db81613d23565b81146146e657600080fd5b50565b6146f281613d35565b81146146fd57600080fd5b50565b61470981613d41565b811461471457600080fd5b50565b61472081613d8d565b811461472b57600080fd5b5056fea26469706673582212209586a9a0a5247812f3c9bdfdc197225fd6e298f6c5f067c46c75c40d9a01048464736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102045760003560e01c80637d55094d11610118578063c6682862116100a0578063d5abeb011161006f578063d5abeb0114610732578063dc33e6811461075d578063e985e9c51461079a578063f2fde38b146107d7578063f968adbe1461080057610204565b8063c668286214610676578063c6f6f216146106a1578063c87b56dd146106ca578063d12397301461070757610204565b806395d89b41116100e757806395d89b41146105b2578063a035b1fe146105dd578063a0712d6814610608578063a22cb46514610624578063b88d4fde1461064d57610204565b80637d55094d1461051e5780638da5cb5b146105355780638db89f071461056057806391b7f5ed1461058957610204565b80633ccfd60b1161019b578063563aaf111161016a578063563aaf11146104395780636352211e146104625780636c0360eb1461049f57806370a08231146104ca578063715018a61461050757610204565b80633ccfd60b1461039357806342842e0e146103aa5780634f6ccce7146103d357806355f804b31461041057610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632f745c591461032b578063333e44e61461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906130f9565b61082b565b60405161023d919061379d565b60405180910390f35b34801561025257600080fd5b5061025b610975565b60405161026891906137b8565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906131a0565b610a07565b6040516102a59190613736565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906130b9565b610a8c565b005b3480156102e357600080fd5b506102ec610ba5565b6040516102f99190613b3a565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612fa3565b610bae565b005b34801561033757600080fd5b50610352600480360381019061034d91906130b9565b610bbe565b60405161035f9190613b3a565b60405180910390f35b34801561037457600080fd5b5061037d610db0565b60405161038a9190613b3a565b60405180910390f35b34801561039f57600080fd5b506103a8610db6565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190612fa3565b610f37565b005b3480156103df57600080fd5b506103fa60048036038101906103f591906131a0565b610f57565b6040516104079190613b3a565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613153565b610faa565b005b34801561044557600080fd5b50610460600480360381019061045b91906131a0565b61103c565b005b34801561046e57600080fd5b50610489600480360381019061048491906131a0565b6110c2565b6040516104969190613736565b60405180910390f35b3480156104ab57600080fd5b506104b46110d8565b6040516104c191906137b8565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190612f36565b611166565b6040516104fe9190613b3a565b60405180910390f35b34801561051357600080fd5b5061051c61124f565b005b34801561052a57600080fd5b506105336112d7565b005b34801561054157600080fd5b5061054a61137f565b6040516105579190613736565b60405180910390f35b34801561056c57600080fd5b50610587600480360381019061058291906131a0565b6113a9565b005b34801561059557600080fd5b506105b060048036038101906105ab91906131a0565b611494565b005b3480156105be57600080fd5b506105c761151a565b6040516105d491906137b8565b60405180910390f35b3480156105e957600080fd5b506105f26115ac565b6040516105ff9190613b3a565b60405180910390f35b610622600480360381019061061d91906131a0565b6115b2565b005b34801561063057600080fd5b5061064b60048036038101906106469190613079565b611742565b005b34801561065957600080fd5b50610674600480360381019061066f9190612ff6565b6118c3565b005b34801561068257600080fd5b5061068b61191f565b60405161069891906137b8565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c391906131a0565b6119ad565b005b3480156106d657600080fd5b506106f160048036038101906106ec91906131a0565b611a33565b6040516106fe91906137b8565b60405180910390f35b34801561071357600080fd5b5061071c611ade565b604051610729919061379d565b60405180910390f35b34801561073e57600080fd5b50610747611af1565b6040516107549190613b3a565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190612f36565b611af7565b6040516107919190613b3a565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190612f63565b611b09565b6040516107ce919061379d565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190612f36565b611b9d565b005b34801561080c57600080fd5b50610815611c95565b6040516108229190613b3a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096e575061096d82611c9b565b5b9050919050565b60606001805461098490613dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546109b090613dd9565b80156109fd5780601f106109d2576101008083540402835291602001916109fd565b820191906000526020600020905b8154815290600101906020018083116109e057829003601f168201915b5050505050905090565b6000610a1282611d05565b610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890613b1a565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a97826110c2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff906139ba565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b27611d12565b73ffffffffffffffffffffffffffffffffffffffff161480610b565750610b5581610b50611d12565b611b09565b5b610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c906138ba565b60405180910390fd5b610ba0838383611d1a565b505050565b60008054905090565b610bb9838383611dcc565b505050565b6000610bc983611166565b8210610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c01906137da565b60405180910390fd5b6000610c14610ba5565b905060008060005b83811015610d6e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d0e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d605786841415610d57578195505050505050610daa565b83806001019450505b508080600101915050610c1c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190613aba565b60405180910390fd5b92915050565b600d5481565b610dbe611d12565b73ffffffffffffffffffffffffffffffffffffffff16610ddc61137f565b73ffffffffffffffffffffffffffffffffffffffff1614610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e299061393a565b60405180910390fd5b60026008541415610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f90613ada565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610ea690613721565b60006040518083038185875af1925050503d8060008114610ee3576040519150601f19603f3d011682016040523d82523d6000602084013e610ee8565b606091505b5050905080610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f23906139da565b60405180910390fd5b506001600881905550565b610f52838383604051806020016040528060008152506118c3565b505050565b6000610f61610ba5565b8210610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f999061383a565b60405180910390fd5b819050919050565b610fb2611d12565b73ffffffffffffffffffffffffffffffffffffffff16610fd061137f565b73ffffffffffffffffffffffffffffffffffffffff1614611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d9061393a565b60405180910390fd5b818160099190611037929190612d2a565b505050565b611044611d12565b73ffffffffffffffffffffffffffffffffffffffff1661106261137f565b73ffffffffffffffffffffffffffffffffffffffff16146110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af9061393a565b60405180910390fd5b80600d8190555050565b60006110cd8261230c565b600001519050919050565b600980546110e590613dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461111190613dd9565b801561115e5780601f106111335761010080835404028352916020019161115e565b820191906000526020600020905b81548152906001019060200180831161114157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce906138da565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611257611d12565b73ffffffffffffffffffffffffffffffffffffffff1661127561137f565b73ffffffffffffffffffffffffffffffffffffffff16146112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c29061393a565b60405180910390fd5b6112d560006124a6565b565b6112df611d12565b73ffffffffffffffffffffffffffffffffffffffff166112fd61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a9061393a565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113b1611d12565b73ffffffffffffffffffffffffffffffffffffffff166113cf61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c9061393a565b60405180910390fd5b6001600e546114349190613c0e565b8161143d610ba5565b6114479190613c0e565b10611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e9061389a565b60405180910390fd5b611491338261256c565b50565b61149c611d12565b73ffffffffffffffffffffffffffffffffffffffff166114ba61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611510576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115079061393a565b60405180910390fd5b80600b8190555050565b60606002805461152990613dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461155590613dd9565b80156115a25780601f10611577576101008083540402835291602001916115a2565b820191906000526020600020905b81548152906001019060200180831161158557829003601f168201915b5050505050905090565b600b5481565b6000600b5490506001600d546115c89190613c0e565b826115d1610ba5565b6115db9190613c0e565b10156115e657600090505b600f60009054906101000a900460ff16611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90613a7a565b60405180910390fd5b6001600e546116449190613c0e565b8261164d610ba5565b6116579190613c0e565b10611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90613a1a565b60405180910390fd5b80826116a39190613c95565b34146116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db9061399a565b60405180910390fd5b6001600c546116f39190613c0e565b8210611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90613a3a565b60405180910390fd5b61173e338361256c565b5050565b61174a611d12565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af9061395a565b60405180910390fd5b80600660006117c5611d12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611872611d12565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118b7919061379d565b60405180910390a35050565b6118ce848484611dcc565b6118da8484848461258a565b611919576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611910906139fa565b60405180910390fd5b50505050565b600a805461192c90613dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461195890613dd9565b80156119a55780601f1061197a576101008083540402835291602001916119a5565b820191906000526020600020905b81548152906001019060200180831161198857829003601f168201915b505050505081565b6119b5611d12565b73ffffffffffffffffffffffffffffffffffffffff166119d361137f565b73ffffffffffffffffffffffffffffffffffffffff1614611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a209061393a565b60405180910390fd5b80600c8190555050565b6060611a3e82611d05565b611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a74906138fa565b60405180910390fd5b600060098054611a8c90613dd9565b905011611aa85760405180602001604052806000815250611ad7565b6009611ab383612721565b600a604051602001611ac7939291906136f0565b6040516020818303038152906040525b9050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000611b0282612882565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ba5611d12565b73ffffffffffffffffffffffffffffffffffffffff16611bc361137f565b73ffffffffffffffffffffffffffffffffffffffff1614611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c109061393a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c80906137fa565b60405180910390fd5b611c92816124a6565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611dd78261230c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dfe611d12565b73ffffffffffffffffffffffffffffffffffffffff161480611e5a5750611e23611d12565b73ffffffffffffffffffffffffffffffffffffffff16611e4284610a07565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e765750611e758260000151611e70611d12565b611b09565b5b905080611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf9061397a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f219061391a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f919061385a565b60405180910390fd5b611fa7858585600161296b565b611fb76000848460000151611d1a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561229c576121fb81611d05565b1561229b5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123058585856001612971565b5050505050565b612314612db0565b61231d82611d05565b61235c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123539061381a565b60405180910390fd5b60008290505b60008110612465576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124565780925050506124a1565b50808060019003915050612362565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249890613afa565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612586828260405180602001604052806000815250612977565b5050565b60006125ab8473ffffffffffffffffffffffffffffffffffffffff16612989565b15612714578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125d4611d12565b8786866040518563ffffffff1660e01b81526004016125f69493929190613751565b602060405180830381600087803b15801561261057600080fd5b505af192505050801561264157506040513d601f19601f8201168201806040525081019061263e9190613126565b60015b6126c4573d8060008114612671576040519150601f19603f3d011682016040523d82523d6000602084013e612676565b606091505b506000815114156126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b3906139fa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612719565b600190505b949350505050565b60606000821415612769576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061287d565b600082905060005b6000821461279b57808061278490613e3c565b915050600a826127949190613c64565b9150612771565b60008167ffffffffffffffff8111156127b7576127b6613f72565b5b6040519080825280601f01601f1916602001820160405280156127e95781602001600182028036833780820191505090505b5090505b60008514612876576001826128029190613cef565b9150600a856128119190613e85565b603061281d9190613c0e565b60f81b81838151811061283357612832613f43565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561286f9190613c64565b94506127ed565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ea9061387a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b61298483838360016129ac565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1990613a5a565b60405180910390fd5b6000841415612a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5d90613a9a565b60405180910390fd5b612a73600086838761296b565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612d0d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612cf857612cb8600088848861258a565b612cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cee906139fa565b60405180910390fd5b5b81806001019250508080600101915050612c41565b508060008190555050612d236000868387612971565b5050505050565b828054612d3690613dd9565b90600052602060002090601f016020900481019282612d585760008555612d9f565b82601f10612d7157803560ff1916838001178555612d9f565b82800160010185558215612d9f579182015b82811115612d9e578235825591602001919060010190612d83565b5b509050612dac9190612dea565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e03576000816000905550600101612deb565b5090565b6000612e1a612e1584613b7a565b613b55565b905082815260208101848484011115612e3657612e35613fb0565b5b612e41848285613d97565b509392505050565b600081359050612e58816146d2565b92915050565b600081359050612e6d816146e9565b92915050565b600081359050612e8281614700565b92915050565b600081519050612e9781614700565b92915050565b600082601f830112612eb257612eb1613fa6565b5b8135612ec2848260208601612e07565b91505092915050565b60008083601f840112612ee157612ee0613fa6565b5b8235905067ffffffffffffffff811115612efe57612efd613fa1565b5b602083019150836001820283011115612f1a57612f19613fab565b5b9250929050565b600081359050612f3081614717565b92915050565b600060208284031215612f4c57612f4b613fba565b5b6000612f5a84828501612e49565b91505092915050565b60008060408385031215612f7a57612f79613fba565b5b6000612f8885828601612e49565b9250506020612f9985828601612e49565b9150509250929050565b600080600060608486031215612fbc57612fbb613fba565b5b6000612fca86828701612e49565b9350506020612fdb86828701612e49565b9250506040612fec86828701612f21565b9150509250925092565b600080600080608085870312156130105761300f613fba565b5b600061301e87828801612e49565b945050602061302f87828801612e49565b935050604061304087828801612f21565b925050606085013567ffffffffffffffff81111561306157613060613fb5565b5b61306d87828801612e9d565b91505092959194509250565b600080604083850312156130905761308f613fba565b5b600061309e85828601612e49565b92505060206130af85828601612e5e565b9150509250929050565b600080604083850312156130d0576130cf613fba565b5b60006130de85828601612e49565b92505060206130ef85828601612f21565b9150509250929050565b60006020828403121561310f5761310e613fba565b5b600061311d84828501612e73565b91505092915050565b60006020828403121561313c5761313b613fba565b5b600061314a84828501612e88565b91505092915050565b6000806020838503121561316a57613169613fba565b5b600083013567ffffffffffffffff81111561318857613187613fb5565b5b61319485828601612ecb565b92509250509250929050565b6000602082840312156131b6576131b5613fba565b5b60006131c484828501612f21565b91505092915050565b6131d681613d23565b82525050565b6131e581613d35565b82525050565b60006131f682613bc0565b6132008185613bd6565b9350613210818560208601613da6565b61321981613fbf565b840191505092915050565b600061322f82613bcb565b6132398185613bf2565b9350613249818560208601613da6565b61325281613fbf565b840191505092915050565b600061326882613bcb565b6132728185613c03565b9350613282818560208601613da6565b80840191505092915050565b6000815461329b81613dd9565b6132a58186613c03565b945060018216600081146132c057600181146132d157613304565b60ff19831686528186019350613304565b6132da85613bab565b60005b838110156132fc578154818901526001820191506020810190506132dd565b838801955050505b50505092915050565b600061331a602283613bf2565b915061332582613fd0565b604082019050919050565b600061333d602683613bf2565b91506133488261401f565b604082019050919050565b6000613360602a83613bf2565b915061336b8261406e565b604082019050919050565b6000613383602383613bf2565b915061338e826140bd565b604082019050919050565b60006133a6602583613bf2565b91506133b18261410c565b604082019050919050565b60006133c9603183613bf2565b91506133d48261415b565b604082019050919050565b60006133ec600983613bf2565b91506133f7826141aa565b602082019050919050565b600061340f603983613bf2565b915061341a826141d3565b604082019050919050565b6000613432602b83613bf2565b915061343d82614222565b604082019050919050565b6000613455601583613bf2565b915061346082614271565b602082019050919050565b6000613478602683613bf2565b91506134838261429a565b604082019050919050565b600061349b602083613bf2565b91506134a6826142e9565b602082019050919050565b60006134be601a83613bf2565b91506134c982614312565b602082019050919050565b60006134e1603283613bf2565b91506134ec8261433b565b604082019050919050565b6000613504601c83613bf2565b915061350f8261438a565b602082019050919050565b6000613527602283613bf2565b9150613532826143b3565b604082019050919050565b600061354a600083613be7565b915061355582614402565b600082019050919050565b600061356d601083613bf2565b915061357882614405565b602082019050919050565b6000613590603383613bf2565b915061359b8261442e565b604082019050919050565b60006135b3601183613bf2565b91506135be8261447d565b602082019050919050565b60006135d6601283613bf2565b91506135e1826144a6565b602082019050919050565b60006135f9602183613bf2565b9150613604826144cf565b604082019050919050565b600061361c602683613bf2565b91506136278261451e565b604082019050919050565b600061363f602883613bf2565b915061364a8261456d565b604082019050919050565b6000613662602e83613bf2565b915061366d826145bc565b604082019050919050565b6000613685601f83613bf2565b91506136908261460b565b602082019050919050565b60006136a8602f83613bf2565b91506136b382614634565b604082019050919050565b60006136cb602d83613bf2565b91506136d682614683565b604082019050919050565b6136ea81613d8d565b82525050565b60006136fc828661328e565b9150613708828561325d565b9150613714828461328e565b9150819050949350505050565b600061372c8261353d565b9150819050919050565b600060208201905061374b60008301846131cd565b92915050565b600060808201905061376660008301876131cd565b61377360208301866131cd565b61378060408301856136e1565b818103606083015261379281846131eb565b905095945050505050565b60006020820190506137b260008301846131dc565b92915050565b600060208201905081810360008301526137d28184613224565b905092915050565b600060208201905081810360008301526137f38161330d565b9050919050565b6000602082019050818103600083015261381381613330565b9050919050565b6000602082019050818103600083015261383381613353565b9050919050565b6000602082019050818103600083015261385381613376565b9050919050565b6000602082019050818103600083015261387381613399565b9050919050565b60006020820190508181036000830152613893816133bc565b9050919050565b600060208201905081810360008301526138b3816133df565b9050919050565b600060208201905081810360008301526138d381613402565b9050919050565b600060208201905081810360008301526138f381613425565b9050919050565b6000602082019050818103600083015261391381613448565b9050919050565b600060208201905081810360008301526139338161346b565b9050919050565b600060208201905081810360008301526139538161348e565b9050919050565b60006020820190508181036000830152613973816134b1565b9050919050565b60006020820190508181036000830152613993816134d4565b9050919050565b600060208201905081810360008301526139b3816134f7565b9050919050565b600060208201905081810360008301526139d38161351a565b9050919050565b600060208201905081810360008301526139f381613560565b9050919050565b60006020820190508181036000830152613a1381613583565b9050919050565b60006020820190508181036000830152613a33816135a6565b9050919050565b60006020820190508181036000830152613a53816135c9565b9050919050565b60006020820190508181036000830152613a73816135ec565b9050919050565b60006020820190508181036000830152613a938161360f565b9050919050565b60006020820190508181036000830152613ab381613632565b9050919050565b60006020820190508181036000830152613ad381613655565b9050919050565b60006020820190508181036000830152613af381613678565b9050919050565b60006020820190508181036000830152613b138161369b565b9050919050565b60006020820190508181036000830152613b33816136be565b9050919050565b6000602082019050613b4f60008301846136e1565b92915050565b6000613b5f613b70565b9050613b6b8282613e0b565b919050565b6000604051905090565b600067ffffffffffffffff821115613b9557613b94613f72565b5b613b9e82613fbf565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c1982613d8d565b9150613c2483613d8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c5957613c58613eb6565b5b828201905092915050565b6000613c6f82613d8d565b9150613c7a83613d8d565b925082613c8a57613c89613ee5565b5b828204905092915050565b6000613ca082613d8d565b9150613cab83613d8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ce457613ce3613eb6565b5b828202905092915050565b6000613cfa82613d8d565b9150613d0583613d8d565b925082821015613d1857613d17613eb6565b5b828203905092915050565b6000613d2e82613d6d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dc4578082015181840152602081019050613da9565b83811115613dd3576000848401525b50505050565b60006002820490506001821680613df157607f821691505b60208210811415613e0557613e04613f14565b5b50919050565b613e1482613fbf565b810181811067ffffffffffffffff82111715613e3357613e32613f72565b5b80604052505050565b6000613e4782613d8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e7a57613e79613eb6565b5b600182019050919050565b6000613e9082613d8d565b9150613e9b83613d8d565b925082613eab57613eaa613ee5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e7400000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e6f206d6f726520646f6265726d616e73000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865640000000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f20646567656e0000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6146db81613d23565b81146146e657600080fd5b50565b6146f281613d35565b81146146fd57600080fd5b50565b61470981613d41565b811461471457600080fd5b50565b61472081613d8d565b811461472b57600080fd5b5056fea26469706673582212209586a9a0a5247812f3c9bdfdc197225fd6e298f6c5f067c46c75c40d9a01048464736f6c63430008070033
Deployed Bytecode Sourcemap
50276:2378:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37136:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39022:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40584:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40105:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35393:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41460:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36057:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50534:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52473:176;;;;;;;;;;;;;:::i;:::-;;41701:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35570:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51602:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52161:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38831:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50344:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37572:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10528:103;;;;;;;;;;;;;:::i;:::-;;51398:85;;;;;;;;;;;;;:::i;:::-;;9877:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51220:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52073:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39191:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50430:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50743:471;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40870:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41957:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50377:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52265:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51705:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50634:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50584:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51489:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41229:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10786:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50487:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37136:372;37238:4;37290:25;37275:40;;;:11;:40;;;;:105;;;;37347:33;37332:48;;;:11;:48;;;;37275:105;:172;;;;37412:35;37397:50;;;:11;:50;;;;37275:172;:225;;;;37464:36;37488:11;37464:23;:36::i;:::-;37275:225;37255:245;;37136:372;;;:::o;39022:100::-;39076:13;39109:5;39102:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39022:100;:::o;40584:214::-;40652:7;40680:16;40688:7;40680;:16::i;:::-;40672:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40766:15;:24;40782:7;40766:24;;;;;;;;;;;;;;;;;;;;;40759:31;;40584:214;;;:::o;40105:413::-;40178:13;40194:24;40210:7;40194:15;:24::i;:::-;40178:40;;40243:5;40237:11;;:2;:11;;;;40229:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40338:5;40322:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40347:37;40364:5;40371:12;:10;:12::i;:::-;40347:16;:37::i;:::-;40322:62;40300:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40482:28;40491:2;40495:7;40504:5;40482:8;:28::i;:::-;40167:351;40105:413;;:::o;35393:100::-;35446:7;35473:12;;35466:19;;35393:100;:::o;41460:170::-;41594:28;41604:4;41610:2;41614:7;41594:9;:28::i;:::-;41460:170;;;:::o;36057:1007::-;36146:7;36182:16;36192:5;36182:9;:16::i;:::-;36174:5;:24;36166:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36248:22;36273:13;:11;:13::i;:::-;36248:38;;36297:19;36327:25;36516:9;36511:466;36531:14;36527:1;:18;36511:466;;;36571:31;36605:11;:14;36617:1;36605:14;;;;;;;;;;;36571:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36668:1;36642:28;;:9;:14;;;:28;;;36638:111;;36715:9;:14;;;36695:34;;36638:111;36792:5;36771:26;;:17;:26;;;36767:195;;;36841:5;36826:11;:20;36822:85;;;36882:1;36875:8;;;;;;;;;36822:85;36929:13;;;;;;;36767:195;36552:425;36547:3;;;;;;;36511:466;;;;37000:56;;;;;;;;;;:::i;:::-;;;;;;;;36057:1007;;;;;:::o;50534:45::-;;;;:::o;52473:176::-;10108:12;:10;:12::i;:::-;10097:23;;:7;:5;:7::i;:::-;:23;;;10089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4851:1:::1;5449:7;;:19;;5441:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4851:1;5582:7;:18;;;;52533:12:::2;52551:10;:15;;52574:21;52551:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52532:68;;;52615:7;52607:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;52525:124;4807:1:::1;5761:7;:22;;;;52473:176::o:0;41701:185::-;41839:39;41856:4;41862:2;41866:7;41839:39;;;;;;;;;;;;:16;:39::i;:::-;41701:185;;;:::o;35570:187::-;35637:7;35673:13;:11;:13::i;:::-;35665:5;:21;35657:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;35744:5;35737:12;;35570:187;;;:::o;51602:96::-;10108:12;:10;:12::i;:::-;10097:23;;:7;:5;:7::i;:::-;:23;;;10089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51684:8:::1;;51674:7;:18;;;;;;;:::i;:::-;;51602:96:::0;;:::o;52161:98::-;10108:12;:10;:12::i;:::-;10097:23;;:7;:5;:7::i;:::-;:23;;;10089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52243:10:::1;52231:9;:22;;;;52161:98:::0;:::o;38831:124::-;38895:7;38922:20;38934:7;38922:11;:20::i;:::-;:25;;;38915:32;;38831:124;;;:::o;50344:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37572:221::-;37636:7;37681:1;37664:19;;:5;:19;;;;37656:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37757:12;:19;37770:5;37757:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37749:36;;37742:43;;37572:221;;;:::o;10528:103::-;10108:12;:10;:12::i;:::-;10097:23;;:7;:5;:7::i;:::-;:23;;;10089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10593:30:::1;10620:1;10593:18;:30::i;:::-;10528:103::o:0;51398:85::-;10108:12;:10;:12::i;:::-;10097:23;;:7;:5;:7::i;:::-;:23;;;10089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51466:11:::1;;;;;;;;;;;51465:12;51451:11;;:26;;;;;;;;;;;;;;;;;;51398:85::o:0;9877:87::-;9923:7;9950:6;;;;;;;;;;;9943:13;;9877:87;:::o;51220:172::-;10108:12;:10;:12::i;:::-;10097:23;;:7;:5;:7::i;:::-;:23;;;10089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51334:1:::1;51322:9;;:13;;;;:::i;:::-;51313:6;51297:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;51289:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;51357:29;51367:10;51379:6;51357:9;:29::i;:::-;51220:172:::0;:::o;52073:82::-;10108:12;:10;:12::i;:::-;10097:23;;:7;:5;:7::i;:::-;:23;;;10089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52143:6:::1;52135:5;:14;;;;52073:82:::0;:::o;39191:104::-;39247:13;39280:7;39273:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39191:104;:::o;50430:52::-;;;;:::o;50743:471::-;50800:9;50812:5;;50800:17;;50864:1;50852:9;;:13;;;;:::i;:::-;50843:6;50827:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;50824:68;;;50883:1;50876:8;;50824:68;50906:11;;;;;;;;;;;50898:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;51012:1;51000:9;;:13;;;;:::i;:::-;50991:6;50975:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;50967:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51071:4;51062:6;:13;;;;:::i;:::-;51049:9;:26;51041:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51142:1;51131:8;;:12;;;;:::i;:::-;51122:6;:21;51114:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;51179:29;51189:10;51201:6;51179:9;:29::i;:::-;50793:421;50743:471;:::o;40870:288::-;40977:12;:10;:12::i;:::-;40965:24;;:8;:24;;;;40957:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41078:8;41033:18;:32;41052:12;:10;:12::i;:::-;41033:32;;;;;;;;;;;;;;;:42;41066:8;41033:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41131:8;41102:48;;41117:12;:10;:12::i;:::-;41102:48;;;41141:8;41102:48;;;;;;:::i;:::-;;;;;;;;40870:288;;:::o;41957:355::-;42116:28;42126:4;42132:2;42136:7;42116:9;:28::i;:::-;42177:48;42200:4;42206:2;42210:7;42219:5;42177:22;:48::i;:::-;42155:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;41957:355;;;;:::o;50377:48::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52265:94::-;10108:12;:10;:12::i;:::-;10097:23;;:7;:5;:7::i;:::-;:23;;;10089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52344:9:::1;52333:8;:20;;;;52265:94:::0;:::o;51705:362::-;51771:13;51805:17;51813:8;51805:7;:17::i;:::-;51797:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;51890:1;51872:7;51866:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;51948:7;51972:26;51989:8;51972:16;:26::i;:::-;52015:13;51915:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51866:193;51859:200;;51705:362;;;:::o;50634:32::-;;;;;;;;;;;;;:::o;50584:45::-;;;;:::o;51489:107::-;51547:7;51570:20;51584:5;51570:13;:20::i;:::-;51563:27;;51489:107;;;:::o;41229:164::-;41326:4;41350:18;:25;41369:5;41350:25;;;;;;;;;;;;;;;:35;41376:8;41350:35;;;;;;;;;;;;;;;;;;;;;;;;;41343:42;;41229:164;;;;:::o;10786:201::-;10108:12;:10;:12::i;:::-;10097:23;;:7;:5;:7::i;:::-;:23;;;10089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10895:1:::1;10875:22;;:8;:22;;;;10867:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10951:28;10970:8;10951:18;:28::i;:::-;10786:201:::0;:::o;50487:42::-;;;;:::o;26656:157::-;26741:4;26780:25;26765:40;;;:11;:40;;;;26758:47;;26656:157;;;:::o;42567:111::-;42624:4;42658:12;;42648:7;:22;42641:29;;42567:111;;;:::o;8601:98::-;8654:7;8681:10;8674:17;;8601:98;:::o;47487:196::-;47629:2;47602:15;:24;47618:7;47602:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47667:7;47663:2;47647:28;;47656:5;47647:28;;;;;;;;;;;;47487:196;;;:::o;45367:2002::-;45482:35;45520:20;45532:7;45520:11;:20::i;:::-;45482:58;;45553:22;45595:13;:18;;;45579:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45654:12;:10;:12::i;:::-;45630:36;;:20;45642:7;45630:11;:20::i;:::-;:36;;;45579:87;:154;;;;45683:50;45700:13;:18;;;45720:12;:10;:12::i;:::-;45683:16;:50::i;:::-;45579:154;45553:181;;45755:17;45747:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45870:4;45848:26;;:13;:18;;;:26;;;45840:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45950:1;45936:16;;:2;:16;;;;45928:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;46007:43;46029:4;46035:2;46039:7;46048:1;46007:21;:43::i;:::-;46115:49;46132:1;46136:7;46145:13;:18;;;46115:8;:49::i;:::-;46490:1;46460:12;:18;46473:4;46460:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46534:1;46506:12;:16;46519:2;46506:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46580:2;46552:11;:20;46564:7;46552:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46642:15;46597:11;:20;46609:7;46597:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46910:19;46942:1;46932:7;:11;46910:33;;47003:1;46962:43;;:11;:24;46974:11;46962:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46958:295;;;47030:20;47038:11;47030:7;:20::i;:::-;47026:212;;;47107:13;:18;;;47075:11;:24;47087:11;47075:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47190:13;:28;;;47148:11;:24;47160:11;47148:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;47026:212;46958:295;46435:829;47300:7;47296:2;47281:27;;47290:4;47281:27;;;;;;;;;;;;47319:42;47340:4;47346:2;47350:7;47359:1;47319:20;:42::i;:::-;45471:1898;;45367:2002;;;:::o;38232:537::-;38293:21;;:::i;:::-;38335:16;38343:7;38335;:16::i;:::-;38327:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38441:12;38456:7;38441:22;;38436:245;38473:1;38465:4;:9;38436:245;;38503:31;38537:11;:17;38549:4;38537:17;;;;;;;;;;;38503:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38603:1;38577:28;;:9;:14;;;:28;;;38573:93;;38637:9;38630:16;;;;;;38573:93;38484:197;38476:6;;;;;;;;38436:245;;;;38704:57;;;;;;;;;;:::i;:::-;;;;;;;;38232:537;;;;:::o;11147:191::-;11221:16;11240:6;;;;;;;;;;;11221:25;;11266:8;11257:6;;:17;;;;;;;;;;;;;;;;;;11321:8;11290:40;;11311:8;11290:40;;;;;;;;;;;;11210:128;11147:191;:::o;42686:104::-;42755:27;42765:2;42769:8;42755:27;;;;;;;;;;;;:9;:27::i;:::-;42686:104;;:::o;48248:804::-;48403:4;48424:15;:2;:13;;;:15::i;:::-;48420:625;;;48476:2;48460:36;;;48497:12;:10;:12::i;:::-;48511:4;48517:7;48526:5;48460:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48456:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48723:1;48706:6;:13;:18;48702:273;;;48749:61;;;;;;;;;;:::i;:::-;;;;;;;;48702:273;48925:6;48919:13;48910:6;48906:2;48902:15;48895:38;48456:534;48593:45;;;48583:55;;;:6;:55;;;;48576:62;;;;;48420:625;49029:4;49022:11;;48248:804;;;;;;;:::o;6163:723::-;6219:13;6449:1;6440:5;:10;6436:53;;;6467:10;;;;;;;;;;;;;;;;;;;;;6436:53;6499:12;6514:5;6499:20;;6530:14;6555:78;6570:1;6562:4;:9;6555:78;;6588:8;;;;;:::i;:::-;;;;6619:2;6611:10;;;;;:::i;:::-;;;6555:78;;;6643:19;6675:6;6665:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6643:39;;6693:154;6709:1;6700:5;:10;6693:154;;6737:1;6727:11;;;;;:::i;:::-;;;6804:2;6796:5;:10;;;;:::i;:::-;6783:2;:24;;;;:::i;:::-;6770:39;;6753:6;6760;6753:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6833:2;6824:11;;;;;:::i;:::-;;;6693:154;;;6871:6;6857:21;;;;;6163:723;;;;:::o;37801:229::-;37862:7;37907:1;37890:19;;:5;:19;;;;37882:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37989:12;:19;38002:5;37989:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;37981:41;;37974:48;;37801:229;;;:::o;49540:159::-;;;;;:::o;50111:158::-;;;;;:::o;43153:163::-;43276:32;43282:2;43286:8;43296:5;43303:4;43276:5;:32::i;:::-;43153:163;;;:::o;12578:326::-;12638:4;12895:1;12873:7;:19;;;:23;12866:30;;12578:326;;;:::o;43575:1538::-;43714:20;43737:12;;43714:35;;43782:1;43768:16;;:2;:16;;;;43760:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43853:1;43841:8;:13;;43833:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43912:61;43942:1;43946:2;43950:12;43964:8;43912:21;:61::i;:::-;44287:8;44251:12;:16;44264:2;44251:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44352:8;44311:12;:16;44324:2;44311:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44411:2;44378:11;:25;44390:12;44378:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44478:15;44428:11;:25;44440:12;44428:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44511:20;44534:12;44511:35;;44568:9;44563:415;44583:8;44579:1;:12;44563:415;;;44647:12;44643:2;44622:38;;44639:1;44622:38;;;;;;;;;;;;44683:4;44679:249;;;44746:59;44777:1;44781:2;44785:12;44799:5;44746:22;:59::i;:::-;44712:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;44679:249;44948:14;;;;;;;44593:3;;;;;;;44563:415;;;;45009:12;44994;:27;;;;44226:807;45045:60;45074:1;45078:2;45082:12;45096:8;45045:20;:60::i;:::-;43703:1410;43575:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8355:845::-;8458:3;8495:5;8489:12;8524:36;8550:9;8524:36;:::i;:::-;8576:89;8658:6;8653:3;8576:89;:::i;:::-;8569:96;;8696:1;8685:9;8681:17;8712:1;8707:137;;;;8858:1;8853:341;;;;8674:520;;8707:137;8791:4;8787:9;8776;8772:25;8767:3;8760:38;8827:6;8822:3;8818:16;8811:23;;8707:137;;8853:341;8920:38;8952:5;8920:38;:::i;:::-;8980:1;8994:154;9008:6;9005:1;9002:13;8994:154;;;9082:7;9076:14;9072:1;9067:3;9063:11;9056:35;9132:1;9123:7;9119:15;9108:26;;9030:4;9027:1;9023:12;9018:17;;8994:154;;;9177:6;9172:3;9168:16;9161:23;;8860:334;;8674:520;;8462:738;;8355:845;;;;:::o;9206:366::-;9348:3;9369:67;9433:2;9428:3;9369:67;:::i;:::-;9362:74;;9445:93;9534:3;9445:93;:::i;:::-;9563:2;9558:3;9554:12;9547:19;;9206:366;;;:::o;9578:::-;9720:3;9741:67;9805:2;9800:3;9741:67;:::i;:::-;9734:74;;9817:93;9906:3;9817:93;:::i;:::-;9935:2;9930:3;9926:12;9919:19;;9578:366;;;:::o;9950:::-;10092:3;10113:67;10177:2;10172:3;10113:67;:::i;:::-;10106:74;;10189:93;10278:3;10189:93;:::i;:::-;10307:2;10302:3;10298:12;10291:19;;9950:366;;;:::o;10322:::-;10464:3;10485:67;10549:2;10544:3;10485:67;:::i;:::-;10478:74;;10561:93;10650:3;10561:93;:::i;:::-;10679:2;10674:3;10670:12;10663:19;;10322:366;;;:::o;10694:::-;10836:3;10857:67;10921:2;10916:3;10857:67;:::i;:::-;10850:74;;10933:93;11022:3;10933:93;:::i;:::-;11051:2;11046:3;11042:12;11035:19;;10694:366;;;:::o;11066:::-;11208:3;11229:67;11293:2;11288:3;11229:67;:::i;:::-;11222:74;;11305:93;11394:3;11305:93;:::i;:::-;11423:2;11418:3;11414:12;11407:19;;11066:366;;;:::o;11438:365::-;11580:3;11601:66;11665:1;11660:3;11601:66;:::i;:::-;11594:73;;11676:93;11765:3;11676:93;:::i;:::-;11794:2;11789:3;11785:12;11778:19;;11438:365;;;:::o;11809:366::-;11951:3;11972:67;12036:2;12031:3;11972:67;:::i;:::-;11965:74;;12048:93;12137:3;12048:93;:::i;:::-;12166:2;12161:3;12157:12;12150:19;;11809:366;;;:::o;12181:::-;12323:3;12344:67;12408:2;12403:3;12344:67;:::i;:::-;12337:74;;12420:93;12509:3;12420:93;:::i;:::-;12538:2;12533:3;12529:12;12522:19;;12181:366;;;:::o;12553:::-;12695:3;12716:67;12780:2;12775:3;12716:67;:::i;:::-;12709:74;;12792:93;12881:3;12792:93;:::i;:::-;12910:2;12905:3;12901:12;12894:19;;12553:366;;;:::o;12925:::-;13067:3;13088:67;13152:2;13147:3;13088:67;:::i;:::-;13081:74;;13164:93;13253:3;13164:93;:::i;:::-;13282:2;13277:3;13273:12;13266:19;;12925:366;;;:::o;13297:::-;13439:3;13460:67;13524:2;13519:3;13460:67;:::i;:::-;13453:74;;13536:93;13625:3;13536:93;:::i;:::-;13654:2;13649:3;13645:12;13638:19;;13297:366;;;:::o;13669:::-;13811:3;13832:67;13896:2;13891:3;13832:67;:::i;:::-;13825:74;;13908:93;13997:3;13908:93;:::i;:::-;14026:2;14021:3;14017:12;14010:19;;13669:366;;;:::o;14041:::-;14183:3;14204:67;14268:2;14263:3;14204:67;:::i;:::-;14197:74;;14280:93;14369:3;14280:93;:::i;:::-;14398:2;14393:3;14389:12;14382:19;;14041:366;;;:::o;14413:::-;14555:3;14576:67;14640:2;14635:3;14576:67;:::i;:::-;14569:74;;14652:93;14741:3;14652:93;:::i;:::-;14770:2;14765:3;14761:12;14754:19;;14413:366;;;:::o;14785:::-;14927:3;14948:67;15012:2;15007:3;14948:67;:::i;:::-;14941:74;;15024:93;15113:3;15024:93;:::i;:::-;15142:2;15137:3;15133:12;15126:19;;14785:366;;;:::o;15157:398::-;15316:3;15337:83;15418:1;15413:3;15337:83;:::i;:::-;15330:90;;15429:93;15518:3;15429:93;:::i;:::-;15547:1;15542:3;15538:11;15531:18;;15157:398;;;:::o;15561:366::-;15703:3;15724:67;15788:2;15783:3;15724:67;:::i;:::-;15717:74;;15800:93;15889:3;15800:93;:::i;:::-;15918:2;15913:3;15909:12;15902:19;;15561:366;;;:::o;15933:::-;16075:3;16096:67;16160:2;16155:3;16096:67;:::i;:::-;16089:74;;16172:93;16261:3;16172:93;:::i;:::-;16290:2;16285:3;16281:12;16274:19;;15933:366;;;:::o;16305:::-;16447:3;16468:67;16532:2;16527:3;16468:67;:::i;:::-;16461:74;;16544:93;16633:3;16544:93;:::i;:::-;16662:2;16657:3;16653:12;16646:19;;16305:366;;;:::o;16677:::-;16819:3;16840:67;16904:2;16899:3;16840:67;:::i;:::-;16833:74;;16916:93;17005:3;16916:93;:::i;:::-;17034:2;17029:3;17025:12;17018:19;;16677:366;;;:::o;17049:::-;17191:3;17212:67;17276:2;17271:3;17212:67;:::i;:::-;17205:74;;17288:93;17377:3;17288:93;:::i;:::-;17406:2;17401:3;17397:12;17390:19;;17049:366;;;:::o;17421:::-;17563:3;17584:67;17648:2;17643:3;17584:67;:::i;:::-;17577:74;;17660:93;17749:3;17660:93;:::i;:::-;17778:2;17773:3;17769:12;17762:19;;17421:366;;;:::o;17793:::-;17935:3;17956:67;18020:2;18015:3;17956:67;:::i;:::-;17949:74;;18032:93;18121:3;18032:93;:::i;:::-;18150:2;18145:3;18141:12;18134:19;;17793:366;;;:::o;18165:::-;18307:3;18328:67;18392:2;18387:3;18328:67;:::i;:::-;18321:74;;18404:93;18493:3;18404:93;:::i;:::-;18522:2;18517:3;18513:12;18506:19;;18165:366;;;:::o;18537:::-;18679:3;18700:67;18764:2;18759:3;18700:67;:::i;:::-;18693:74;;18776:93;18865:3;18776:93;:::i;:::-;18894:2;18889:3;18885:12;18878:19;;18537:366;;;:::o;18909:::-;19051:3;19072:67;19136:2;19131:3;19072:67;:::i;:::-;19065:74;;19148:93;19237:3;19148:93;:::i;:::-;19266:2;19261:3;19257:12;19250:19;;18909:366;;;:::o;19281:::-;19423:3;19444:67;19508:2;19503:3;19444:67;:::i;:::-;19437:74;;19520:93;19609:3;19520:93;:::i;:::-;19638:2;19633:3;19629:12;19622:19;;19281:366;;;:::o;19653:118::-;19740:24;19758:5;19740:24;:::i;:::-;19735:3;19728:37;19653:118;;:::o;19777:583::-;19999:3;20021:92;20109:3;20100:6;20021:92;:::i;:::-;20014:99;;20130:95;20221:3;20212:6;20130:95;:::i;:::-;20123:102;;20242:92;20330:3;20321:6;20242:92;:::i;:::-;20235:99;;20351:3;20344:10;;19777:583;;;;;;:::o;20366:379::-;20550:3;20572:147;20715:3;20572:147;:::i;:::-;20565:154;;20736:3;20729:10;;20366:379;;;:::o;20751:222::-;20844:4;20882:2;20871:9;20867:18;20859:26;;20895:71;20963:1;20952:9;20948:17;20939:6;20895:71;:::i;:::-;20751:222;;;;:::o;20979:640::-;21174:4;21212:3;21201:9;21197:19;21189:27;;21226:71;21294:1;21283:9;21279:17;21270:6;21226:71;:::i;:::-;21307:72;21375:2;21364:9;21360:18;21351:6;21307:72;:::i;:::-;21389;21457:2;21446:9;21442:18;21433:6;21389:72;:::i;:::-;21508:9;21502:4;21498:20;21493:2;21482:9;21478:18;21471:48;21536:76;21607:4;21598:6;21536:76;:::i;:::-;21528:84;;20979:640;;;;;;;:::o;21625:210::-;21712:4;21750:2;21739:9;21735:18;21727:26;;21763:65;21825:1;21814:9;21810:17;21801:6;21763:65;:::i;:::-;21625:210;;;;:::o;21841:313::-;21954:4;21992:2;21981:9;21977:18;21969:26;;22041:9;22035:4;22031:20;22027:1;22016:9;22012:17;22005:47;22069:78;22142:4;22133:6;22069:78;:::i;:::-;22061:86;;21841:313;;;;:::o;22160:419::-;22326:4;22364:2;22353:9;22349:18;22341:26;;22413:9;22407:4;22403:20;22399:1;22388:9;22384:17;22377:47;22441:131;22567:4;22441:131;:::i;:::-;22433:139;;22160:419;;;:::o;22585:::-;22751:4;22789:2;22778:9;22774:18;22766:26;;22838:9;22832:4;22828:20;22824:1;22813:9;22809:17;22802:47;22866:131;22992:4;22866:131;:::i;:::-;22858:139;;22585:419;;;:::o;23010:::-;23176:4;23214:2;23203:9;23199:18;23191:26;;23263:9;23257:4;23253:20;23249:1;23238:9;23234:17;23227:47;23291:131;23417:4;23291:131;:::i;:::-;23283:139;;23010:419;;;:::o;23435:::-;23601:4;23639:2;23628:9;23624:18;23616:26;;23688:9;23682:4;23678:20;23674:1;23663:9;23659:17;23652:47;23716:131;23842:4;23716:131;:::i;:::-;23708:139;;23435:419;;;:::o;23860:::-;24026:4;24064:2;24053:9;24049:18;24041:26;;24113:9;24107:4;24103:20;24099:1;24088:9;24084:17;24077:47;24141:131;24267:4;24141:131;:::i;:::-;24133:139;;23860:419;;;:::o;24285:::-;24451:4;24489:2;24478:9;24474:18;24466:26;;24538:9;24532:4;24528:20;24524:1;24513:9;24509:17;24502:47;24566:131;24692:4;24566:131;:::i;:::-;24558:139;;24285:419;;;:::o;24710:::-;24876:4;24914:2;24903:9;24899:18;24891:26;;24963:9;24957:4;24953:20;24949:1;24938:9;24934:17;24927:47;24991:131;25117:4;24991:131;:::i;:::-;24983:139;;24710:419;;;:::o;25135:::-;25301:4;25339:2;25328:9;25324:18;25316:26;;25388:9;25382:4;25378:20;25374:1;25363:9;25359:17;25352:47;25416:131;25542:4;25416:131;:::i;:::-;25408:139;;25135:419;;;:::o;25560:::-;25726:4;25764:2;25753:9;25749:18;25741:26;;25813:9;25807:4;25803:20;25799:1;25788:9;25784:17;25777:47;25841:131;25967:4;25841:131;:::i;:::-;25833:139;;25560:419;;;:::o;25985:::-;26151:4;26189:2;26178:9;26174:18;26166:26;;26238:9;26232:4;26228:20;26224:1;26213:9;26209:17;26202:47;26266:131;26392:4;26266:131;:::i;:::-;26258:139;;25985:419;;;:::o;26410:::-;26576:4;26614:2;26603:9;26599:18;26591:26;;26663:9;26657:4;26653:20;26649:1;26638:9;26634:17;26627:47;26691:131;26817:4;26691:131;:::i;:::-;26683:139;;26410:419;;;:::o;26835:::-;27001:4;27039:2;27028:9;27024:18;27016:26;;27088:9;27082:4;27078:20;27074:1;27063:9;27059:17;27052:47;27116:131;27242:4;27116:131;:::i;:::-;27108:139;;26835:419;;;:::o;27260:::-;27426:4;27464:2;27453:9;27449:18;27441:26;;27513:9;27507:4;27503:20;27499:1;27488:9;27484:17;27477:47;27541:131;27667:4;27541:131;:::i;:::-;27533:139;;27260:419;;;:::o;27685:::-;27851:4;27889:2;27878:9;27874:18;27866:26;;27938:9;27932:4;27928:20;27924:1;27913:9;27909:17;27902:47;27966:131;28092:4;27966:131;:::i;:::-;27958:139;;27685:419;;;:::o;28110:::-;28276:4;28314:2;28303:9;28299:18;28291:26;;28363:9;28357:4;28353:20;28349:1;28338:9;28334:17;28327:47;28391:131;28517:4;28391:131;:::i;:::-;28383:139;;28110:419;;;:::o;28535:::-;28701:4;28739:2;28728:9;28724:18;28716:26;;28788:9;28782:4;28778:20;28774:1;28763:9;28759:17;28752:47;28816:131;28942:4;28816:131;:::i;:::-;28808:139;;28535:419;;;:::o;28960:::-;29126:4;29164:2;29153:9;29149:18;29141:26;;29213:9;29207:4;29203:20;29199:1;29188:9;29184:17;29177:47;29241:131;29367:4;29241:131;:::i;:::-;29233:139;;28960:419;;;:::o;29385:::-;29551:4;29589:2;29578:9;29574:18;29566:26;;29638:9;29632:4;29628:20;29624:1;29613:9;29609:17;29602:47;29666:131;29792:4;29666:131;:::i;:::-;29658:139;;29385:419;;;:::o;29810:::-;29976:4;30014:2;30003:9;29999:18;29991:26;;30063:9;30057:4;30053:20;30049:1;30038:9;30034:17;30027:47;30091:131;30217:4;30091:131;:::i;:::-;30083:139;;29810:419;;;:::o;30235:::-;30401:4;30439:2;30428:9;30424:18;30416:26;;30488:9;30482:4;30478:20;30474:1;30463:9;30459:17;30452:47;30516:131;30642:4;30516:131;:::i;:::-;30508:139;;30235:419;;;:::o;30660:::-;30826:4;30864:2;30853:9;30849:18;30841:26;;30913:9;30907:4;30903:20;30899:1;30888:9;30884:17;30877:47;30941:131;31067:4;30941:131;:::i;:::-;30933:139;;30660:419;;;:::o;31085:::-;31251:4;31289:2;31278:9;31274:18;31266:26;;31338:9;31332:4;31328:20;31324:1;31313:9;31309:17;31302:47;31366:131;31492:4;31366:131;:::i;:::-;31358:139;;31085:419;;;:::o;31510:::-;31676:4;31714:2;31703:9;31699:18;31691:26;;31763:9;31757:4;31753:20;31749:1;31738:9;31734:17;31727:47;31791:131;31917:4;31791:131;:::i;:::-;31783:139;;31510:419;;;:::o;31935:::-;32101:4;32139:2;32128:9;32124:18;32116:26;;32188:9;32182:4;32178:20;32174:1;32163:9;32159:17;32152:47;32216:131;32342:4;32216:131;:::i;:::-;32208:139;;31935:419;;;:::o;32360:::-;32526:4;32564:2;32553:9;32549:18;32541:26;;32613:9;32607:4;32603:20;32599:1;32588:9;32584:17;32577:47;32641:131;32767:4;32641:131;:::i;:::-;32633:139;;32360:419;;;:::o;32785:::-;32951:4;32989:2;32978:9;32974:18;32966:26;;33038:9;33032:4;33028:20;33024:1;33013:9;33009:17;33002:47;33066:131;33192:4;33066:131;:::i;:::-;33058:139;;32785:419;;;:::o;33210:::-;33376:4;33414:2;33403:9;33399:18;33391:26;;33463:9;33457:4;33453:20;33449:1;33438:9;33434:17;33427:47;33491:131;33617:4;33491:131;:::i;:::-;33483:139;;33210:419;;;:::o;33635:222::-;33728:4;33766:2;33755:9;33751:18;33743:26;;33779:71;33847:1;33836:9;33832:17;33823:6;33779:71;:::i;:::-;33635:222;;;;:::o;33863:129::-;33897:6;33924:20;;:::i;:::-;33914:30;;33953:33;33981:4;33973:6;33953:33;:::i;:::-;33863:129;;;:::o;33998:75::-;34031:6;34064:2;34058:9;34048:19;;33998:75;:::o;34079:307::-;34140:4;34230:18;34222:6;34219:30;34216:56;;;34252:18;;:::i;:::-;34216:56;34290:29;34312:6;34290:29;:::i;:::-;34282:37;;34374:4;34368;34364:15;34356:23;;34079:307;;;:::o;34392:141::-;34441:4;34464:3;34456:11;;34487:3;34484:1;34477:14;34521:4;34518:1;34508:18;34500:26;;34392:141;;;:::o;34539:98::-;34590:6;34624:5;34618:12;34608:22;;34539:98;;;:::o;34643:99::-;34695:6;34729:5;34723:12;34713:22;;34643:99;;;:::o;34748:168::-;34831:11;34865:6;34860:3;34853:19;34905:4;34900:3;34896:14;34881:29;;34748:168;;;;:::o;34922:147::-;35023:11;35060:3;35045:18;;34922:147;;;;:::o;35075:169::-;35159:11;35193:6;35188:3;35181:19;35233:4;35228:3;35224:14;35209:29;;35075:169;;;;:::o;35250:148::-;35352:11;35389:3;35374:18;;35250:148;;;;:::o;35404:305::-;35444:3;35463:20;35481:1;35463:20;:::i;:::-;35458:25;;35497:20;35515:1;35497:20;:::i;:::-;35492:25;;35651:1;35583:66;35579:74;35576:1;35573:81;35570:107;;;35657:18;;:::i;:::-;35570:107;35701:1;35698;35694:9;35687:16;;35404:305;;;;:::o;35715:185::-;35755:1;35772:20;35790:1;35772:20;:::i;:::-;35767:25;;35806:20;35824:1;35806:20;:::i;:::-;35801:25;;35845:1;35835:35;;35850:18;;:::i;:::-;35835:35;35892:1;35889;35885:9;35880:14;;35715:185;;;;:::o;35906:348::-;35946:7;35969:20;35987:1;35969:20;:::i;:::-;35964:25;;36003:20;36021:1;36003:20;:::i;:::-;35998:25;;36191:1;36123:66;36119:74;36116:1;36113:81;36108:1;36101:9;36094:17;36090:105;36087:131;;;36198:18;;:::i;:::-;36087:131;36246:1;36243;36239:9;36228:20;;35906:348;;;;:::o;36260:191::-;36300:4;36320:20;36338:1;36320:20;:::i;:::-;36315:25;;36354:20;36372:1;36354:20;:::i;:::-;36349:25;;36393:1;36390;36387:8;36384:34;;;36398:18;;:::i;:::-;36384:34;36443:1;36440;36436:9;36428:17;;36260:191;;;;:::o;36457:96::-;36494:7;36523:24;36541:5;36523:24;:::i;:::-;36512:35;;36457:96;;;:::o;36559:90::-;36593:7;36636:5;36629:13;36622:21;36611:32;;36559:90;;;:::o;36655:149::-;36691:7;36731:66;36724:5;36720:78;36709:89;;36655:149;;;:::o;36810:126::-;36847:7;36887:42;36880:5;36876:54;36865:65;;36810:126;;;:::o;36942:77::-;36979:7;37008:5;36997:16;;36942:77;;;:::o;37025:154::-;37109:6;37104:3;37099;37086:30;37171:1;37162:6;37157:3;37153:16;37146:27;37025:154;;;:::o;37185:307::-;37253:1;37263:113;37277:6;37274:1;37271:13;37263:113;;;37362:1;37357:3;37353:11;37347:18;37343:1;37338:3;37334:11;37327:39;37299:2;37296:1;37292:10;37287:15;;37263:113;;;37394:6;37391:1;37388:13;37385:101;;;37474:1;37465:6;37460:3;37456:16;37449:27;37385:101;37234:258;37185:307;;;:::o;37498:320::-;37542:6;37579:1;37573:4;37569:12;37559:22;;37626:1;37620:4;37616:12;37647:18;37637:81;;37703:4;37695:6;37691:17;37681:27;;37637:81;37765:2;37757:6;37754:14;37734:18;37731:38;37728:84;;;37784:18;;:::i;:::-;37728:84;37549:269;37498:320;;;:::o;37824:281::-;37907:27;37929:4;37907:27;:::i;:::-;37899:6;37895:40;38037:6;38025:10;38022:22;38001:18;37989:10;37986:34;37983:62;37980:88;;;38048:18;;:::i;:::-;37980:88;38088:10;38084:2;38077:22;37867:238;37824:281;;:::o;38111:233::-;38150:3;38173:24;38191:5;38173:24;:::i;:::-;38164:33;;38219:66;38212:5;38209:77;38206:103;;;38289:18;;:::i;:::-;38206:103;38336:1;38329:5;38325:13;38318:20;;38111:233;;;:::o;38350:176::-;38382:1;38399:20;38417:1;38399:20;:::i;:::-;38394:25;;38433:20;38451:1;38433:20;:::i;:::-;38428:25;;38472:1;38462:35;;38477:18;;:::i;:::-;38462:35;38518:1;38515;38511:9;38506:14;;38350:176;;;;:::o;38532:180::-;38580:77;38577:1;38570:88;38677:4;38674:1;38667:15;38701:4;38698:1;38691:15;38718:180;38766:77;38763:1;38756:88;38863:4;38860:1;38853:15;38887:4;38884:1;38877:15;38904:180;38952:77;38949:1;38942:88;39049:4;39046:1;39039:15;39073:4;39070:1;39063:15;39090:180;39138:77;39135:1;39128:88;39235:4;39232:1;39225:15;39259:4;39256:1;39249:15;39276:180;39324:77;39321:1;39314:88;39421:4;39418:1;39411:15;39445:4;39442:1;39435:15;39462:117;39571:1;39568;39561:12;39585:117;39694:1;39691;39684:12;39708:117;39817:1;39814;39807:12;39831:117;39940:1;39937;39930:12;39954:117;40063:1;40060;40053:12;40077:117;40186:1;40183;40176:12;40200:102;40241:6;40292:2;40288:7;40283:2;40276:5;40272:14;40268:28;40258:38;;40200:102;;;:::o;40308:221::-;40448:34;40444:1;40436:6;40432:14;40425:58;40517:4;40512:2;40504:6;40500:15;40493:29;40308:221;:::o;40535:225::-;40675:34;40671:1;40663:6;40659:14;40652:58;40744:8;40739:2;40731:6;40727:15;40720:33;40535:225;:::o;40766:229::-;40906:34;40902:1;40894:6;40890:14;40883:58;40975:12;40970:2;40962:6;40958:15;40951:37;40766:229;:::o;41001:222::-;41141:34;41137:1;41129:6;41125:14;41118:58;41210:5;41205:2;41197:6;41193:15;41186:30;41001:222;:::o;41229:224::-;41369:34;41365:1;41357:6;41353:14;41346:58;41438:7;41433:2;41425:6;41421:15;41414:32;41229:224;:::o;41459:236::-;41599:34;41595:1;41587:6;41583:14;41576:58;41668:19;41663:2;41655:6;41651:15;41644:44;41459:236;:::o;41701:159::-;41841:11;41837:1;41829:6;41825:14;41818:35;41701:159;:::o;41866:244::-;42006:34;42002:1;41994:6;41990:14;41983:58;42075:27;42070:2;42062:6;42058:15;42051:52;41866:244;:::o;42116:230::-;42256:34;42252:1;42244:6;42240:14;42233:58;42325:13;42320:2;42312:6;42308:15;42301:38;42116:230;:::o;42352:171::-;42492:23;42488:1;42480:6;42476:14;42469:47;42352:171;:::o;42529:225::-;42669:34;42665:1;42657:6;42653:14;42646:58;42738:8;42733:2;42725:6;42721:15;42714:33;42529:225;:::o;42760:182::-;42900:34;42896:1;42888:6;42884:14;42877:58;42760:182;:::o;42948:176::-;43088:28;43084:1;43076:6;43072:14;43065:52;42948:176;:::o;43130:237::-;43270:34;43266:1;43258:6;43254:14;43247:58;43339:20;43334:2;43326:6;43322:15;43315:45;43130:237;:::o;43373:178::-;43513:30;43509:1;43501:6;43497:14;43490:54;43373:178;:::o;43557:221::-;43697:34;43693:1;43685:6;43681:14;43674:58;43766:4;43761:2;43753:6;43749:15;43742:29;43557:221;:::o;43784:114::-;;:::o;43904:166::-;44044:18;44040:1;44032:6;44028:14;44021:42;43904:166;:::o;44076:238::-;44216:34;44212:1;44204:6;44200:14;44193:58;44285:21;44280:2;44272:6;44268:15;44261:46;44076:238;:::o;44320:167::-;44460:19;44456:1;44448:6;44444:14;44437:43;44320:167;:::o;44493:168::-;44633:20;44629:1;44621:6;44617:14;44610:44;44493:168;:::o;44667:220::-;44807:34;44803:1;44795:6;44791:14;44784:58;44876:3;44871:2;44863:6;44859:15;44852:28;44667:220;:::o;44893:225::-;45033:34;45029:1;45021:6;45017:14;45010:58;45102:8;45097:2;45089:6;45085:15;45078:33;44893:225;:::o;45124:227::-;45264:34;45260:1;45252:6;45248:14;45241:58;45333:10;45328:2;45320:6;45316:15;45309:35;45124:227;:::o;45357:233::-;45497:34;45493:1;45485:6;45481:14;45474:58;45566:16;45561:2;45553:6;45549:15;45542:41;45357:233;:::o;45596:181::-;45736:33;45732:1;45724:6;45720:14;45713:57;45596:181;:::o;45783:234::-;45923:34;45919:1;45911:6;45907:14;45900:58;45992:17;45987:2;45979:6;45975:15;45968:42;45783:234;:::o;46023:232::-;46163:34;46159:1;46151:6;46147:14;46140:58;46232:15;46227:2;46219:6;46215:15;46208:40;46023:232;:::o;46261:122::-;46334:24;46352:5;46334:24;:::i;:::-;46327:5;46324:35;46314:63;;46373:1;46370;46363:12;46314:63;46261:122;:::o;46389:116::-;46459:21;46474:5;46459:21;:::i;:::-;46452:5;46449:32;46439:60;;46495:1;46492;46485:12;46439:60;46389:116;:::o;46511:120::-;46583:23;46600:5;46583:23;:::i;:::-;46576:5;46573:34;46563:62;;46621:1;46618;46611:12;46563:62;46511:120;:::o;46637:122::-;46710:24;46728:5;46710:24;:::i;:::-;46703:5;46700:35;46690:63;;46749:1;46746;46739:12;46690:63;46637:122;:::o
Swarm Source
ipfs://9586a9a0a5247812f3c9bdfdc197225fd6e298f6c5f067c46c75c40d9a010484
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.