Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 374 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 19819663 | 207 days ago | IN | 0 ETH | 0.00017796 | ||||
Set Approval For... | 18743025 | 358 days ago | IN | 0 ETH | 0.00111223 | ||||
Set Approval For... | 18315129 | 418 days ago | IN | 0 ETH | 0.00032714 | ||||
Set Approval For... | 17037421 | 597 days ago | IN | 0 ETH | 0.00120892 | ||||
Set Approval For... | 16867966 | 621 days ago | IN | 0 ETH | 0.0003203 | ||||
Set Approval For... | 16837831 | 625 days ago | IN | 0 ETH | 0.00085522 | ||||
Set Approval For... | 16667200 | 649 days ago | IN | 0 ETH | 0.00086949 | ||||
Set Approval For... | 16662670 | 650 days ago | IN | 0 ETH | 0.00132929 | ||||
Set Approval For... | 16633755 | 654 days ago | IN | 0 ETH | 0.00109479 | ||||
Set Approval For... | 16632790 | 654 days ago | IN | 0 ETH | 0.00101104 | ||||
Set Approval For... | 16189218 | 716 days ago | IN | 0 ETH | 0.00074059 | ||||
Set Approval For... | 16189189 | 716 days ago | IN | 0 ETH | 0.00072645 | ||||
Set Approval For... | 16112258 | 727 days ago | IN | 0 ETH | 0.00077236 | ||||
Set Approval For... | 15914277 | 755 days ago | IN | 0 ETH | 0.00063648 | ||||
Set Approval For... | 15880868 | 759 days ago | IN | 0 ETH | 0.0004863 | ||||
Set Approval For... | 15861747 | 762 days ago | IN | 0 ETH | 0.00046075 | ||||
Set Approval For... | 15861747 | 762 days ago | IN | 0 ETH | 0.00046158 | ||||
Set Approval For... | 15861747 | 762 days ago | IN | 0 ETH | 0.00046099 | ||||
Set Approval For... | 15857730 | 762 days ago | IN | 0 ETH | 0.00039654 | ||||
Set Approval For... | 15813310 | 769 days ago | IN | 0 ETH | 0.00069968 | ||||
Set Approval For... | 15808157 | 769 days ago | IN | 0 ETH | 0.00057873 | ||||
Safe Transfer Fr... | 15808148 | 769 days ago | IN | 0 ETH | 0.00078681 | ||||
Set Approval For... | 15804869 | 770 days ago | IN | 0 ETH | 0.00085637 | ||||
Set Approval For... | 15804335 | 770 days ago | IN | 0 ETH | 0.00082447 | ||||
Set Approval For... | 15804319 | 770 days ago | IN | 0 ETH | 0.00084544 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
DegenFrogs
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-03 */ // SPDX-License-Identifier: MIT // 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/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/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 (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/degenfrog.sol pragma solidity >=0.7.0 <0.9.0; contract DegenFrogs is ERC721, Ownable, ReentrancyGuard { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string public uriPrefix = "ipfs://QmXH7tGgAB5m661Y69A9JcCL62REBmvep7KNxkSwifdTJG/"; string public uriSuffix = ""; string public hiddenMetadataUri; uint256 public cost = 0 ether; uint256 public maxSupply = 5555; uint256 public maxPerWallet = 100; mapping(address => uint256) public walletMints; bool public paused = false; bool public revealed = true; constructor() ERC721("Degen Frogs", "DGF") { setHiddenMetadataUri("ipfs://__CID__/hidden.json"); } modifier mintCompliance(uint256 quantity_) { require(supply.current() + quantity_ <= maxSupply, "Max supply exceeded!"); require(walletMints[msg.sender] + quantity_ <= maxPerWallet, "Mints per wallet Exceeded"); walletMints[msg.sender] += quantity_; // _; } function totalSupply() public view returns (uint256) { return supply.current(); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); _mintLoop(msg.sender, _mintAmount); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function _mintLoop(address _receiver, uint256 _mintAmount) internal { for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); } } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"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":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051806060016040528060368152602001620041536036913960099080519060200190620000359291906200037b565b5060405180602001604052806000815250600a90805190602001906200005d9291906200037b565b506000600c556115b3600d556064600e556000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550348015620000b157600080fd5b506040518060400160405280600b81526020017f446567656e2046726f67730000000000000000000000000000000000000000008152506040518060400160405280600381526020017f44474600000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001369291906200037b565b5080600190805190602001906200014f9291906200037b565b5050506200017262000166620001c660201b60201c565b620001ce60201b60201c565b6001600781905550620001c06040518060400160405280601a81526020017f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e0000000000008152506200029460201b60201c565b62000513565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a4620002c060201b60201c565b80600b9080519060200190620002bc9291906200037b565b5050565b620002d0620001c660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002f66200035160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200034f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003469062000452565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003899062000485565b90600052602060002090601f016020900481019282620003ad5760008555620003f9565b82601f10620003c857805160ff1916838001178555620003f9565b82800160010185558215620003f9579182015b82811115620003f8578251825591602001919060010190620003db565b5b5090506200040891906200040c565b5090565b5b80821115620004275760008160009055506001016200040d565b5090565b60006200043a60208362000474565b91506200044782620004ea565b602082019050919050565b600060208201905081810360008301526200046d816200042b565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200049e57607f821691505b60208210811415620004b557620004b4620004bb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613c3080620005236000396000f3fe6080604052600436106102045760003560e01c80635c975abb11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610734578063e0a808531461075f578063e985e9c514610788578063f0293fd3146107c5578063f2fde38b1461080257610204565b8063a22cb4651461067a578063a45ba8e7146106a3578063b88d4fde146106ce578063c87b56dd146106f757610204565b8063715018a6116100e7578063715018a6146105c85780637ec4a659146105df5780638da5cb5b1461060857806395d89b4114610633578063a0712d681461065e57610204565b80635c975abb146104f857806362b99ad4146105235780636352211e1461054e57806370a082311461058b57610204565b806323b872dd1161019b57806344a0d68a1161016a57806344a0d68a14610425578063453c23101461044e5780634fdd43cb1461047957806351830227146104a25780635503a0e8146104cd57610204565b806323b872dd1461037f5780633ccfd60b146103a857806342842e0e146103bf578063438b6300146103e857610204565b806313faede6116101d757806313faede6146102d757806316ba10e01461030257806316c38b3c1461032b57806318160ddd1461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612978565b61082b565b60405161023d9190612fa7565b60405180910390f35b34801561025257600080fd5b5061025b61090d565b6040516102689190612fc2565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612a1b565b61099f565b6040516102a59190612f1e565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061290b565b6109e5565b005b3480156102e357600080fd5b506102ec610afd565b6040516102f99190613244565b60405180910390f35b34801561030e57600080fd5b50610329600480360381019061032491906129d2565b610b03565b005b34801561033757600080fd5b50610352600480360381019061034d919061294b565b610b25565b005b34801561036057600080fd5b50610369610b4a565b6040516103769190613244565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a191906127f5565b610b5b565b005b3480156103b457600080fd5b506103bd610bbb565b005b3480156103cb57600080fd5b506103e660048036038101906103e191906127f5565b610c99565b005b3480156103f457600080fd5b5061040f600480360381019061040a9190612788565b610cb9565b60405161041c9190612f85565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190612a1b565b610dc4565b005b34801561045a57600080fd5b50610463610dd6565b6040516104709190613244565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b91906129d2565b610ddc565b005b3480156104ae57600080fd5b506104b7610dfe565b6040516104c49190612fa7565b60405180910390f35b3480156104d957600080fd5b506104e2610e11565b6040516104ef9190612fc2565b60405180910390f35b34801561050457600080fd5b5061050d610e9f565b60405161051a9190612fa7565b60405180910390f35b34801561052f57600080fd5b50610538610eb2565b6040516105459190612fc2565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190612a1b565b610f40565b6040516105829190612f1e565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190612788565b610ff2565b6040516105bf9190613244565b60405180910390f35b3480156105d457600080fd5b506105dd6110aa565b005b3480156105eb57600080fd5b50610606600480360381019061060191906129d2565b6110be565b005b34801561061457600080fd5b5061061d6110e0565b60405161062a9190612f1e565b60405180910390f35b34801561063f57600080fd5b5061064861110a565b6040516106559190612fc2565b60405180910390f35b61067860048036038101906106739190612a1b565b61119c565b005b34801561068657600080fd5b506106a1600480360381019061069c91906128cb565b611389565b005b3480156106af57600080fd5b506106b861139f565b6040516106c59190612fc2565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190612848565b61142d565b005b34801561070357600080fd5b5061071e60048036038101906107199190612a1b565b61148f565b60405161072b9190612fc2565b60405180910390f35b34801561074057600080fd5b506107496115e8565b6040516107569190613244565b60405180910390f35b34801561076b57600080fd5b506107866004803603810190610781919061294b565b6115ee565b005b34801561079457600080fd5b506107af60048036038101906107aa91906127b5565b611613565b6040516107bc9190612fa7565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612788565b6116a7565b6040516107f99190613244565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190612788565b6116bf565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610906575061090582611743565b5b9050919050565b60606000805461091c9061354d565b80601f01602080910402602001604051908101604052809291908181526020018280546109489061354d565b80156109955780601f1061096a57610100808354040283529160200191610995565b820191906000526020600020905b81548152906001019060200180831161097857829003601f168201915b5050505050905090565b60006109aa826117ad565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f082610f40565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a58906131a4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a806117f8565b73ffffffffffffffffffffffffffffffffffffffff161480610aaf5750610aae81610aa96117f8565b611613565b5b610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae5906130e4565b60405180910390fd5b610af88383611800565b505050565b600c5481565b610b0b6118b9565b80600a9080519060200190610b2192919061259c565b5050565b610b2d6118b9565b80601060006101000a81548160ff02191690831515021790555050565b6000610b566008611937565b905090565b610b6c610b666117f8565b82611945565b610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba2906131e4565b60405180910390fd5b610bb68383836119da565b505050565b610bc36118b9565b60026007541415610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090613204565b60405180910390fd5b60026007819055506000610c1b6110e0565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c3e90612f09565b60006040518083038185875af1925050503d8060008114610c7b576040519150601f19603f3d011682016040523d82523d6000602084013e610c80565b606091505b5050905080610c8e57600080fd5b506001600781905550565b610cb48383836040518060200160405280600081525061142d565b505050565b60606000610cc683610ff2565b905060008167ffffffffffffffff811115610ce457610ce36136e6565b5b604051908082528060200260200182016040528015610d125781602001602082028036833780820191505090505b50905060006001905060005b8381108015610d2f5750600d548211155b15610db8576000610d3f83610f40565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610da45782848381518110610d8957610d886136b7565b5b6020026020010181815250508180610da0906135b0565b9250505b8280610daf906135b0565b93505050610d1e565b82945050505050919050565b610dcc6118b9565b80600c8190555050565b600e5481565b610de46118b9565b80600b9080519060200190610dfa92919061259c565b5050565b601060019054906101000a900460ff1681565b600a8054610e1e9061354d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4a9061354d565b8015610e975780601f10610e6c57610100808354040283529160200191610e97565b820191906000526020600020905b815481529060010190602001808311610e7a57829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b60098054610ebf9061354d565b80601f0160208091040260200160405190810160405280929190818152602001828054610eeb9061354d565b8015610f385780601f10610f0d57610100808354040283529160200191610f38565b820191906000526020600020905b815481529060010190602001808311610f1b57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe090613184565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a906130c4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110b26118b9565b6110bc6000611c41565b565b6110c66118b9565b80600990805190602001906110dc92919061259c565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111199061354d565b80601f01602080910402602001604051908101604052809291908181526020018280546111459061354d565b80156111925780601f1061116757610100808354040283529160200191611192565b820191906000526020600020905b81548152906001019060200180831161117557829003601f168201915b5050505050905090565b80600d54816111ab6008611937565b6111b59190613382565b11156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed906131c4565b60405180910390fd5b600e5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112449190613382565b1115611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90613064565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112d49190613382565b92505081905550601060009054906101000a900460ff161561132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290613144565b60405180910390fd5b81600c546113399190613409565b34101561137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137290613224565b60405180910390fd5b6113853383611d07565b5050565b61139b6113946117f8565b8383611d47565b5050565b600b80546113ac9061354d565b80601f01602080910402602001604051908101604052809291908181526020018280546113d89061354d565b80156114255780601f106113fa57610100808354040283529160200191611425565b820191906000526020600020905b81548152906001019060200180831161140857829003601f168201915b505050505081565b61143e6114386117f8565b83611945565b61147d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611474906131e4565b60405180910390fd5b61148984848484611eb4565b50505050565b606061149a82611f10565b6114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d090613164565b60405180910390fd5b60001515601060019054906101000a900460ff161515141561158757600b80546115029061354d565b80601f016020809104026020016040519081016040528092919081815260200182805461152e9061354d565b801561157b5780601f106115505761010080835404028352916020019161157b565b820191906000526020600020905b81548152906001019060200180831161155e57829003601f168201915b505050505090506115e3565b6000611591611f7c565b905060008151116115b157604051806020016040528060008152506115df565b806115bb8461200e565b600a6040516020016115cf93929190612ed8565b6040516020818303038152906040525b9150505b919050565b600d5481565b6115f66118b9565b80601060016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f6020528060005260406000206000915090505481565b6116c76118b9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e90613004565b60405180910390fd5b61174081611c41565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6117b681611f10565b6117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ec90613184565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661187383610f40565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118c16117f8565b73ffffffffffffffffffffffffffffffffffffffff166118df6110e0565b73ffffffffffffffffffffffffffffffffffffffff1614611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90613124565b60405180910390fd5b565b600081600001549050919050565b60008061195183610f40565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061199357506119928185611613565b5b806119d157508373ffffffffffffffffffffffffffffffffffffffff166119b98461099f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119fa82610f40565b73ffffffffffffffffffffffffffffffffffffffff1614611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4790613024565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab790613084565b60405180910390fd5b611acb83838361216f565b611ad6600082611800565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b269190613463565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b7d9190613382565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c3c838383612174565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611d4257611d1c6008612179565b611d2f83611d2a6008611937565b61218f565b8080611d3a906135b0565b915050611d0a565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad906130a4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ea79190612fa7565b60405180910390a3505050565b611ebf8484846119da565b611ecb848484846121ad565b611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0190612fe4565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060098054611f8b9061354d565b80601f0160208091040260200160405190810160405280929190818152602001828054611fb79061354d565b80156120045780601f10611fd957610100808354040283529160200191612004565b820191906000526020600020905b815481529060010190602001808311611fe757829003601f168201915b5050505050905090565b60606000821415612056576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061216a565b600082905060005b60008214612088578080612071906135b0565b915050600a8261208191906133d8565b915061205e565b60008167ffffffffffffffff8111156120a4576120a36136e6565b5b6040519080825280601f01601f1916602001820160405280156120d65781602001600182028036833780820191505090505b5090505b60008514612163576001826120ef9190613463565b9150600a856120fe91906135f9565b603061210a9190613382565b60f81b8183815181106121205761211f6136b7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561215c91906133d8565b94506120da565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6121a9828260405180602001604052806000815250612344565b5050565b60006121ce8473ffffffffffffffffffffffffffffffffffffffff1661239f565b15612337578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121f76117f8565b8786866040518563ffffffff1660e01b81526004016122199493929190612f39565b602060405180830381600087803b15801561223357600080fd5b505af192505050801561226457506040513d601f19601f8201168201806040525081019061226191906129a5565b60015b6122e7573d8060008114612294576040519150601f19603f3d011682016040523d82523d6000602084013e612299565b606091505b506000815114156122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d690612fe4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061233c565b600190505b949350505050565b61234e83836123c2565b61235b60008484846121ad565b61239a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239190612fe4565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242990613104565b60405180910390fd5b61243b81611f10565b1561247b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247290613044565b60405180910390fd5b6124876000838361216f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124d79190613382565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461259860008383612174565b5050565b8280546125a89061354d565b90600052602060002090601f0160209004810192826125ca5760008555612611565b82601f106125e357805160ff1916838001178555612611565b82800160010185558215612611579182015b828111156126105782518255916020019190600101906125f5565b5b50905061261e9190612622565b5090565b5b8082111561263b576000816000905550600101612623565b5090565b600061265261264d84613284565b61325f565b90508281526020810184848401111561266e5761266d61371a565b5b61267984828561350b565b509392505050565b600061269461268f846132b5565b61325f565b9050828152602081018484840111156126b0576126af61371a565b5b6126bb84828561350b565b509392505050565b6000813590506126d281613b9e565b92915050565b6000813590506126e781613bb5565b92915050565b6000813590506126fc81613bcc565b92915050565b60008151905061271181613bcc565b92915050565b600082601f83011261272c5761272b613715565b5b813561273c84826020860161263f565b91505092915050565b600082601f83011261275a57612759613715565b5b813561276a848260208601612681565b91505092915050565b60008135905061278281613be3565b92915050565b60006020828403121561279e5761279d613724565b5b60006127ac848285016126c3565b91505092915050565b600080604083850312156127cc576127cb613724565b5b60006127da858286016126c3565b92505060206127eb858286016126c3565b9150509250929050565b60008060006060848603121561280e5761280d613724565b5b600061281c868287016126c3565b935050602061282d868287016126c3565b925050604061283e86828701612773565b9150509250925092565b6000806000806080858703121561286257612861613724565b5b6000612870878288016126c3565b9450506020612881878288016126c3565b935050604061289287828801612773565b925050606085013567ffffffffffffffff8111156128b3576128b261371f565b5b6128bf87828801612717565b91505092959194509250565b600080604083850312156128e2576128e1613724565b5b60006128f0858286016126c3565b9250506020612901858286016126d8565b9150509250929050565b6000806040838503121561292257612921613724565b5b6000612930858286016126c3565b925050602061294185828601612773565b9150509250929050565b60006020828403121561296157612960613724565b5b600061296f848285016126d8565b91505092915050565b60006020828403121561298e5761298d613724565b5b600061299c848285016126ed565b91505092915050565b6000602082840312156129bb576129ba613724565b5b60006129c984828501612702565b91505092915050565b6000602082840312156129e8576129e7613724565b5b600082013567ffffffffffffffff811115612a0657612a0561371f565b5b612a1284828501612745565b91505092915050565b600060208284031215612a3157612a30613724565b5b6000612a3f84828501612773565b91505092915050565b6000612a548383612eba565b60208301905092915050565b612a6981613497565b82525050565b6000612a7a8261330b565b612a848185613339565b9350612a8f836132e6565b8060005b83811015612ac0578151612aa78882612a48565b9750612ab28361332c565b925050600181019050612a93565b5085935050505092915050565b612ad6816134a9565b82525050565b6000612ae782613316565b612af1818561334a565b9350612b0181856020860161351a565b612b0a81613729565b840191505092915050565b6000612b2082613321565b612b2a8185613366565b9350612b3a81856020860161351a565b612b4381613729565b840191505092915050565b6000612b5982613321565b612b638185613377565b9350612b7381856020860161351a565b80840191505092915050565b60008154612b8c8161354d565b612b968186613377565b94506001821660008114612bb15760018114612bc257612bf5565b60ff19831686528186019350612bf5565b612bcb856132f6565b60005b83811015612bed57815481890152600182019150602081019050612bce565b838801955050505b50505092915050565b6000612c0b603283613366565b9150612c168261373a565b604082019050919050565b6000612c2e602683613366565b9150612c3982613789565b604082019050919050565b6000612c51602583613366565b9150612c5c826137d8565b604082019050919050565b6000612c74601c83613366565b9150612c7f82613827565b602082019050919050565b6000612c97601983613366565b9150612ca282613850565b602082019050919050565b6000612cba602483613366565b9150612cc582613879565b604082019050919050565b6000612cdd601983613366565b9150612ce8826138c8565b602082019050919050565b6000612d00602983613366565b9150612d0b826138f1565b604082019050919050565b6000612d23603e83613366565b9150612d2e82613940565b604082019050919050565b6000612d46602083613366565b9150612d518261398f565b602082019050919050565b6000612d69602083613366565b9150612d74826139b8565b602082019050919050565b6000612d8c601783613366565b9150612d97826139e1565b602082019050919050565b6000612daf602f83613366565b9150612dba82613a0a565b604082019050919050565b6000612dd2601883613366565b9150612ddd82613a59565b602082019050919050565b6000612df5602183613366565b9150612e0082613a82565b604082019050919050565b6000612e1860008361335b565b9150612e2382613ad1565b600082019050919050565b6000612e3b601483613366565b9150612e4682613ad4565b602082019050919050565b6000612e5e602e83613366565b9150612e6982613afd565b604082019050919050565b6000612e81601f83613366565b9150612e8c82613b4c565b602082019050919050565b6000612ea4601383613366565b9150612eaf82613b75565b602082019050919050565b612ec381613501565b82525050565b612ed281613501565b82525050565b6000612ee48286612b4e565b9150612ef08285612b4e565b9150612efc8284612b7f565b9150819050949350505050565b6000612f1482612e0b565b9150819050919050565b6000602082019050612f336000830184612a60565b92915050565b6000608082019050612f4e6000830187612a60565b612f5b6020830186612a60565b612f686040830185612ec9565b8181036060830152612f7a8184612adc565b905095945050505050565b60006020820190508181036000830152612f9f8184612a6f565b905092915050565b6000602082019050612fbc6000830184612acd565b92915050565b60006020820190508181036000830152612fdc8184612b15565b905092915050565b60006020820190508181036000830152612ffd81612bfe565b9050919050565b6000602082019050818103600083015261301d81612c21565b9050919050565b6000602082019050818103600083015261303d81612c44565b9050919050565b6000602082019050818103600083015261305d81612c67565b9050919050565b6000602082019050818103600083015261307d81612c8a565b9050919050565b6000602082019050818103600083015261309d81612cad565b9050919050565b600060208201905081810360008301526130bd81612cd0565b9050919050565b600060208201905081810360008301526130dd81612cf3565b9050919050565b600060208201905081810360008301526130fd81612d16565b9050919050565b6000602082019050818103600083015261311d81612d39565b9050919050565b6000602082019050818103600083015261313d81612d5c565b9050919050565b6000602082019050818103600083015261315d81612d7f565b9050919050565b6000602082019050818103600083015261317d81612da2565b9050919050565b6000602082019050818103600083015261319d81612dc5565b9050919050565b600060208201905081810360008301526131bd81612de8565b9050919050565b600060208201905081810360008301526131dd81612e2e565b9050919050565b600060208201905081810360008301526131fd81612e51565b9050919050565b6000602082019050818103600083015261321d81612e74565b9050919050565b6000602082019050818103600083015261323d81612e97565b9050919050565b60006020820190506132596000830184612ec9565b92915050565b600061326961327a565b9050613275828261357f565b919050565b6000604051905090565b600067ffffffffffffffff82111561329f5761329e6136e6565b5b6132a882613729565b9050602081019050919050565b600067ffffffffffffffff8211156132d0576132cf6136e6565b5b6132d982613729565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061338d82613501565b915061339883613501565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133cd576133cc61362a565b5b828201905092915050565b60006133e382613501565b91506133ee83613501565b9250826133fe576133fd613659565b5b828204905092915050565b600061341482613501565b915061341f83613501565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134585761345761362a565b5b828202905092915050565b600061346e82613501565b915061347983613501565b92508282101561348c5761348b61362a565b5b828203905092915050565b60006134a2826134e1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561353857808201518184015260208101905061351d565b83811115613547576000848401525b50505050565b6000600282049050600182168061356557607f821691505b6020821081141561357957613578613688565b5b50919050565b61358882613729565b810181811067ffffffffffffffff821117156135a7576135a66136e6565b5b80604052505050565b60006135bb82613501565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135ee576135ed61362a565b5b600182019050919050565b600061360482613501565b915061360f83613501565b92508261361f5761361e613659565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e7473207065722077616c6c657420457863656564656400000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613ba781613497565b8114613bb257600080fd5b50565b613bbe816134a9565b8114613bc957600080fd5b50565b613bd5816134b5565b8114613be057600080fd5b50565b613bec81613501565b8114613bf757600080fd5b5056fea2646970667358221220c4e3c356725df4f9597cf9054509ac00cccc10426ca4ed8d774cc5f3040b971b64736f6c63430008070033697066733a2f2f516d5848377447674142356d36363159363941394a63434c36325245426d766570374b4e786b5377696664544a472f
Deployed Bytecode
0x6080604052600436106102045760003560e01c80635c975abb11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610734578063e0a808531461075f578063e985e9c514610788578063f0293fd3146107c5578063f2fde38b1461080257610204565b8063a22cb4651461067a578063a45ba8e7146106a3578063b88d4fde146106ce578063c87b56dd146106f757610204565b8063715018a6116100e7578063715018a6146105c85780637ec4a659146105df5780638da5cb5b1461060857806395d89b4114610633578063a0712d681461065e57610204565b80635c975abb146104f857806362b99ad4146105235780636352211e1461054e57806370a082311461058b57610204565b806323b872dd1161019b57806344a0d68a1161016a57806344a0d68a14610425578063453c23101461044e5780634fdd43cb1461047957806351830227146104a25780635503a0e8146104cd57610204565b806323b872dd1461037f5780633ccfd60b146103a857806342842e0e146103bf578063438b6300146103e857610204565b806313faede6116101d757806313faede6146102d757806316ba10e01461030257806316c38b3c1461032b57806318160ddd1461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612978565b61082b565b60405161023d9190612fa7565b60405180910390f35b34801561025257600080fd5b5061025b61090d565b6040516102689190612fc2565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612a1b565b61099f565b6040516102a59190612f1e565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061290b565b6109e5565b005b3480156102e357600080fd5b506102ec610afd565b6040516102f99190613244565b60405180910390f35b34801561030e57600080fd5b50610329600480360381019061032491906129d2565b610b03565b005b34801561033757600080fd5b50610352600480360381019061034d919061294b565b610b25565b005b34801561036057600080fd5b50610369610b4a565b6040516103769190613244565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a191906127f5565b610b5b565b005b3480156103b457600080fd5b506103bd610bbb565b005b3480156103cb57600080fd5b506103e660048036038101906103e191906127f5565b610c99565b005b3480156103f457600080fd5b5061040f600480360381019061040a9190612788565b610cb9565b60405161041c9190612f85565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190612a1b565b610dc4565b005b34801561045a57600080fd5b50610463610dd6565b6040516104709190613244565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b91906129d2565b610ddc565b005b3480156104ae57600080fd5b506104b7610dfe565b6040516104c49190612fa7565b60405180910390f35b3480156104d957600080fd5b506104e2610e11565b6040516104ef9190612fc2565b60405180910390f35b34801561050457600080fd5b5061050d610e9f565b60405161051a9190612fa7565b60405180910390f35b34801561052f57600080fd5b50610538610eb2565b6040516105459190612fc2565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190612a1b565b610f40565b6040516105829190612f1e565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190612788565b610ff2565b6040516105bf9190613244565b60405180910390f35b3480156105d457600080fd5b506105dd6110aa565b005b3480156105eb57600080fd5b50610606600480360381019061060191906129d2565b6110be565b005b34801561061457600080fd5b5061061d6110e0565b60405161062a9190612f1e565b60405180910390f35b34801561063f57600080fd5b5061064861110a565b6040516106559190612fc2565b60405180910390f35b61067860048036038101906106739190612a1b565b61119c565b005b34801561068657600080fd5b506106a1600480360381019061069c91906128cb565b611389565b005b3480156106af57600080fd5b506106b861139f565b6040516106c59190612fc2565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190612848565b61142d565b005b34801561070357600080fd5b5061071e60048036038101906107199190612a1b565b61148f565b60405161072b9190612fc2565b60405180910390f35b34801561074057600080fd5b506107496115e8565b6040516107569190613244565b60405180910390f35b34801561076b57600080fd5b506107866004803603810190610781919061294b565b6115ee565b005b34801561079457600080fd5b506107af60048036038101906107aa91906127b5565b611613565b6040516107bc9190612fa7565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612788565b6116a7565b6040516107f99190613244565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190612788565b6116bf565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610906575061090582611743565b5b9050919050565b60606000805461091c9061354d565b80601f01602080910402602001604051908101604052809291908181526020018280546109489061354d565b80156109955780601f1061096a57610100808354040283529160200191610995565b820191906000526020600020905b81548152906001019060200180831161097857829003601f168201915b5050505050905090565b60006109aa826117ad565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f082610f40565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a58906131a4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a806117f8565b73ffffffffffffffffffffffffffffffffffffffff161480610aaf5750610aae81610aa96117f8565b611613565b5b610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae5906130e4565b60405180910390fd5b610af88383611800565b505050565b600c5481565b610b0b6118b9565b80600a9080519060200190610b2192919061259c565b5050565b610b2d6118b9565b80601060006101000a81548160ff02191690831515021790555050565b6000610b566008611937565b905090565b610b6c610b666117f8565b82611945565b610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba2906131e4565b60405180910390fd5b610bb68383836119da565b505050565b610bc36118b9565b60026007541415610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090613204565b60405180910390fd5b60026007819055506000610c1b6110e0565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c3e90612f09565b60006040518083038185875af1925050503d8060008114610c7b576040519150601f19603f3d011682016040523d82523d6000602084013e610c80565b606091505b5050905080610c8e57600080fd5b506001600781905550565b610cb48383836040518060200160405280600081525061142d565b505050565b60606000610cc683610ff2565b905060008167ffffffffffffffff811115610ce457610ce36136e6565b5b604051908082528060200260200182016040528015610d125781602001602082028036833780820191505090505b50905060006001905060005b8381108015610d2f5750600d548211155b15610db8576000610d3f83610f40565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610da45782848381518110610d8957610d886136b7565b5b6020026020010181815250508180610da0906135b0565b9250505b8280610daf906135b0565b93505050610d1e565b82945050505050919050565b610dcc6118b9565b80600c8190555050565b600e5481565b610de46118b9565b80600b9080519060200190610dfa92919061259c565b5050565b601060019054906101000a900460ff1681565b600a8054610e1e9061354d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4a9061354d565b8015610e975780601f10610e6c57610100808354040283529160200191610e97565b820191906000526020600020905b815481529060010190602001808311610e7a57829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b60098054610ebf9061354d565b80601f0160208091040260200160405190810160405280929190818152602001828054610eeb9061354d565b8015610f385780601f10610f0d57610100808354040283529160200191610f38565b820191906000526020600020905b815481529060010190602001808311610f1b57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe090613184565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a906130c4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110b26118b9565b6110bc6000611c41565b565b6110c66118b9565b80600990805190602001906110dc92919061259c565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111199061354d565b80601f01602080910402602001604051908101604052809291908181526020018280546111459061354d565b80156111925780601f1061116757610100808354040283529160200191611192565b820191906000526020600020905b81548152906001019060200180831161117557829003601f168201915b5050505050905090565b80600d54816111ab6008611937565b6111b59190613382565b11156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed906131c4565b60405180910390fd5b600e5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112449190613382565b1115611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90613064565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112d49190613382565b92505081905550601060009054906101000a900460ff161561132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290613144565b60405180910390fd5b81600c546113399190613409565b34101561137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137290613224565b60405180910390fd5b6113853383611d07565b5050565b61139b6113946117f8565b8383611d47565b5050565b600b80546113ac9061354d565b80601f01602080910402602001604051908101604052809291908181526020018280546113d89061354d565b80156114255780601f106113fa57610100808354040283529160200191611425565b820191906000526020600020905b81548152906001019060200180831161140857829003601f168201915b505050505081565b61143e6114386117f8565b83611945565b61147d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611474906131e4565b60405180910390fd5b61148984848484611eb4565b50505050565b606061149a82611f10565b6114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d090613164565b60405180910390fd5b60001515601060019054906101000a900460ff161515141561158757600b80546115029061354d565b80601f016020809104026020016040519081016040528092919081815260200182805461152e9061354d565b801561157b5780601f106115505761010080835404028352916020019161157b565b820191906000526020600020905b81548152906001019060200180831161155e57829003601f168201915b505050505090506115e3565b6000611591611f7c565b905060008151116115b157604051806020016040528060008152506115df565b806115bb8461200e565b600a6040516020016115cf93929190612ed8565b6040516020818303038152906040525b9150505b919050565b600d5481565b6115f66118b9565b80601060016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f6020528060005260406000206000915090505481565b6116c76118b9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e90613004565b60405180910390fd5b61174081611c41565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6117b681611f10565b6117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ec90613184565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661187383610f40565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118c16117f8565b73ffffffffffffffffffffffffffffffffffffffff166118df6110e0565b73ffffffffffffffffffffffffffffffffffffffff1614611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90613124565b60405180910390fd5b565b600081600001549050919050565b60008061195183610f40565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061199357506119928185611613565b5b806119d157508373ffffffffffffffffffffffffffffffffffffffff166119b98461099f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119fa82610f40565b73ffffffffffffffffffffffffffffffffffffffff1614611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4790613024565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab790613084565b60405180910390fd5b611acb83838361216f565b611ad6600082611800565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b269190613463565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b7d9190613382565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c3c838383612174565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611d4257611d1c6008612179565b611d2f83611d2a6008611937565b61218f565b8080611d3a906135b0565b915050611d0a565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad906130a4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ea79190612fa7565b60405180910390a3505050565b611ebf8484846119da565b611ecb848484846121ad565b611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0190612fe4565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060098054611f8b9061354d565b80601f0160208091040260200160405190810160405280929190818152602001828054611fb79061354d565b80156120045780601f10611fd957610100808354040283529160200191612004565b820191906000526020600020905b815481529060010190602001808311611fe757829003601f168201915b5050505050905090565b60606000821415612056576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061216a565b600082905060005b60008214612088578080612071906135b0565b915050600a8261208191906133d8565b915061205e565b60008167ffffffffffffffff8111156120a4576120a36136e6565b5b6040519080825280601f01601f1916602001820160405280156120d65781602001600182028036833780820191505090505b5090505b60008514612163576001826120ef9190613463565b9150600a856120fe91906135f9565b603061210a9190613382565b60f81b8183815181106121205761211f6136b7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561215c91906133d8565b94506120da565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6121a9828260405180602001604052806000815250612344565b5050565b60006121ce8473ffffffffffffffffffffffffffffffffffffffff1661239f565b15612337578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121f76117f8565b8786866040518563ffffffff1660e01b81526004016122199493929190612f39565b602060405180830381600087803b15801561223357600080fd5b505af192505050801561226457506040513d601f19601f8201168201806040525081019061226191906129a5565b60015b6122e7573d8060008114612294576040519150601f19603f3d011682016040523d82523d6000602084013e612299565b606091505b506000815114156122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d690612fe4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061233c565b600190505b949350505050565b61234e83836123c2565b61235b60008484846121ad565b61239a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239190612fe4565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242990613104565b60405180910390fd5b61243b81611f10565b1561247b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247290613044565b60405180910390fd5b6124876000838361216f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124d79190613382565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461259860008383612174565b5050565b8280546125a89061354d565b90600052602060002090601f0160209004810192826125ca5760008555612611565b82601f106125e357805160ff1916838001178555612611565b82800160010185558215612611579182015b828111156126105782518255916020019190600101906125f5565b5b50905061261e9190612622565b5090565b5b8082111561263b576000816000905550600101612623565b5090565b600061265261264d84613284565b61325f565b90508281526020810184848401111561266e5761266d61371a565b5b61267984828561350b565b509392505050565b600061269461268f846132b5565b61325f565b9050828152602081018484840111156126b0576126af61371a565b5b6126bb84828561350b565b509392505050565b6000813590506126d281613b9e565b92915050565b6000813590506126e781613bb5565b92915050565b6000813590506126fc81613bcc565b92915050565b60008151905061271181613bcc565b92915050565b600082601f83011261272c5761272b613715565b5b813561273c84826020860161263f565b91505092915050565b600082601f83011261275a57612759613715565b5b813561276a848260208601612681565b91505092915050565b60008135905061278281613be3565b92915050565b60006020828403121561279e5761279d613724565b5b60006127ac848285016126c3565b91505092915050565b600080604083850312156127cc576127cb613724565b5b60006127da858286016126c3565b92505060206127eb858286016126c3565b9150509250929050565b60008060006060848603121561280e5761280d613724565b5b600061281c868287016126c3565b935050602061282d868287016126c3565b925050604061283e86828701612773565b9150509250925092565b6000806000806080858703121561286257612861613724565b5b6000612870878288016126c3565b9450506020612881878288016126c3565b935050604061289287828801612773565b925050606085013567ffffffffffffffff8111156128b3576128b261371f565b5b6128bf87828801612717565b91505092959194509250565b600080604083850312156128e2576128e1613724565b5b60006128f0858286016126c3565b9250506020612901858286016126d8565b9150509250929050565b6000806040838503121561292257612921613724565b5b6000612930858286016126c3565b925050602061294185828601612773565b9150509250929050565b60006020828403121561296157612960613724565b5b600061296f848285016126d8565b91505092915050565b60006020828403121561298e5761298d613724565b5b600061299c848285016126ed565b91505092915050565b6000602082840312156129bb576129ba613724565b5b60006129c984828501612702565b91505092915050565b6000602082840312156129e8576129e7613724565b5b600082013567ffffffffffffffff811115612a0657612a0561371f565b5b612a1284828501612745565b91505092915050565b600060208284031215612a3157612a30613724565b5b6000612a3f84828501612773565b91505092915050565b6000612a548383612eba565b60208301905092915050565b612a6981613497565b82525050565b6000612a7a8261330b565b612a848185613339565b9350612a8f836132e6565b8060005b83811015612ac0578151612aa78882612a48565b9750612ab28361332c565b925050600181019050612a93565b5085935050505092915050565b612ad6816134a9565b82525050565b6000612ae782613316565b612af1818561334a565b9350612b0181856020860161351a565b612b0a81613729565b840191505092915050565b6000612b2082613321565b612b2a8185613366565b9350612b3a81856020860161351a565b612b4381613729565b840191505092915050565b6000612b5982613321565b612b638185613377565b9350612b7381856020860161351a565b80840191505092915050565b60008154612b8c8161354d565b612b968186613377565b94506001821660008114612bb15760018114612bc257612bf5565b60ff19831686528186019350612bf5565b612bcb856132f6565b60005b83811015612bed57815481890152600182019150602081019050612bce565b838801955050505b50505092915050565b6000612c0b603283613366565b9150612c168261373a565b604082019050919050565b6000612c2e602683613366565b9150612c3982613789565b604082019050919050565b6000612c51602583613366565b9150612c5c826137d8565b604082019050919050565b6000612c74601c83613366565b9150612c7f82613827565b602082019050919050565b6000612c97601983613366565b9150612ca282613850565b602082019050919050565b6000612cba602483613366565b9150612cc582613879565b604082019050919050565b6000612cdd601983613366565b9150612ce8826138c8565b602082019050919050565b6000612d00602983613366565b9150612d0b826138f1565b604082019050919050565b6000612d23603e83613366565b9150612d2e82613940565b604082019050919050565b6000612d46602083613366565b9150612d518261398f565b602082019050919050565b6000612d69602083613366565b9150612d74826139b8565b602082019050919050565b6000612d8c601783613366565b9150612d97826139e1565b602082019050919050565b6000612daf602f83613366565b9150612dba82613a0a565b604082019050919050565b6000612dd2601883613366565b9150612ddd82613a59565b602082019050919050565b6000612df5602183613366565b9150612e0082613a82565b604082019050919050565b6000612e1860008361335b565b9150612e2382613ad1565b600082019050919050565b6000612e3b601483613366565b9150612e4682613ad4565b602082019050919050565b6000612e5e602e83613366565b9150612e6982613afd565b604082019050919050565b6000612e81601f83613366565b9150612e8c82613b4c565b602082019050919050565b6000612ea4601383613366565b9150612eaf82613b75565b602082019050919050565b612ec381613501565b82525050565b612ed281613501565b82525050565b6000612ee48286612b4e565b9150612ef08285612b4e565b9150612efc8284612b7f565b9150819050949350505050565b6000612f1482612e0b565b9150819050919050565b6000602082019050612f336000830184612a60565b92915050565b6000608082019050612f4e6000830187612a60565b612f5b6020830186612a60565b612f686040830185612ec9565b8181036060830152612f7a8184612adc565b905095945050505050565b60006020820190508181036000830152612f9f8184612a6f565b905092915050565b6000602082019050612fbc6000830184612acd565b92915050565b60006020820190508181036000830152612fdc8184612b15565b905092915050565b60006020820190508181036000830152612ffd81612bfe565b9050919050565b6000602082019050818103600083015261301d81612c21565b9050919050565b6000602082019050818103600083015261303d81612c44565b9050919050565b6000602082019050818103600083015261305d81612c67565b9050919050565b6000602082019050818103600083015261307d81612c8a565b9050919050565b6000602082019050818103600083015261309d81612cad565b9050919050565b600060208201905081810360008301526130bd81612cd0565b9050919050565b600060208201905081810360008301526130dd81612cf3565b9050919050565b600060208201905081810360008301526130fd81612d16565b9050919050565b6000602082019050818103600083015261311d81612d39565b9050919050565b6000602082019050818103600083015261313d81612d5c565b9050919050565b6000602082019050818103600083015261315d81612d7f565b9050919050565b6000602082019050818103600083015261317d81612da2565b9050919050565b6000602082019050818103600083015261319d81612dc5565b9050919050565b600060208201905081810360008301526131bd81612de8565b9050919050565b600060208201905081810360008301526131dd81612e2e565b9050919050565b600060208201905081810360008301526131fd81612e51565b9050919050565b6000602082019050818103600083015261321d81612e74565b9050919050565b6000602082019050818103600083015261323d81612e97565b9050919050565b60006020820190506132596000830184612ec9565b92915050565b600061326961327a565b9050613275828261357f565b919050565b6000604051905090565b600067ffffffffffffffff82111561329f5761329e6136e6565b5b6132a882613729565b9050602081019050919050565b600067ffffffffffffffff8211156132d0576132cf6136e6565b5b6132d982613729565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061338d82613501565b915061339883613501565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133cd576133cc61362a565b5b828201905092915050565b60006133e382613501565b91506133ee83613501565b9250826133fe576133fd613659565b5b828204905092915050565b600061341482613501565b915061341f83613501565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134585761345761362a565b5b828202905092915050565b600061346e82613501565b915061347983613501565b92508282101561348c5761348b61362a565b5b828203905092915050565b60006134a2826134e1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561353857808201518184015260208101905061351d565b83811115613547576000848401525b50505050565b6000600282049050600182168061356557607f821691505b6020821081141561357957613578613688565b5b50919050565b61358882613729565b810181811067ffffffffffffffff821117156135a7576135a66136e6565b5b80604052505050565b60006135bb82613501565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135ee576135ed61362a565b5b600182019050919050565b600061360482613501565b915061360f83613501565b92508261361f5761361e613659565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e7473207065722077616c6c657420457863656564656400000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613ba781613497565b8114613bb257600080fd5b50565b613bbe816134a9565b8114613bc957600080fd5b50565b613bd5816134b5565b8114613be057600080fd5b50565b613bec81613501565b8114613bf757600080fd5b5056fea2646970667358221220c4e3c356725df4f9597cf9054509ac00cccc10426ca4ed8d774cc5f3040b971b64736f6c63430008070033
Deployed Bytecode Sourcemap
42259:3542:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28994:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29921:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31434:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30951:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42590:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45131:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45237:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43227:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32134:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45320:158;;;;;;;;;;;;;:::i;:::-;;32541:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43577:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44805:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42660:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44887:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42784:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42517:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42753:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42430:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29632:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29363:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9530:103;;;;;;;;;;;;;:::i;:::-;;45025:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8882:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30090:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43322:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31677:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42550:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32797:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44218:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42624:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44718:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31903:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42700:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9788:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28994:305;29096:4;29148:25;29133:40;;;:11;:40;;;;:105;;;;29205:33;29190:48;;;:11;:48;;;;29133:105;:158;;;;29255:36;29279:11;29255:23;:36::i;:::-;29133:158;29113:178;;28994:305;;;:::o;29921:100::-;29975:13;30008:5;30001:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29921:100;:::o;31434:171::-;31510:7;31530:23;31545:7;31530:14;:23::i;:::-;31573:15;:24;31589:7;31573:24;;;;;;;;;;;;;;;;;;;;;31566:31;;31434:171;;;:::o;30951:417::-;31032:13;31048:23;31063:7;31048:14;:23::i;:::-;31032:39;;31096:5;31090:11;;:2;:11;;;;31082:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;31190:5;31174:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;31199:37;31216:5;31223:12;:10;:12::i;:::-;31199:16;:37::i;:::-;31174:62;31152:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;31339:21;31348:2;31352:7;31339:8;:21::i;:::-;31021:347;30951:417;;:::o;42590:29::-;;;;:::o;45131:100::-;8768:13;:11;:13::i;:::-;45215:10:::1;45203:9;:22;;;;;;;;;;;;:::i;:::-;;45131:100:::0;:::o;45237:77::-;8768:13;:11;:13::i;:::-;45302:6:::1;45293;;:15;;;;;;;;;;;;;;;;;;45237:77:::0;:::o;43227:89::-;43271:7;43294:16;:6;:14;:16::i;:::-;43287:23;;43227:89;:::o;32134:336::-;32329:41;32348:12;:10;:12::i;:::-;32362:7;32329:18;:41::i;:::-;32321:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;32434:28;32444:4;32450:2;32454:7;32434:9;:28::i;:::-;32134:336;;;:::o;45320:158::-;8768:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;45380:7:::2;45401;:5;:7::i;:::-;45393:21;;45422;45393:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45379:69;;;45463:2;45455:11;;;::::0;::::2;;45370:108;1801:1:::1;2755:7;:22;;;;45320:158::o:0;32541:185::-;32679:39;32696:4;32702:2;32706:7;32679:39;;;;;;;;;;;;:16;:39::i;:::-;32541:185;;;:::o;43577:635::-;43652:16;43680:23;43706:17;43716:6;43706:9;:17::i;:::-;43680:43;;43730:30;43777:15;43763:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43730:63;;43800:22;43825:1;43800:26;;43833:23;43869:309;43894:15;43876;:33;:64;;;;;43931:9;;43913:14;:27;;43876:64;43869:309;;;43951:25;43979:23;43987:14;43979:7;:23::i;:::-;43951:51;;44038:6;44017:27;;:17;:27;;;44013:131;;;44090:14;44057:13;44071:15;44057:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;44117:17;;;;;:::i;:::-;;;;44013:131;44154:16;;;;;:::i;:::-;;;;43942:236;43869:309;;;44193:13;44186:20;;;;;;43577:635;;;:::o;44805:74::-;8768:13;:11;:13::i;:::-;44868:5:::1;44861:4;:12;;;;44805:74:::0;:::o;42660:33::-;;;;:::o;44887:132::-;8768:13;:11;:13::i;:::-;44995:18:::1;44975:17;:38;;;;;;;;;;;;:::i;:::-;;44887:132:::0;:::o;42784:27::-;;;;;;;;;;;;;:::o;42517:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42753:26::-;;;;;;;;;;;;;:::o;42430:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29632:222::-;29704:7;29724:13;29740:7;:16;29748:7;29740:16;;;;;;;;;;;;;;;;;;;;;29724:32;;29792:1;29775:19;;:5;:19;;;;29767:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;29841:5;29834:12;;;29632:222;;;:::o;29363:207::-;29435:7;29480:1;29463:19;;:5;:19;;;;29455:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29546:9;:16;29556:5;29546:16;;;;;;;;;;;;;;;;29539:23;;29363:207;;;:::o;9530:103::-;8768:13;:11;:13::i;:::-;9595:30:::1;9622:1;9595:18;:30::i;:::-;9530:103::o:0;45025:100::-;8768:13;:11;:13::i;:::-;45109:10:::1;45097:9;:22;;;;;;;;;;;;:::i;:::-;;45025:100:::0;:::o;8882:87::-;8928:7;8955:6;;;;;;;;;;;8948:13;;8882:87;:::o;30090:104::-;30146:13;30179:7;30172:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30090:104;:::o;43322:247::-;43387:11;43021:9;;43008;42989:16;:6;:14;:16::i;:::-;:28;;;;:::i;:::-;:41;;42981:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;43110:12;;43097:9;43071:11;:23;43083:10;43071:23;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:51;;43063:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;43190:9;43163:11;:23;43175:10;43163:23;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;43416:6:::1;;;;;;;;;;;43415:7;43407:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;43485:11;43478:4;;:18;;;;:::i;:::-;43465:9;:31;;43457:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43529:34;43539:10;43551:11;43529:9;:34::i;:::-;43322:247:::0;;:::o;31677:155::-;31772:52;31791:12;:10;:12::i;:::-;31805:8;31815;31772:18;:52::i;:::-;31677:155;;:::o;42550:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32797:323::-;32971:41;32990:12;:10;:12::i;:::-;33004:7;32971:18;:41::i;:::-;32963:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;33074:38;33088:4;33094:2;33098:7;33107:4;33074:13;:38::i;:::-;32797:323;;;;:::o;44218:494::-;44317:13;44358:17;44366:8;44358:7;:17::i;:::-;44342:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;44465:5;44453:17;;:8;;;;;;;;;;;:17;;;44449:64;;;44488:17;44481:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44449:64;44521:28;44552:10;:8;:10::i;:::-;44521:41;;44607:1;44582:14;44576:28;:32;:130;;;;;;;;;;;;;;;;;44644:14;44660:19;:8;:17;:19::i;:::-;44681:9;44627:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44576:130;44569:137;;;44218:494;;;;:::o;42624:31::-;;;;:::o;44718:81::-;8768:13;:11;:13::i;:::-;44787:6:::1;44776:8;;:17;;;;;;;;;;;;;;;;;;44718:81:::0;:::o;31903:164::-;32000:4;32024:18;:25;32043:5;32024:25;;;;;;;;;;;;;;;:35;32050:8;32024:35;;;;;;;;;;;;;;;;;;;;;;;;;32017:42;;31903:164;;;;:::o;42700:46::-;;;;;;;;;;;;;;;;;:::o;9788:201::-;8768:13;:11;:13::i;:::-;9897:1:::1;9877:22;;:8;:22;;;;9869:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9953:28;9972:8;9953:18;:28::i;:::-;9788:201:::0;:::o;21736:157::-;21821:4;21860:25;21845:40;;;:11;:40;;;;21838:47;;21736:157;;;:::o;39409:135::-;39491:16;39499:7;39491;:16::i;:::-;39483:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;39409:135;:::o;7433:98::-;7486:7;7513:10;7506:17;;7433:98;:::o;38688:174::-;38790:2;38763:15;:24;38779:7;38763:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38846:7;38842:2;38808:46;;38817:23;38832:7;38817:14;:23::i;:::-;38808:46;;;;;;;;;;;;38688:174;;:::o;9047:132::-;9122:12;:10;:12::i;:::-;9111:23;;:7;:5;:7::i;:::-;:23;;;9103:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9047:132::o;3664:114::-;3729:7;3756;:14;;;3749:21;;3664:114;;;:::o;34921:264::-;35014:4;35031:13;35047:23;35062:7;35047:14;:23::i;:::-;35031:39;;35100:5;35089:16;;:7;:16;;;:52;;;;35109:32;35126:5;35133:7;35109:16;:32::i;:::-;35089:52;:87;;;;35169:7;35145:31;;:20;35157:7;35145:11;:20::i;:::-;:31;;;35089:87;35081:96;;;34921:264;;;;:::o;37944:625::-;38103:4;38076:31;;:23;38091:7;38076:14;:23::i;:::-;:31;;;38068:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;38182:1;38168:16;;:2;:16;;;;38160:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;38238:39;38259:4;38265:2;38269:7;38238:20;:39::i;:::-;38342:29;38359:1;38363:7;38342:8;:29::i;:::-;38403:1;38384:9;:15;38394:4;38384:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;38432:1;38415:9;:13;38425:2;38415:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38463:2;38444:7;:16;38452:7;38444:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38502:7;38498:2;38483:27;;38492:4;38483:27;;;;;;;;;;;;38523:38;38543:4;38549:2;38553:7;38523:19;:38::i;:::-;37944:625;;;:::o;10149:191::-;10223:16;10242:6;;;;;;;;;;;10223:25;;10268:8;10259:6;;:17;;;;;;;;;;;;;;;;;;10323:8;10292:40;;10313:8;10292:40;;;;;;;;;;;;10212:128;10149:191;:::o;45484:204::-;45564:9;45559:124;45583:11;45579:1;:15;45559:124;;;45610:18;:6;:16;:18::i;:::-;45637:38;45647:9;45658:16;:6;:14;:16::i;:::-;45637:9;:38::i;:::-;45596:3;;;;;:::i;:::-;;;;45559:124;;;;45484:204;;:::o;39005:315::-;39160:8;39151:17;;:5;:17;;;;39143:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;39247:8;39209:18;:25;39228:5;39209:25;;;;;;;;;;;;;;;:35;39235:8;39209:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39293:8;39271:41;;39286:5;39271:41;;;39303:8;39271:41;;;;;;:::i;:::-;;;;;;;;39005:315;;;:::o;34001:313::-;34157:28;34167:4;34173:2;34177:7;34157:9;:28::i;:::-;34204:47;34227:4;34233:2;34237:7;34246:4;34204:22;:47::i;:::-;34196:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;34001:313;;;;:::o;34627:127::-;34692:4;34744:1;34716:30;;:7;:16;34724:7;34716:16;;;;;;;;;;;;;;;;;;;;;:30;;;;34709:37;;34627:127;;;:::o;45694:104::-;45754:13;45783:9;45776:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45694:104;:::o;4687:723::-;4743:13;4973:1;4964:5;:10;4960:53;;;4991:10;;;;;;;;;;;;;;;;;;;;;4960:53;5023:12;5038:5;5023:20;;5054:14;5079:78;5094:1;5086:4;:9;5079:78;;5112:8;;;;;:::i;:::-;;;;5143:2;5135:10;;;;;:::i;:::-;;;5079:78;;;5167:19;5199:6;5189:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5167:39;;5217:154;5233:1;5224:5;:10;5217:154;;5261:1;5251:11;;;;;:::i;:::-;;;5328:2;5320:5;:10;;;;:::i;:::-;5307:2;:24;;;;:::i;:::-;5294:39;;5277:6;5284;5277:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;5357:2;5348:11;;;;;:::i;:::-;;;5217:154;;;5395:6;5381:21;;;;;4687:723;;;;:::o;41533:126::-;;;;:::o;42044:125::-;;;;:::o;3786:127::-;3893:1;3875:7;:14;;;:19;;;;;;;;;;;3786:127;:::o;35527:110::-;35603:26;35613:2;35617:7;35603:26;;;;;;;;;;;;:9;:26::i;:::-;35527:110;;:::o;40108:853::-;40262:4;40283:15;:2;:13;;;:15::i;:::-;40279:675;;;40335:2;40319:36;;;40356:12;:10;:12::i;:::-;40370:4;40376:7;40385:4;40319:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40315:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40577:1;40560:6;:13;:18;40556:328;;;40603:60;;;;;;;;;;:::i;:::-;;;;;;;;40556:328;40834:6;40828:13;40819:6;40815:2;40811:15;40804:38;40315:584;40451:41;;;40441:51;;;:6;:51;;;;40434:58;;;;;40279:675;40938:4;40931:11;;40108:853;;;;;;;:::o;35864:319::-;35993:18;35999:2;36003:7;35993:5;:18::i;:::-;36044:53;36075:1;36079:2;36083:7;36092:4;36044:22;:53::i;:::-;36022:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;35864:319;;;:::o;11580:326::-;11640:4;11897:1;11875:7;:19;;;:23;11868:30;;11580:326;;;:::o;36519:439::-;36613:1;36599:16;;:2;:16;;;;36591:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36672:16;36680:7;36672;:16::i;:::-;36671:17;36663:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;36734:45;36763:1;36767:2;36771:7;36734:20;:45::i;:::-;36809:1;36792:9;:13;36802:2;36792:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36840:2;36821:7;:16;36829:7;36821:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36885:7;36881:2;36860:33;;36877:1;36860:33;;;;;;;;;;;;36906:44;36934:1;36938:2;36942:7;36906:19;:44::i;:::-;36519:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:398::-;16412:3;16433:83;16514:1;16509:3;16433:83;:::i;:::-;16426:90;;16525:93;16614:3;16525:93;:::i;:::-;16643:1;16638:3;16634:11;16627:18;;16253:398;;;:::o;16657:366::-;16799:3;16820:67;16884:2;16879:3;16820:67;:::i;:::-;16813:74;;16896:93;16985:3;16896:93;:::i;:::-;17014:2;17009:3;17005:12;16998:19;;16657:366;;;:::o;17029:::-;17171:3;17192:67;17256:2;17251:3;17192:67;:::i;:::-;17185:74;;17268:93;17357:3;17268:93;:::i;:::-;17386:2;17381:3;17377:12;17370:19;;17029:366;;;:::o;17401:::-;17543:3;17564:67;17628:2;17623:3;17564:67;:::i;:::-;17557:74;;17640:93;17729:3;17640:93;:::i;:::-;17758:2;17753:3;17749:12;17742:19;;17401:366;;;:::o;17773:::-;17915:3;17936:67;18000:2;17995:3;17936:67;:::i;:::-;17929:74;;18012:93;18101:3;18012:93;:::i;:::-;18130:2;18125:3;18121:12;18114:19;;17773:366;;;:::o;18145:108::-;18222:24;18240:5;18222:24;:::i;:::-;18217:3;18210:37;18145:108;;:::o;18259:118::-;18346:24;18364:5;18346:24;:::i;:::-;18341:3;18334:37;18259:118;;:::o;18383:589::-;18608:3;18630:95;18721:3;18712:6;18630:95;:::i;:::-;18623:102;;18742:95;18833:3;18824:6;18742:95;:::i;:::-;18735:102;;18854:92;18942:3;18933:6;18854:92;:::i;:::-;18847:99;;18963:3;18956:10;;18383:589;;;;;;:::o;18978:379::-;19162:3;19184:147;19327:3;19184:147;:::i;:::-;19177:154;;19348:3;19341:10;;18978:379;;;:::o;19363:222::-;19456:4;19494:2;19483:9;19479:18;19471:26;;19507:71;19575:1;19564:9;19560:17;19551:6;19507:71;:::i;:::-;19363:222;;;;:::o;19591:640::-;19786:4;19824:3;19813:9;19809:19;19801:27;;19838:71;19906:1;19895:9;19891:17;19882:6;19838:71;:::i;:::-;19919:72;19987:2;19976:9;19972:18;19963:6;19919:72;:::i;:::-;20001;20069:2;20058:9;20054:18;20045:6;20001:72;:::i;:::-;20120:9;20114:4;20110:20;20105:2;20094:9;20090:18;20083:48;20148:76;20219:4;20210:6;20148:76;:::i;:::-;20140:84;;19591:640;;;;;;;:::o;20237:373::-;20380:4;20418:2;20407:9;20403:18;20395:26;;20467:9;20461:4;20457:20;20453:1;20442:9;20438:17;20431:47;20495:108;20598:4;20589:6;20495:108;:::i;:::-;20487:116;;20237:373;;;;:::o;20616:210::-;20703:4;20741:2;20730:9;20726:18;20718:26;;20754:65;20816:1;20805:9;20801:17;20792:6;20754:65;:::i;:::-;20616:210;;;;:::o;20832:313::-;20945:4;20983:2;20972:9;20968:18;20960:26;;21032:9;21026:4;21022:20;21018:1;21007:9;21003:17;20996:47;21060:78;21133:4;21124:6;21060:78;:::i;:::-;21052:86;;20832:313;;;;:::o;21151:419::-;21317:4;21355:2;21344:9;21340:18;21332:26;;21404:9;21398:4;21394:20;21390:1;21379:9;21375:17;21368:47;21432:131;21558:4;21432:131;:::i;:::-;21424:139;;21151:419;;;:::o;21576:::-;21742:4;21780:2;21769:9;21765:18;21757:26;;21829:9;21823:4;21819:20;21815:1;21804:9;21800:17;21793:47;21857:131;21983:4;21857:131;:::i;:::-;21849:139;;21576:419;;;:::o;22001:::-;22167:4;22205:2;22194:9;22190:18;22182:26;;22254:9;22248:4;22244:20;22240:1;22229:9;22225:17;22218:47;22282:131;22408:4;22282:131;:::i;:::-;22274:139;;22001:419;;;:::o;22426:::-;22592:4;22630:2;22619:9;22615:18;22607:26;;22679:9;22673:4;22669:20;22665:1;22654:9;22650:17;22643:47;22707:131;22833:4;22707:131;:::i;:::-;22699:139;;22426:419;;;:::o;22851:::-;23017:4;23055:2;23044:9;23040:18;23032:26;;23104:9;23098:4;23094:20;23090:1;23079:9;23075:17;23068:47;23132:131;23258:4;23132:131;:::i;:::-;23124:139;;22851:419;;;:::o;23276:::-;23442:4;23480:2;23469:9;23465:18;23457:26;;23529:9;23523:4;23519:20;23515:1;23504:9;23500:17;23493:47;23557:131;23683:4;23557:131;:::i;:::-;23549:139;;23276:419;;;:::o;23701:::-;23867:4;23905:2;23894:9;23890:18;23882:26;;23954:9;23948:4;23944:20;23940:1;23929:9;23925:17;23918:47;23982:131;24108:4;23982:131;:::i;:::-;23974:139;;23701:419;;;:::o;24126:::-;24292:4;24330:2;24319:9;24315:18;24307:26;;24379:9;24373:4;24369:20;24365:1;24354:9;24350:17;24343:47;24407:131;24533:4;24407:131;:::i;:::-;24399:139;;24126:419;;;:::o;24551:::-;24717:4;24755:2;24744:9;24740:18;24732:26;;24804:9;24798:4;24794:20;24790:1;24779:9;24775:17;24768:47;24832:131;24958:4;24832:131;:::i;:::-;24824:139;;24551:419;;;:::o;24976:::-;25142:4;25180:2;25169:9;25165:18;25157:26;;25229:9;25223:4;25219:20;25215:1;25204:9;25200:17;25193:47;25257:131;25383:4;25257:131;:::i;:::-;25249:139;;24976:419;;;:::o;25401:::-;25567:4;25605:2;25594:9;25590:18;25582:26;;25654:9;25648:4;25644:20;25640:1;25629:9;25625:17;25618:47;25682:131;25808:4;25682:131;:::i;:::-;25674:139;;25401:419;;;:::o;25826:::-;25992:4;26030:2;26019:9;26015:18;26007:26;;26079:9;26073:4;26069:20;26065:1;26054:9;26050:17;26043:47;26107:131;26233:4;26107:131;:::i;:::-;26099:139;;25826:419;;;:::o;26251:::-;26417:4;26455:2;26444:9;26440:18;26432:26;;26504:9;26498:4;26494:20;26490:1;26479:9;26475:17;26468:47;26532:131;26658:4;26532:131;:::i;:::-;26524:139;;26251:419;;;:::o;26676:::-;26842:4;26880:2;26869:9;26865:18;26857:26;;26929:9;26923:4;26919:20;26915:1;26904:9;26900:17;26893:47;26957:131;27083:4;26957:131;:::i;:::-;26949:139;;26676:419;;;:::o;27101:::-;27267:4;27305:2;27294:9;27290:18;27282:26;;27354:9;27348:4;27344:20;27340:1;27329:9;27325:17;27318:47;27382:131;27508:4;27382:131;:::i;:::-;27374:139;;27101:419;;;:::o;27526:::-;27692:4;27730:2;27719:9;27715:18;27707:26;;27779:9;27773:4;27769:20;27765:1;27754:9;27750:17;27743:47;27807:131;27933:4;27807:131;:::i;:::-;27799:139;;27526:419;;;:::o;27951:::-;28117:4;28155:2;28144:9;28140:18;28132:26;;28204:9;28198:4;28194:20;28190:1;28179:9;28175:17;28168:47;28232:131;28358:4;28232:131;:::i;:::-;28224:139;;27951:419;;;:::o;28376:::-;28542:4;28580:2;28569:9;28565:18;28557:26;;28629:9;28623:4;28619:20;28615:1;28604:9;28600:17;28593:47;28657:131;28783:4;28657:131;:::i;:::-;28649:139;;28376:419;;;:::o;28801:::-;28967:4;29005:2;28994:9;28990:18;28982:26;;29054:9;29048:4;29044:20;29040:1;29029:9;29025:17;29018:47;29082:131;29208:4;29082:131;:::i;:::-;29074:139;;28801:419;;;:::o;29226:222::-;29319:4;29357:2;29346:9;29342:18;29334:26;;29370:71;29438:1;29427:9;29423:17;29414:6;29370:71;:::i;:::-;29226:222;;;;:::o;29454:129::-;29488:6;29515:20;;:::i;:::-;29505:30;;29544:33;29572:4;29564:6;29544:33;:::i;:::-;29454:129;;;:::o;29589:75::-;29622:6;29655:2;29649:9;29639:19;;29589:75;:::o;29670:307::-;29731:4;29821:18;29813:6;29810:30;29807:56;;;29843:18;;:::i;:::-;29807:56;29881:29;29903:6;29881:29;:::i;:::-;29873:37;;29965:4;29959;29955:15;29947:23;;29670:307;;;:::o;29983:308::-;30045:4;30135:18;30127:6;30124:30;30121:56;;;30157:18;;:::i;:::-;30121:56;30195:29;30217:6;30195:29;:::i;:::-;30187:37;;30279:4;30273;30269:15;30261:23;;29983:308;;;:::o;30297:132::-;30364:4;30387:3;30379:11;;30417:4;30412:3;30408:14;30400:22;;30297:132;;;:::o;30435:141::-;30484:4;30507:3;30499:11;;30530:3;30527:1;30520:14;30564:4;30561:1;30551:18;30543:26;;30435:141;;;:::o;30582:114::-;30649:6;30683:5;30677:12;30667:22;;30582:114;;;:::o;30702:98::-;30753:6;30787:5;30781:12;30771:22;;30702:98;;;:::o;30806:99::-;30858:6;30892:5;30886:12;30876:22;;30806:99;;;:::o;30911:113::-;30981:4;31013;31008:3;31004:14;30996:22;;30911:113;;;:::o;31030:184::-;31129:11;31163:6;31158:3;31151:19;31203:4;31198:3;31194:14;31179:29;;31030:184;;;;:::o;31220:168::-;31303:11;31337:6;31332:3;31325:19;31377:4;31372:3;31368:14;31353:29;;31220:168;;;;:::o;31394:147::-;31495:11;31532:3;31517:18;;31394:147;;;;:::o;31547:169::-;31631:11;31665:6;31660:3;31653:19;31705:4;31700:3;31696:14;31681:29;;31547:169;;;;:::o;31722:148::-;31824:11;31861:3;31846:18;;31722:148;;;;:::o;31876:305::-;31916:3;31935:20;31953:1;31935:20;:::i;:::-;31930:25;;31969:20;31987:1;31969:20;:::i;:::-;31964:25;;32123:1;32055:66;32051:74;32048:1;32045:81;32042:107;;;32129:18;;:::i;:::-;32042:107;32173:1;32170;32166:9;32159:16;;31876:305;;;;:::o;32187:185::-;32227:1;32244:20;32262:1;32244:20;:::i;:::-;32239:25;;32278:20;32296:1;32278:20;:::i;:::-;32273:25;;32317:1;32307:35;;32322:18;;:::i;:::-;32307:35;32364:1;32361;32357:9;32352:14;;32187:185;;;;:::o;32378:348::-;32418:7;32441:20;32459:1;32441:20;:::i;:::-;32436:25;;32475:20;32493:1;32475:20;:::i;:::-;32470:25;;32663:1;32595:66;32591:74;32588:1;32585:81;32580:1;32573:9;32566:17;32562:105;32559:131;;;32670:18;;:::i;:::-;32559:131;32718:1;32715;32711:9;32700:20;;32378:348;;;;:::o;32732:191::-;32772:4;32792:20;32810:1;32792:20;:::i;:::-;32787:25;;32826:20;32844:1;32826:20;:::i;:::-;32821:25;;32865:1;32862;32859:8;32856:34;;;32870:18;;:::i;:::-;32856:34;32915:1;32912;32908:9;32900:17;;32732:191;;;;:::o;32929:96::-;32966:7;32995:24;33013:5;32995:24;:::i;:::-;32984:35;;32929:96;;;:::o;33031:90::-;33065:7;33108:5;33101:13;33094:21;33083:32;;33031:90;;;:::o;33127:149::-;33163:7;33203:66;33196:5;33192:78;33181:89;;33127:149;;;:::o;33282:126::-;33319:7;33359:42;33352:5;33348:54;33337:65;;33282:126;;;:::o;33414:77::-;33451:7;33480:5;33469:16;;33414:77;;;:::o;33497:154::-;33581:6;33576:3;33571;33558:30;33643:1;33634:6;33629:3;33625:16;33618:27;33497:154;;;:::o;33657:307::-;33725:1;33735:113;33749:6;33746:1;33743:13;33735:113;;;33834:1;33829:3;33825:11;33819:18;33815:1;33810:3;33806:11;33799:39;33771:2;33768:1;33764:10;33759:15;;33735:113;;;33866:6;33863:1;33860:13;33857:101;;;33946:1;33937:6;33932:3;33928:16;33921:27;33857:101;33706:258;33657:307;;;:::o;33970:320::-;34014:6;34051:1;34045:4;34041:12;34031:22;;34098:1;34092:4;34088:12;34119:18;34109:81;;34175:4;34167:6;34163:17;34153:27;;34109:81;34237:2;34229:6;34226:14;34206:18;34203:38;34200:84;;;34256:18;;:::i;:::-;34200:84;34021:269;33970:320;;;:::o;34296:281::-;34379:27;34401:4;34379:27;:::i;:::-;34371:6;34367:40;34509:6;34497:10;34494:22;34473:18;34461:10;34458:34;34455:62;34452:88;;;34520:18;;:::i;:::-;34452:88;34560:10;34556:2;34549:22;34339:238;34296:281;;:::o;34583:233::-;34622:3;34645:24;34663:5;34645:24;:::i;:::-;34636:33;;34691:66;34684:5;34681:77;34678:103;;;34761:18;;:::i;:::-;34678:103;34808:1;34801:5;34797:13;34790:20;;34583:233;;;:::o;34822:176::-;34854:1;34871:20;34889:1;34871:20;:::i;:::-;34866:25;;34905:20;34923:1;34905:20;:::i;:::-;34900:25;;34944:1;34934:35;;34949:18;;:::i;:::-;34934:35;34990:1;34987;34983:9;34978:14;;34822:176;;;;:::o;35004:180::-;35052:77;35049:1;35042:88;35149:4;35146:1;35139:15;35173:4;35170:1;35163:15;35190:180;35238:77;35235:1;35228:88;35335:4;35332:1;35325:15;35359:4;35356:1;35349:15;35376:180;35424:77;35421:1;35414:88;35521:4;35518:1;35511:15;35545:4;35542:1;35535:15;35562:180;35610:77;35607:1;35600:88;35707:4;35704:1;35697:15;35731:4;35728:1;35721:15;35748:180;35796:77;35793:1;35786:88;35893:4;35890:1;35883:15;35917:4;35914:1;35907:15;35934:117;36043:1;36040;36033:12;36057:117;36166:1;36163;36156:12;36180:117;36289:1;36286;36279:12;36303:117;36412:1;36409;36402:12;36426:102;36467:6;36518:2;36514:7;36509:2;36502:5;36498:14;36494:28;36484:38;;36426:102;;;:::o;36534:237::-;36674:34;36670:1;36662:6;36658:14;36651:58;36743:20;36738:2;36730:6;36726:15;36719:45;36534:237;:::o;36777:225::-;36917:34;36913:1;36905:6;36901:14;36894:58;36986:8;36981:2;36973:6;36969:15;36962:33;36777:225;:::o;37008:224::-;37148:34;37144:1;37136:6;37132:14;37125:58;37217:7;37212:2;37204:6;37200:15;37193:32;37008:224;:::o;37238:178::-;37378:30;37374:1;37366:6;37362:14;37355:54;37238:178;:::o;37422:175::-;37562:27;37558:1;37550:6;37546:14;37539:51;37422:175;:::o;37603:223::-;37743:34;37739:1;37731:6;37727:14;37720:58;37812:6;37807:2;37799:6;37795:15;37788:31;37603:223;:::o;37832:175::-;37972:27;37968:1;37960:6;37956:14;37949:51;37832:175;:::o;38013:228::-;38153:34;38149:1;38141:6;38137:14;38130:58;38222:11;38217:2;38209:6;38205:15;38198:36;38013:228;:::o;38247:249::-;38387:34;38383:1;38375:6;38371:14;38364:58;38456:32;38451:2;38443:6;38439:15;38432:57;38247:249;:::o;38502:182::-;38642:34;38638:1;38630:6;38626:14;38619:58;38502:182;:::o;38690:::-;38830:34;38826:1;38818:6;38814:14;38807:58;38690:182;:::o;38878:173::-;39018:25;39014:1;39006:6;39002:14;38995:49;38878:173;:::o;39057:234::-;39197:34;39193:1;39185:6;39181:14;39174:58;39266:17;39261:2;39253:6;39249:15;39242:42;39057:234;:::o;39297:174::-;39437:26;39433:1;39425:6;39421:14;39414:50;39297:174;:::o;39477:220::-;39617:34;39613:1;39605:6;39601:14;39594:58;39686:3;39681:2;39673:6;39669:15;39662:28;39477:220;:::o;39703:114::-;;:::o;39823:170::-;39963:22;39959:1;39951:6;39947:14;39940:46;39823:170;:::o;39999:233::-;40139:34;40135:1;40127:6;40123:14;40116:58;40208:16;40203:2;40195:6;40191:15;40184:41;39999:233;:::o;40238:181::-;40378:33;40374:1;40366:6;40362:14;40355:57;40238:181;:::o;40425:169::-;40565:21;40561:1;40553:6;40549:14;40542:45;40425:169;:::o;40600:122::-;40673:24;40691:5;40673:24;:::i;:::-;40666:5;40663:35;40653:63;;40712:1;40709;40702:12;40653:63;40600:122;:::o;40728:116::-;40798:21;40813:5;40798:21;:::i;:::-;40791:5;40788:32;40778:60;;40834:1;40831;40824:12;40778:60;40728:116;:::o;40850:120::-;40922:23;40939:5;40922:23;:::i;:::-;40915:5;40912:34;40902:62;;40960:1;40957;40950:12;40902:62;40850:120;:::o;40976:122::-;41049:24;41067:5;41049:24;:::i;:::-;41042:5;41039:35;41029:63;;41088:1;41085;41078:12;41029:63;40976:122;:::o
Swarm Source
ipfs://c4e3c356725df4f9597cf9054509ac00cccc10426ca4ed8d774cc5f3040b971b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.