Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 367 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 16150610 | 721 days ago | IN | 0 ETH | 0.00046414 | ||||
Set Approval For... | 16150512 | 721 days ago | IN | 0 ETH | 0.00067427 | ||||
Set Approval For... | 16150512 | 721 days ago | IN | 0 ETH | 0.00067427 | ||||
Set Approval For... | 16150512 | 721 days ago | IN | 0 ETH | 0.00067427 | ||||
Set Approval For... | 16150512 | 721 days ago | IN | 0 ETH | 0.00067427 | ||||
Set Approval For... | 16150512 | 721 days ago | IN | 0 ETH | 0.00067427 | ||||
Set Approval For... | 16150512 | 721 days ago | IN | 0 ETH | 0.00067427 | ||||
Set Approval For... | 16150512 | 721 days ago | IN | 0 ETH | 0.00072093 | ||||
Set Approval For... | 16150498 | 721 days ago | IN | 0 ETH | 0.00073876 | ||||
Set Approval For... | 16150495 | 721 days ago | IN | 0 ETH | 0.00072354 | ||||
Set Approval For... | 16150495 | 721 days ago | IN | 0 ETH | 0.00072354 | ||||
Mint | 16150491 | 721 days ago | IN | 0 ETH | 0.0004723 | ||||
Mint | 16150491 | 721 days ago | IN | 0 ETH | 0.00056496 | ||||
Mint | 16150490 | 721 days ago | IN | 0 ETH | 0.00044478 | ||||
Mint | 16150490 | 721 days ago | IN | 0 ETH | 0.00044478 | ||||
Mint | 16150490 | 721 days ago | IN | 0 ETH | 0.00044478 | ||||
Mint | 16150490 | 721 days ago | IN | 0 ETH | 0.00044478 | ||||
Mint | 16150490 | 721 days ago | IN | 0 ETH | 0.00044478 | ||||
Mint | 16150490 | 721 days ago | IN | 0 ETH | 0.00044478 | ||||
Mint | 16150490 | 721 days ago | IN | 0 ETH | 0.00044478 | ||||
Mint | 16150490 | 721 days ago | IN | 0 ETH | 0.00044478 | ||||
Mint | 16150490 | 721 days ago | IN | 0 ETH | 0.00044478 | ||||
Mint | 16150490 | 721 days ago | IN | 0 ETH | 0.00044478 | ||||
Mint | 16150490 | 721 days ago | IN | 0 ETH | 0.00044478 | ||||
Mint | 16150490 | 721 days ago | IN | 0 ETH | 0.00044478 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
16150610 | 721 days ago | 1.125 ETH |
Loading...
Loading
Contract Name:
MG
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-09 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/CryptoPepenuts.sol pragma solidity ^0.8.0; contract MG is ERC721A, Ownable, ReentrancyGuard { using Address for address; using Strings for uint; string public baseTokenURI = "ipfs://QmUA3WEZBsM5tTHvxmobmAxiAFVMQpRCWjtghSJMQCuDdY/"; uint256 public maxSupply = 300; uint256 public maxPerTxlimit = 2; uint256 public price = 0.01 ether; bool public SaleActive = false; constructor() ERC721A("LOVE Football Art Project by Martin GrOsser", "MG") { } function mint(uint256 amount) payable public { require(SaleActive, "Public sale is not open"); require(totalSupply() + amount < maxSupply + 1, "No more"); require((price * amount) <= msg.value,"Incorrect ETH value sent"); require(amount <= maxPerTxlimit,"Max mints per transaction exceeded"); _safeMint(msg.sender, amount); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function withdraw() public onlyOwner nonReentrant { Address.sendValue(payable(msg.sender), address(this).balance); } function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseTokenURI, _tokenId.toString(), ".json")); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setSaleActive(bool _SaleActive) external onlyOwner { SaleActive = _SaleActive; } function setPrice(uint256 _price) external onlyOwner { price = _price; } function setMaxPerTxlimit(uint256 _limit) external onlyOwner { maxPerTxlimit = _limit; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"SaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxlimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerTxlimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_SaleActive","type":"bool"}],"name":"setSaleActive","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180606001604052806036815260200162003b5460369139600a90805190602001906200003592919062000214565b5061012c600b556002600c55662386f26fc10000600d556000600e60006101000a81548160ff0219169083151502179055503480156200007457600080fd5b506040518060600160405280602b815260200162003b8a602b91396040518060400160405280600281526020017f4d470000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000dd92919062000214565b508060039080519060200190620000f692919062000214565b50620001076200013d60201b60201c565b60008190555050506200012f620001236200014660201b60201c565b6200014e60201b60201c565b600160098190555062000329565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022290620002c4565b90600052602060002090601f01602090048101928262000246576000855562000292565b82601f106200026157805160ff191683800117855562000292565b8280016001018555821562000292579182015b828111156200029157825182559160200191906001019062000274565b5b509050620002a19190620002a5565b5090565b5b80821115620002c0576000816000905550600101620002a6565b5090565b60006002820490506001821680620002dd57607f821691505b60208210811415620002f457620002f3620002fa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61381b80620003396000396000f3fe6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146105d7578063f1d2165f14610614578063f2663f901461063f578063f2fde38b14610668576101b7565b8063c87b56dd14610544578063d547cfb714610581578063d5abeb01146105ac576101b7565b8063a035b1fe116100c6578063a035b1fe146104ab578063a0712d68146104d6578063a22cb465146104f2578063b88d4fde1461051b576101b7565b80638da5cb5b1461042c57806391b7f5ed1461045757806395d89b4114610480576101b7565b80633ccfd60b116101595780636352211e116101335780636352211e1461037257806370a08231146103af578063715018a6146103ec578063841718a614610403576101b7565b80633ccfd60b1461030957806342842e0e1461032057806355f804b314610349576101b7565b8063081812fc11610195578063081812fc1461024f578063095ea7b31461028c57806318160ddd146102b557806323b872dd146102e0576101b7565b8063015aacc7146101bc57806301ffc9a7146101e757806306fdde0314610224575b600080fd5b3480156101c857600080fd5b506101d1610691565b6040516101de919061306e565b60405180910390f35b3480156101f357600080fd5b5061020e60048036038101906102099190612a83565b610697565b60405161021b9190612ef1565b60405180910390f35b34801561023057600080fd5b50610239610779565b6040516102469190612f0c565b60405180910390f35b34801561025b57600080fd5b5061027660048036038101906102719190612b26565b61080b565b6040516102839190612e8a565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190612a16565b610887565b005b3480156102c157600080fd5b506102ca610992565b6040516102d7919061306e565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612900565b6109a9565b005b34801561031557600080fd5b5061031e6109b9565b005b34801561032c57600080fd5b5061034760048036038101906103429190612900565b610a97565b005b34801561035557600080fd5b50610370600480360381019061036b9190612add565b610ab7565b005b34801561037e57600080fd5b5061039960048036038101906103949190612b26565b610b4d565b6040516103a69190612e8a565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190612893565b610b63565b6040516103e3919061306e565b60405180910390f35b3480156103f857600080fd5b50610401610c33565b005b34801561040f57600080fd5b5061042a60048036038101906104259190612a56565b610cbb565b005b34801561043857600080fd5b50610441610d54565b60405161044e9190612e8a565b60405180910390f35b34801561046357600080fd5b5061047e60048036038101906104799190612b26565b610d7e565b005b34801561048c57600080fd5b50610495610e04565b6040516104a29190612f0c565b60405180910390f35b3480156104b757600080fd5b506104c0610e96565b6040516104cd919061306e565b60405180910390f35b6104f060048036038101906104eb9190612b26565b610e9c565b005b3480156104fe57600080fd5b50610519600480360381019061051491906129d6565b610fef565b005b34801561052757600080fd5b50610542600480360381019061053d9190612953565b611167565b005b34801561055057600080fd5b5061056b60048036038101906105669190612b26565b6111e3565b6040516105789190612f0c565b60405180910390f35b34801561058d57600080fd5b5061059661125f565b6040516105a39190612f0c565b60405180910390f35b3480156105b857600080fd5b506105c16112ed565b6040516105ce919061306e565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f991906128c0565b6112f3565b60405161060b9190612ef1565b60405180910390f35b34801561062057600080fd5b50610629611387565b6040516106369190612ef1565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612b26565b61139a565b005b34801561067457600080fd5b5061068f600480360381019061068a9190612893565b611420565b005b600c5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610772575061077182611518565b5b9050919050565b6060600280546107889061333e565b80601f01602080910402602001604051908101604052809291908181526020018280546107b49061333e565b80156108015780601f106107d657610100808354040283529160200191610801565b820191906000526020600020905b8154815290600101906020018083116107e457829003601f168201915b5050505050905090565b600061081682611582565b61084c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089282610b4d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108fa576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109196115d0565b73ffffffffffffffffffffffffffffffffffffffff161415801561094b5750610949816109446115d0565b6112f3565b155b15610982576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61098d8383836115d8565b505050565b600061099c61168a565b6001546000540303905090565b6109b4838383611693565b505050565b6109c16115d0565b73ffffffffffffffffffffffffffffffffffffffff166109df610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2c90612fce565b60405180910390fd5b60026009541415610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a729061302e565b60405180910390fd5b6002600981905550610a8d3347611b49565b6001600981905550565b610ab283838360405180602001604052806000815250611167565b505050565b610abf6115d0565b73ffffffffffffffffffffffffffffffffffffffff16610add610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90612fce565b60405180910390fd5b80600a9080519060200190610b49929190612664565b5050565b6000610b5882611c3d565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bcb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610c3b6115d0565b73ffffffffffffffffffffffffffffffffffffffff16610c59610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690612fce565b60405180910390fd5b610cb96000611ecc565b565b610cc36115d0565b73ffffffffffffffffffffffffffffffffffffffff16610ce1610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e90612fce565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d866115d0565b73ffffffffffffffffffffffffffffffffffffffff16610da4610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190612fce565b60405180910390fd5b80600d8190555050565b606060038054610e139061333e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3f9061333e565b8015610e8c5780601f10610e6157610100808354040283529160200191610e8c565b820191906000526020600020905b815481529060010190602001808311610e6f57829003601f168201915b5050505050905090565b600d5481565b600e60009054906101000a900460ff16610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee29061304e565b60405180910390fd5b6001600b54610efa9190613173565b81610f03610992565b610f0d9190613173565b10610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490612f2e565b60405180910390fd5b3481600d54610f5c91906131fa565b1115610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f949061300e565b60405180910390fd5b600c54811115610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd990612fae565b60405180910390fd5b610fec3382611f92565b50565b610ff76115d0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110696115d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111166115d0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161115b9190612ef1565b60405180910390a35050565b611172848484611693565b6111918373ffffffffffffffffffffffffffffffffffffffff16611fb0565b80156111a657506111a484848484611fd3565b155b156111dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606111ee82611582565b61122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612fee565b60405180910390fd5b600a61123883612133565b604051602001611249929190612e46565b6040516020818303038152906040529050919050565b600a805461126c9061333e565b80601f01602080910402602001604051908101604052809291908181526020018280546112989061333e565b80156112e55780601f106112ba576101008083540402835291602001916112e5565b820191906000526020600020905b8154815290600101906020018083116112c857829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b6113a26115d0565b73ffffffffffffffffffffffffffffffffffffffff166113c0610d54565b73ffffffffffffffffffffffffffffffffffffffff1614611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d90612fce565b60405180910390fd5b80600c8190555050565b6114286115d0565b73ffffffffffffffffffffffffffffffffffffffff16611446610d54565b73ffffffffffffffffffffffffffffffffffffffff161461149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390612fce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390612f4e565b60405180910390fd5b61151581611ecc565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161158d61168a565b1115801561159c575060005482105b80156115c9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061169e82611c3d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611709576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661172a6115d0565b73ffffffffffffffffffffffffffffffffffffffff1614806117595750611758856117536115d0565b6112f3565b5b8061179e57506117676115d0565b73ffffffffffffffffffffffffffffffffffffffff166117868461080b565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117d7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561183e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61184b8585856001612294565b611857600084876115d8565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ad7576000548214611ad657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b42858585600161229a565b5050505050565b80471015611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390612f8e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611bb290612e75565b60006040518083038185875af1925050503d8060008114611bef576040519150601f19603f3d011682016040523d82523d6000602084013e611bf4565b606091505b5050905080611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f90612f6e565b60405180910390fd5b505050565b611c456126ea565b600082905080611c5361168a565b11158015611c62575060005481105b15611e95576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611e9357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d77578092505050611ec7565b5b600115611e9257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e8d578092505050611ec7565b611d78565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fac8282604051806020016040528060008152506122a0565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff96115d0565b8786866040518563ffffffff1660e01b815260040161201b9493929190612ea5565b602060405180830381600087803b15801561203557600080fd5b505af192505050801561206657506040513d601f19601f820116820180604052508101906120639190612ab0565b60015b6120e0573d8060008114612096576040519150601f19603f3d011682016040523d82523d6000602084013e61209b565b606091505b506000815114156120d8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561217b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061228f565b600082905060005b600082146121ad578080612196906133a1565b915050600a826121a691906131c9565b9150612183565b60008167ffffffffffffffff8111156121c9576121c86134d7565b5b6040519080825280601f01601f1916602001820160405280156121fb5781602001600182028036833780820191505090505b5090505b60008514612288576001826122149190613254565b9150600a8561222391906133ea565b603061222f9190613173565b60f81b818381518110612245576122446134a8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561228191906131c9565b94506121ff565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561230d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612348576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123556000858386612294565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506125168673ffffffffffffffffffffffffffffffffffffffff16611fb0565b156125dc575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461258b6000878480600101955087611fd3565b6125c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561251c5782600054146125d757600080fd5b612648565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125dd575b81600081905550505061265e600085838661229a565b50505050565b8280546126709061333e565b90600052602060002090601f01602090048101928261269257600085556126d9565b82601f106126ab57805160ff19168380011785556126d9565b828001600101855582156126d9579182015b828111156126d85782518255916020019190600101906126bd565b5b5090506126e6919061272d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561274657600081600090555060010161272e565b5090565b600061275d612758846130ae565b613089565b9050828152602081018484840111156127795761277861350b565b5b6127848482856132fc565b509392505050565b600061279f61279a846130df565b613089565b9050828152602081018484840111156127bb576127ba61350b565b5b6127c68482856132fc565b509392505050565b6000813590506127dd81613789565b92915050565b6000813590506127f2816137a0565b92915050565b600081359050612807816137b7565b92915050565b60008151905061281c816137b7565b92915050565b600082601f83011261283757612836613506565b5b813561284784826020860161274a565b91505092915050565b600082601f83011261286557612864613506565b5b813561287584826020860161278c565b91505092915050565b60008135905061288d816137ce565b92915050565b6000602082840312156128a9576128a8613515565b5b60006128b7848285016127ce565b91505092915050565b600080604083850312156128d7576128d6613515565b5b60006128e5858286016127ce565b92505060206128f6858286016127ce565b9150509250929050565b60008060006060848603121561291957612918613515565b5b6000612927868287016127ce565b9350506020612938868287016127ce565b92505060406129498682870161287e565b9150509250925092565b6000806000806080858703121561296d5761296c613515565b5b600061297b878288016127ce565b945050602061298c878288016127ce565b935050604061299d8782880161287e565b925050606085013567ffffffffffffffff8111156129be576129bd613510565b5b6129ca87828801612822565b91505092959194509250565b600080604083850312156129ed576129ec613515565b5b60006129fb858286016127ce565b9250506020612a0c858286016127e3565b9150509250929050565b60008060408385031215612a2d57612a2c613515565b5b6000612a3b858286016127ce565b9250506020612a4c8582860161287e565b9150509250929050565b600060208284031215612a6c57612a6b613515565b5b6000612a7a848285016127e3565b91505092915050565b600060208284031215612a9957612a98613515565b5b6000612aa7848285016127f8565b91505092915050565b600060208284031215612ac657612ac5613515565b5b6000612ad48482850161280d565b91505092915050565b600060208284031215612af357612af2613515565b5b600082013567ffffffffffffffff811115612b1157612b10613510565b5b612b1d84828501612850565b91505092915050565b600060208284031215612b3c57612b3b613515565b5b6000612b4a8482850161287e565b91505092915050565b612b5c81613288565b82525050565b612b6b8161329a565b82525050565b6000612b7c82613125565b612b86818561313b565b9350612b9681856020860161330b565b612b9f8161351a565b840191505092915050565b6000612bb582613130565b612bbf8185613157565b9350612bcf81856020860161330b565b612bd88161351a565b840191505092915050565b6000612bee82613130565b612bf88185613168565b9350612c0881856020860161330b565b80840191505092915050565b60008154612c218161333e565b612c2b8186613168565b94506001821660008114612c465760018114612c5757612c8a565b60ff19831686528186019350612c8a565b612c6085613110565b60005b83811015612c8257815481890152600182019150602081019050612c63565b838801955050505b50505092915050565b6000612ca0600783613157565b9150612cab8261352b565b602082019050919050565b6000612cc3602683613157565b9150612cce82613554565b604082019050919050565b6000612ce6603a83613157565b9150612cf1826135a3565b604082019050919050565b6000612d09601d83613157565b9150612d14826135f2565b602082019050919050565b6000612d2c602283613157565b9150612d378261361b565b604082019050919050565b6000612d4f600583613168565b9150612d5a8261366a565b600582019050919050565b6000612d72602083613157565b9150612d7d82613693565b602082019050919050565b6000612d95602f83613157565b9150612da0826136bc565b604082019050919050565b6000612db860008361314c565b9150612dc38261370b565b600082019050919050565b6000612ddb601883613157565b9150612de68261370e565b602082019050919050565b6000612dfe601f83613157565b9150612e0982613737565b602082019050919050565b6000612e21601783613157565b9150612e2c82613760565b602082019050919050565b612e40816132f2565b82525050565b6000612e528285612c14565b9150612e5e8284612be3565b9150612e6982612d42565b91508190509392505050565b6000612e8082612dab565b9150819050919050565b6000602082019050612e9f6000830184612b53565b92915050565b6000608082019050612eba6000830187612b53565b612ec76020830186612b53565b612ed46040830185612e37565b8181036060830152612ee68184612b71565b905095945050505050565b6000602082019050612f066000830184612b62565b92915050565b60006020820190508181036000830152612f268184612baa565b905092915050565b60006020820190508181036000830152612f4781612c93565b9050919050565b60006020820190508181036000830152612f6781612cb6565b9050919050565b60006020820190508181036000830152612f8781612cd9565b9050919050565b60006020820190508181036000830152612fa781612cfc565b9050919050565b60006020820190508181036000830152612fc781612d1f565b9050919050565b60006020820190508181036000830152612fe781612d65565b9050919050565b6000602082019050818103600083015261300781612d88565b9050919050565b6000602082019050818103600083015261302781612dce565b9050919050565b6000602082019050818103600083015261304781612df1565b9050919050565b6000602082019050818103600083015261306781612e14565b9050919050565b60006020820190506130836000830184612e37565b92915050565b60006130936130a4565b905061309f8282613370565b919050565b6000604051905090565b600067ffffffffffffffff8211156130c9576130c86134d7565b5b6130d28261351a565b9050602081019050919050565b600067ffffffffffffffff8211156130fa576130f96134d7565b5b6131038261351a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061317e826132f2565b9150613189836132f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131be576131bd61341b565b5b828201905092915050565b60006131d4826132f2565b91506131df836132f2565b9250826131ef576131ee61344a565b5b828204905092915050565b6000613205826132f2565b9150613210836132f2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132495761324861341b565b5b828202905092915050565b600061325f826132f2565b915061326a836132f2565b92508282101561327d5761327c61341b565b5b828203905092915050565b6000613293826132d2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561332957808201518184015260208101905061330e565b83811115613338576000848401525b50505050565b6000600282049050600182168061335657607f821691505b6020821081141561336a57613369613479565b5b50919050565b6133798261351a565b810181811067ffffffffffffffff82111715613398576133976134d7565b5b80604052505050565b60006133ac826132f2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133df576133de61341b565b5b600182019050919050565b60006133f5826132f2565b9150613400836132f2565b9250826134105761340f61344a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b61379281613288565b811461379d57600080fd5b50565b6137a98161329a565b81146137b457600080fd5b50565b6137c0816132a6565b81146137cb57600080fd5b50565b6137d7816132f2565b81146137e257600080fd5b5056fea26469706673582212201b485ae3f0b92916e78e8b1cec3bcd85871bee0bea3e1428e41d5d191e5ad75364736f6c63430008070033697066733a2f2f516d55413357455a42734d3574544876786d6f626d4178694146564d51705243576a746768534a4d5143754464592f4c4f564520466f6f7462616c6c204172742050726f6a656374206279204d617274696e2047724f73736572
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146105d7578063f1d2165f14610614578063f2663f901461063f578063f2fde38b14610668576101b7565b8063c87b56dd14610544578063d547cfb714610581578063d5abeb01146105ac576101b7565b8063a035b1fe116100c6578063a035b1fe146104ab578063a0712d68146104d6578063a22cb465146104f2578063b88d4fde1461051b576101b7565b80638da5cb5b1461042c57806391b7f5ed1461045757806395d89b4114610480576101b7565b80633ccfd60b116101595780636352211e116101335780636352211e1461037257806370a08231146103af578063715018a6146103ec578063841718a614610403576101b7565b80633ccfd60b1461030957806342842e0e1461032057806355f804b314610349576101b7565b8063081812fc11610195578063081812fc1461024f578063095ea7b31461028c57806318160ddd146102b557806323b872dd146102e0576101b7565b8063015aacc7146101bc57806301ffc9a7146101e757806306fdde0314610224575b600080fd5b3480156101c857600080fd5b506101d1610691565b6040516101de919061306e565b60405180910390f35b3480156101f357600080fd5b5061020e60048036038101906102099190612a83565b610697565b60405161021b9190612ef1565b60405180910390f35b34801561023057600080fd5b50610239610779565b6040516102469190612f0c565b60405180910390f35b34801561025b57600080fd5b5061027660048036038101906102719190612b26565b61080b565b6040516102839190612e8a565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190612a16565b610887565b005b3480156102c157600080fd5b506102ca610992565b6040516102d7919061306e565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612900565b6109a9565b005b34801561031557600080fd5b5061031e6109b9565b005b34801561032c57600080fd5b5061034760048036038101906103429190612900565b610a97565b005b34801561035557600080fd5b50610370600480360381019061036b9190612add565b610ab7565b005b34801561037e57600080fd5b5061039960048036038101906103949190612b26565b610b4d565b6040516103a69190612e8a565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190612893565b610b63565b6040516103e3919061306e565b60405180910390f35b3480156103f857600080fd5b50610401610c33565b005b34801561040f57600080fd5b5061042a60048036038101906104259190612a56565b610cbb565b005b34801561043857600080fd5b50610441610d54565b60405161044e9190612e8a565b60405180910390f35b34801561046357600080fd5b5061047e60048036038101906104799190612b26565b610d7e565b005b34801561048c57600080fd5b50610495610e04565b6040516104a29190612f0c565b60405180910390f35b3480156104b757600080fd5b506104c0610e96565b6040516104cd919061306e565b60405180910390f35b6104f060048036038101906104eb9190612b26565b610e9c565b005b3480156104fe57600080fd5b50610519600480360381019061051491906129d6565b610fef565b005b34801561052757600080fd5b50610542600480360381019061053d9190612953565b611167565b005b34801561055057600080fd5b5061056b60048036038101906105669190612b26565b6111e3565b6040516105789190612f0c565b60405180910390f35b34801561058d57600080fd5b5061059661125f565b6040516105a39190612f0c565b60405180910390f35b3480156105b857600080fd5b506105c16112ed565b6040516105ce919061306e565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f991906128c0565b6112f3565b60405161060b9190612ef1565b60405180910390f35b34801561062057600080fd5b50610629611387565b6040516106369190612ef1565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612b26565b61139a565b005b34801561067457600080fd5b5061068f600480360381019061068a9190612893565b611420565b005b600c5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610772575061077182611518565b5b9050919050565b6060600280546107889061333e565b80601f01602080910402602001604051908101604052809291908181526020018280546107b49061333e565b80156108015780601f106107d657610100808354040283529160200191610801565b820191906000526020600020905b8154815290600101906020018083116107e457829003601f168201915b5050505050905090565b600061081682611582565b61084c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089282610b4d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108fa576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109196115d0565b73ffffffffffffffffffffffffffffffffffffffff161415801561094b5750610949816109446115d0565b6112f3565b155b15610982576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61098d8383836115d8565b505050565b600061099c61168a565b6001546000540303905090565b6109b4838383611693565b505050565b6109c16115d0565b73ffffffffffffffffffffffffffffffffffffffff166109df610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2c90612fce565b60405180910390fd5b60026009541415610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a729061302e565b60405180910390fd5b6002600981905550610a8d3347611b49565b6001600981905550565b610ab283838360405180602001604052806000815250611167565b505050565b610abf6115d0565b73ffffffffffffffffffffffffffffffffffffffff16610add610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90612fce565b60405180910390fd5b80600a9080519060200190610b49929190612664565b5050565b6000610b5882611c3d565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bcb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610c3b6115d0565b73ffffffffffffffffffffffffffffffffffffffff16610c59610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690612fce565b60405180910390fd5b610cb96000611ecc565b565b610cc36115d0565b73ffffffffffffffffffffffffffffffffffffffff16610ce1610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e90612fce565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d866115d0565b73ffffffffffffffffffffffffffffffffffffffff16610da4610d54565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190612fce565b60405180910390fd5b80600d8190555050565b606060038054610e139061333e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3f9061333e565b8015610e8c5780601f10610e6157610100808354040283529160200191610e8c565b820191906000526020600020905b815481529060010190602001808311610e6f57829003601f168201915b5050505050905090565b600d5481565b600e60009054906101000a900460ff16610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee29061304e565b60405180910390fd5b6001600b54610efa9190613173565b81610f03610992565b610f0d9190613173565b10610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490612f2e565b60405180910390fd5b3481600d54610f5c91906131fa565b1115610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f949061300e565b60405180910390fd5b600c54811115610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd990612fae565b60405180910390fd5b610fec3382611f92565b50565b610ff76115d0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110696115d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111166115d0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161115b9190612ef1565b60405180910390a35050565b611172848484611693565b6111918373ffffffffffffffffffffffffffffffffffffffff16611fb0565b80156111a657506111a484848484611fd3565b155b156111dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606111ee82611582565b61122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612fee565b60405180910390fd5b600a61123883612133565b604051602001611249929190612e46565b6040516020818303038152906040529050919050565b600a805461126c9061333e565b80601f01602080910402602001604051908101604052809291908181526020018280546112989061333e565b80156112e55780601f106112ba576101008083540402835291602001916112e5565b820191906000526020600020905b8154815290600101906020018083116112c857829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b6113a26115d0565b73ffffffffffffffffffffffffffffffffffffffff166113c0610d54565b73ffffffffffffffffffffffffffffffffffffffff1614611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d90612fce565b60405180910390fd5b80600c8190555050565b6114286115d0565b73ffffffffffffffffffffffffffffffffffffffff16611446610d54565b73ffffffffffffffffffffffffffffffffffffffff161461149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390612fce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390612f4e565b60405180910390fd5b61151581611ecc565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161158d61168a565b1115801561159c575060005482105b80156115c9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061169e82611c3d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611709576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661172a6115d0565b73ffffffffffffffffffffffffffffffffffffffff1614806117595750611758856117536115d0565b6112f3565b5b8061179e57506117676115d0565b73ffffffffffffffffffffffffffffffffffffffff166117868461080b565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117d7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561183e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61184b8585856001612294565b611857600084876115d8565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ad7576000548214611ad657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b42858585600161229a565b5050505050565b80471015611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390612f8e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611bb290612e75565b60006040518083038185875af1925050503d8060008114611bef576040519150601f19603f3d011682016040523d82523d6000602084013e611bf4565b606091505b5050905080611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f90612f6e565b60405180910390fd5b505050565b611c456126ea565b600082905080611c5361168a565b11158015611c62575060005481105b15611e95576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611e9357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d77578092505050611ec7565b5b600115611e9257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e8d578092505050611ec7565b611d78565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fac8282604051806020016040528060008152506122a0565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff96115d0565b8786866040518563ffffffff1660e01b815260040161201b9493929190612ea5565b602060405180830381600087803b15801561203557600080fd5b505af192505050801561206657506040513d601f19601f820116820180604052508101906120639190612ab0565b60015b6120e0573d8060008114612096576040519150601f19603f3d011682016040523d82523d6000602084013e61209b565b606091505b506000815114156120d8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561217b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061228f565b600082905060005b600082146121ad578080612196906133a1565b915050600a826121a691906131c9565b9150612183565b60008167ffffffffffffffff8111156121c9576121c86134d7565b5b6040519080825280601f01601f1916602001820160405280156121fb5781602001600182028036833780820191505090505b5090505b60008514612288576001826122149190613254565b9150600a8561222391906133ea565b603061222f9190613173565b60f81b818381518110612245576122446134a8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561228191906131c9565b94506121ff565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561230d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612348576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123556000858386612294565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506125168673ffffffffffffffffffffffffffffffffffffffff16611fb0565b156125dc575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461258b6000878480600101955087611fd3565b6125c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561251c5782600054146125d757600080fd5b612648565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125dd575b81600081905550505061265e600085838661229a565b50505050565b8280546126709061333e565b90600052602060002090601f01602090048101928261269257600085556126d9565b82601f106126ab57805160ff19168380011785556126d9565b828001600101855582156126d9579182015b828111156126d85782518255916020019190600101906126bd565b5b5090506126e6919061272d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561274657600081600090555060010161272e565b5090565b600061275d612758846130ae565b613089565b9050828152602081018484840111156127795761277861350b565b5b6127848482856132fc565b509392505050565b600061279f61279a846130df565b613089565b9050828152602081018484840111156127bb576127ba61350b565b5b6127c68482856132fc565b509392505050565b6000813590506127dd81613789565b92915050565b6000813590506127f2816137a0565b92915050565b600081359050612807816137b7565b92915050565b60008151905061281c816137b7565b92915050565b600082601f83011261283757612836613506565b5b813561284784826020860161274a565b91505092915050565b600082601f83011261286557612864613506565b5b813561287584826020860161278c565b91505092915050565b60008135905061288d816137ce565b92915050565b6000602082840312156128a9576128a8613515565b5b60006128b7848285016127ce565b91505092915050565b600080604083850312156128d7576128d6613515565b5b60006128e5858286016127ce565b92505060206128f6858286016127ce565b9150509250929050565b60008060006060848603121561291957612918613515565b5b6000612927868287016127ce565b9350506020612938868287016127ce565b92505060406129498682870161287e565b9150509250925092565b6000806000806080858703121561296d5761296c613515565b5b600061297b878288016127ce565b945050602061298c878288016127ce565b935050604061299d8782880161287e565b925050606085013567ffffffffffffffff8111156129be576129bd613510565b5b6129ca87828801612822565b91505092959194509250565b600080604083850312156129ed576129ec613515565b5b60006129fb858286016127ce565b9250506020612a0c858286016127e3565b9150509250929050565b60008060408385031215612a2d57612a2c613515565b5b6000612a3b858286016127ce565b9250506020612a4c8582860161287e565b9150509250929050565b600060208284031215612a6c57612a6b613515565b5b6000612a7a848285016127e3565b91505092915050565b600060208284031215612a9957612a98613515565b5b6000612aa7848285016127f8565b91505092915050565b600060208284031215612ac657612ac5613515565b5b6000612ad48482850161280d565b91505092915050565b600060208284031215612af357612af2613515565b5b600082013567ffffffffffffffff811115612b1157612b10613510565b5b612b1d84828501612850565b91505092915050565b600060208284031215612b3c57612b3b613515565b5b6000612b4a8482850161287e565b91505092915050565b612b5c81613288565b82525050565b612b6b8161329a565b82525050565b6000612b7c82613125565b612b86818561313b565b9350612b9681856020860161330b565b612b9f8161351a565b840191505092915050565b6000612bb582613130565b612bbf8185613157565b9350612bcf81856020860161330b565b612bd88161351a565b840191505092915050565b6000612bee82613130565b612bf88185613168565b9350612c0881856020860161330b565b80840191505092915050565b60008154612c218161333e565b612c2b8186613168565b94506001821660008114612c465760018114612c5757612c8a565b60ff19831686528186019350612c8a565b612c6085613110565b60005b83811015612c8257815481890152600182019150602081019050612c63565b838801955050505b50505092915050565b6000612ca0600783613157565b9150612cab8261352b565b602082019050919050565b6000612cc3602683613157565b9150612cce82613554565b604082019050919050565b6000612ce6603a83613157565b9150612cf1826135a3565b604082019050919050565b6000612d09601d83613157565b9150612d14826135f2565b602082019050919050565b6000612d2c602283613157565b9150612d378261361b565b604082019050919050565b6000612d4f600583613168565b9150612d5a8261366a565b600582019050919050565b6000612d72602083613157565b9150612d7d82613693565b602082019050919050565b6000612d95602f83613157565b9150612da0826136bc565b604082019050919050565b6000612db860008361314c565b9150612dc38261370b565b600082019050919050565b6000612ddb601883613157565b9150612de68261370e565b602082019050919050565b6000612dfe601f83613157565b9150612e0982613737565b602082019050919050565b6000612e21601783613157565b9150612e2c82613760565b602082019050919050565b612e40816132f2565b82525050565b6000612e528285612c14565b9150612e5e8284612be3565b9150612e6982612d42565b91508190509392505050565b6000612e8082612dab565b9150819050919050565b6000602082019050612e9f6000830184612b53565b92915050565b6000608082019050612eba6000830187612b53565b612ec76020830186612b53565b612ed46040830185612e37565b8181036060830152612ee68184612b71565b905095945050505050565b6000602082019050612f066000830184612b62565b92915050565b60006020820190508181036000830152612f268184612baa565b905092915050565b60006020820190508181036000830152612f4781612c93565b9050919050565b60006020820190508181036000830152612f6781612cb6565b9050919050565b60006020820190508181036000830152612f8781612cd9565b9050919050565b60006020820190508181036000830152612fa781612cfc565b9050919050565b60006020820190508181036000830152612fc781612d1f565b9050919050565b60006020820190508181036000830152612fe781612d65565b9050919050565b6000602082019050818103600083015261300781612d88565b9050919050565b6000602082019050818103600083015261302781612dce565b9050919050565b6000602082019050818103600083015261304781612df1565b9050919050565b6000602082019050818103600083015261306781612e14565b9050919050565b60006020820190506130836000830184612e37565b92915050565b60006130936130a4565b905061309f8282613370565b919050565b6000604051905090565b600067ffffffffffffffff8211156130c9576130c86134d7565b5b6130d28261351a565b9050602081019050919050565b600067ffffffffffffffff8211156130fa576130f96134d7565b5b6131038261351a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061317e826132f2565b9150613189836132f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131be576131bd61341b565b5b828201905092915050565b60006131d4826132f2565b91506131df836132f2565b9250826131ef576131ee61344a565b5b828204905092915050565b6000613205826132f2565b9150613210836132f2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132495761324861341b565b5b828202905092915050565b600061325f826132f2565b915061326a836132f2565b92508282101561327d5761327c61341b565b5b828203905092915050565b6000613293826132d2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561332957808201518184015260208101905061330e565b83811115613338576000848401525b50505050565b6000600282049050600182168061335657607f821691505b6020821081141561336a57613369613479565b5b50919050565b6133798261351a565b810181811067ffffffffffffffff82111715613398576133976134d7565b5b80604052505050565b60006133ac826132f2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133df576133de61341b565b5b600182019050919050565b60006133f5826132f2565b9150613400836132f2565b9250826134105761340f61344a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b61379281613288565b811461379d57600080fd5b50565b6137a98161329a565b81146137b457600080fd5b50565b6137c0816132a6565b81146137cb57600080fd5b50565b6137d7816132f2565b81146137e257600080fd5b5056fea26469706673582212201b485ae3f0b92916e78e8b1cec3bcd85871bee0bea3e1428e41d5d191e5ad75364736f6c63430008070033
Deployed Bytecode Sourcemap
48642:1924:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48882:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29756:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32869:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34372:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33935:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29005:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35237:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49594:135;;;;;;;;;;;;;:::i;:::-;;35478:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49480:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32677:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30125:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7522:103;;;;;;;;;;;;;:::i;:::-;;50201:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6871:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50329:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33038:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48920:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49097:375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34648:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35734:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49735:307;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48755:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48845:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35006:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48959:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50438:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7780:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48882:33;;;;:::o;29756:305::-;29858:4;29910:25;29895:40;;;:11;:40;;;;:105;;;;29967:33;29952:48;;;:11;:48;;;;29895:105;:158;;;;30017:36;30041:11;30017:23;:36::i;:::-;29895:158;29875:178;;29756:305;;;:::o;32869:100::-;32923:13;32956:5;32949:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32869:100;:::o;34372:204::-;34440:7;34465:16;34473:7;34465;:16::i;:::-;34460:64;;34490:34;;;;;;;;;;;;;;34460:64;34544:15;:24;34560:7;34544:24;;;;;;;;;;;;;;;;;;;;;34537:31;;34372:204;;;:::o;33935:371::-;34008:13;34024:24;34040:7;34024:15;:24::i;:::-;34008:40;;34069:5;34063:11;;:2;:11;;;34059:48;;;34083:24;;;;;;;;;;;;;;34059:48;34140:5;34124:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34150:37;34167:5;34174:12;:10;:12::i;:::-;34150:16;:37::i;:::-;34149:38;34124:63;34120:138;;;34211:35;;;;;;;;;;;;;;34120:138;34270:28;34279:2;34283:7;34292:5;34270:8;:28::i;:::-;33997:309;33935:371;;:::o;29005:303::-;29049:7;29274:15;:13;:15::i;:::-;29259:12;;29243:13;;:28;:46;29236:53;;29005:303;:::o;35237:170::-;35371:28;35381:4;35387:2;35391:7;35371:9;:28::i;:::-;35237:170;;;:::o;49594:135::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;49660:61:::2;49686:10;49699:21;49660:17;:61::i;:::-;1801:1:::1;2755:7;:22;;;;49594:135::o:0;35478:185::-;35616:39;35633:4;35639:2;35643:7;35616:39;;;;;;;;;;;;:16;:39::i;:::-;35478:185;;;:::o;49480:106::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49571:7:::1;49556:12;:22;;;;;;;;;;;;:::i;:::-;;49480:106:::0;:::o;32677:125::-;32741:7;32768:21;32781:7;32768:12;:21::i;:::-;:26;;;32761:33;;32677:125;;;:::o;30125:206::-;30189:7;30230:1;30213:19;;:5;:19;;;30209:60;;;30241:28;;;;;;;;;;;;;;30209:60;30295:12;:19;30308:5;30295:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30287:36;;30280:43;;30125:206;;;:::o;7522:103::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;50201:118::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50300:11:::1;50287:10;;:24;;;;;;;;;;;;;;;;;;50201:118:::0;:::o;6871:87::-;6917:7;6944:6;;;;;;;;;;;6937:13;;6871:87;:::o;50329:101::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50416:6:::1;50408:5;:14;;;;50329:101:::0;:::o;33038:104::-;33094:13;33127:7;33120:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33038:104;:::o;48920:34::-;;;;:::o;49097:375::-;49161:10;;;;;;;;;;;49153:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;49255:1;49243:9;;:13;;;;:::i;:::-;49234:6;49218:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;49210:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49307:9;49296:6;49288:5;;:14;;;;:::i;:::-;49287:29;;49279:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49373:13;;49363:6;:23;;49355:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49435:29;49445:10;49457:6;49435:9;:29::i;:::-;49097:375;:::o;34648:287::-;34759:12;:10;:12::i;:::-;34747:24;;:8;:24;;;34743:54;;;34780:17;;;;;;;;;;;;;;34743:54;34855:8;34810:18;:32;34829:12;:10;:12::i;:::-;34810:32;;;;;;;;;;;;;;;:42;34843:8;34810:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34908:8;34879:48;;34894:12;:10;:12::i;:::-;34879:48;;;34918:8;34879:48;;;;;;:::i;:::-;;;;;;;;34648:287;;:::o;35734:369::-;35901:28;35911:4;35917:2;35921:7;35901:9;:28::i;:::-;35944:15;:2;:13;;;:15::i;:::-;:76;;;;;35964:56;35995:4;36001:2;36005:7;36014:5;35964:30;:56::i;:::-;35963:57;35944:76;35940:156;;;36044:40;;;;;;;;;;;;;;35940:156;35734:369;;;;:::o;49735:307::-;49831:13;49872:17;49880:8;49872:7;:17::i;:::-;49856:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;49992:12;50006:19;:8;:17;:19::i;:::-;49975:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49961:75;;49735:307;;;:::o;48755:85::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48845:32::-;;;;:::o;35006:164::-;35103:4;35127:18;:25;35146:5;35127:25;;;;;;;;;;;;;;;:35;35153:8;35127:35;;;;;;;;;;;;;;;;;;;;;;;;;35120:42;;35006:164;;;;:::o;48959:30::-;;;;;;;;;;;;;:::o;50438:125::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50549:6:::1;50533:13;:22;;;;50438:125:::0;:::o;7780:201::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7889:1:::1;7869:22;;:8;:22;;;;7861:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;19655:157::-;19740:4;19779:25;19764:40;;;:11;:40;;;;19757:47;;19655:157;;;:::o;36358:174::-;36415:4;36458:7;36439:15;:13;:15::i;:::-;:26;;:53;;;;;36479:13;;36469:7;:23;36439:53;:85;;;;;36497:11;:20;36509:7;36497:20;;;;;;;;;;;:27;;;;;;;;;;;;36496:28;36439:85;36432:92;;36358:174;;;:::o;5595:98::-;5648:7;5675:10;5668:17;;5595:98;:::o;45584:196::-;45726:2;45699:15;:24;45715:7;45699:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45764:7;45760:2;45744:28;;45753:5;45744:28;;;;;;;;;;;;45584:196;;;:::o;28779:92::-;28835:7;28862:1;28855:8;;28779:92;:::o;40532:2130::-;40647:35;40685:21;40698:7;40685:12;:21::i;:::-;40647:59;;40745:4;40723:26;;:13;:18;;;:26;;;40719:67;;40758:28;;;;;;;;;;;;;;40719:67;40799:22;40841:4;40825:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;40862:36;40879:4;40885:12;:10;:12::i;:::-;40862:16;:36::i;:::-;40825:73;:126;;;;40939:12;:10;:12::i;:::-;40915:36;;:20;40927:7;40915:11;:20::i;:::-;:36;;;40825:126;40799:153;;40970:17;40965:66;;40996:35;;;;;;;;;;;;;;40965:66;41060:1;41046:16;;:2;:16;;;41042:52;;;41071:23;;;;;;;;;;;;;;41042:52;41107:43;41129:4;41135:2;41139:7;41148:1;41107:21;:43::i;:::-;41215:35;41232:1;41236:7;41245:4;41215:8;:35::i;:::-;41576:1;41546:12;:18;41559:4;41546:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41620:1;41592:12;:16;41605:2;41592:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41638:31;41672:11;:20;41684:7;41672:20;;;;;;;;;;;41638:54;;41723:2;41707:8;:13;;;:18;;;;;;;;;;;;;;;;;;41773:15;41740:8;:23;;;:49;;;;;;;;;;;;;;;;;;42041:19;42073:1;42063:7;:11;42041:33;;42089:31;42123:11;:24;42135:11;42123:24;;;;;;;;;;;42089:58;;42191:1;42166:27;;:8;:13;;;;;;;;;;;;:27;;;42162:384;;;42376:13;;42361:11;:28;42357:174;;42430:4;42414:8;:13;;;:20;;;;;;;;;;;;;;;;;;42483:13;:28;;;42457:8;:23;;;:54;;;;;;;;;;;;;;;;;;42357:174;42162:384;41521:1036;;;42593:7;42589:2;42574:27;;42583:4;42574:27;;;;;;;;;;;;42612:42;42633:4;42639:2;42643:7;42652:1;42612:20;:42::i;:::-;40636:2026;;40532:2130;;;:::o;10833:317::-;10948:6;10923:21;:31;;10915:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11002:12;11020:9;:14;;11042:6;11020:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11001:52;;;11072:7;11064:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;10904:246;10833:317;;:::o;31506:1109::-;31568:21;;:::i;:::-;31602:12;31617:7;31602:22;;31685:4;31666:15;:13;:15::i;:::-;:23;;:47;;;;;31700:13;;31693:4;:20;31666:47;31662:886;;;31734:31;31768:11;:17;31780:4;31768:17;;;;;;;;;;;31734:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31809:9;:16;;;31804:729;;31880:1;31854:28;;:9;:14;;;:28;;;31850:101;;31918:9;31911:16;;;;;;31850:101;32253:261;32260:4;32253:261;;;32293:6;;;;;;;;32338:11;:17;32350:4;32338:17;;;;;;;;;;;32326:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32412:1;32386:28;;:9;:14;;;:28;;;32382:109;;32454:9;32447:16;;;;;;32382:109;32253:261;;;31804:729;31715:833;31662:886;32576:31;;;;;;;;;;;;;;31506:1109;;;;:::o;8141:191::-;8215:16;8234:6;;;;;;;;;;;8215:25;;8260:8;8251:6;;:17;;;;;;;;;;;;;;;;;;8315:8;8284:40;;8305:8;8284:40;;;;;;;;;;;;8204:128;8141:191;:::o;36616:104::-;36685:27;36695:2;36699:8;36685:27;;;;;;;;;;;;:9;:27::i;:::-;36616:104;;:::o;9572:326::-;9632:4;9889:1;9867:7;:19;;;:23;9860:30;;9572:326;;;:::o;46272:667::-;46435:4;46472:2;46456:36;;;46493:12;:10;:12::i;:::-;46507:4;46513:7;46522:5;46456:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46452:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46707:1;46690:6;:13;:18;46686:235;;;46736:40;;;;;;;;;;;;;;46686:235;46879:6;46873:13;46864:6;46860:2;46856:15;46849:38;46452:480;46585:45;;;46575:55;;;:6;:55;;;;46568:62;;;46272:667;;;;;;:::o;3157:723::-;3213:13;3443:1;3434:5;:10;3430:53;;;3461:10;;;;;;;;;;;;;;;;;;;;;3430:53;3493:12;3508:5;3493:20;;3524:14;3549:78;3564:1;3556:4;:9;3549:78;;3582:8;;;;;:::i;:::-;;;;3613:2;3605:10;;;;;:::i;:::-;;;3549:78;;;3637:19;3669:6;3659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3637:39;;3687:154;3703:1;3694:5;:10;3687:154;;3731:1;3721:11;;;;;:::i;:::-;;;3798:2;3790:5;:10;;;;:::i;:::-;3777:2;:24;;;;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3827:2;3818:11;;;;;:::i;:::-;;;3687:154;;;3865:6;3851:21;;;;;3157:723;;;;:::o;47587:159::-;;;;;:::o;48405:158::-;;;;;:::o;37094:1751::-;37217:20;37240:13;;37217:36;;37282:1;37268:16;;:2;:16;;;37264:48;;;37293:19;;;;;;;;;;;;;;37264:48;37339:1;37327:8;:13;37323:44;;;37349:18;;;;;;;;;;;;;;37323:44;37380:61;37410:1;37414:2;37418:12;37432:8;37380:21;:61::i;:::-;37753:8;37718:12;:16;37731:2;37718:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37817:8;37777:12;:16;37790:2;37777:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37876:2;37843:11;:25;37855:12;37843:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37943:15;37893:11;:25;37905:12;37893:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37976:20;37999:12;37976:35;;38026:11;38055:8;38040:12;:23;38026:37;;38084:15;:2;:13;;;:15::i;:::-;38080:633;;;38120:314;38176:12;38172:2;38151:38;;38168:1;38151:38;;;;;;;;;;;;38217:69;38256:1;38260:2;38264:14;;;;;;38280:5;38217:30;:69::i;:::-;38212:174;;38322:40;;;;;;;;;;;;;;38212:174;38429:3;38413:12;:19;;38120:314;;38515:12;38498:13;;:29;38494:43;;38529:8;;;38494:43;38080:633;;;38578:120;38634:14;;;;;;38630:2;38609:40;;38626:1;38609:40;;;;;;;;;;;;38693:3;38677:12;:19;;38578:120;;38080:633;38743:12;38727:13;:28;;;;37693:1074;;38777:60;38806:1;38810:2;38814:12;38828:8;38777:20;:60::i;:::-;37206:1639;37094:1751;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620: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:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:365::-;9862:3;9883:66;9947:1;9942:3;9883:66;:::i;:::-;9876:73;;9958:93;10047:3;9958:93;:::i;:::-;10076:2;10071:3;10067:12;10060:19;;9720:365;;;:::o;10091:366::-;10233:3;10254:67;10318:2;10313:3;10254:67;:::i;:::-;10247:74;;10330:93;10419:3;10330:93;:::i;:::-;10448:2;10443:3;10439:12;10432:19;;10091:366;;;:::o;10463:::-;10605:3;10626:67;10690:2;10685:3;10626:67;:::i;:::-;10619:74;;10702:93;10791:3;10702:93;:::i;:::-;10820:2;10815:3;10811:12;10804:19;;10463:366;;;:::o;10835:::-;10977:3;10998:67;11062:2;11057:3;10998:67;:::i;:::-;10991:74;;11074:93;11163:3;11074:93;:::i;:::-;11192:2;11187:3;11183:12;11176:19;;10835:366;;;:::o;11207:::-;11349:3;11370:67;11434:2;11429:3;11370:67;:::i;:::-;11363:74;;11446:93;11535:3;11446:93;:::i;:::-;11564:2;11559:3;11555:12;11548:19;;11207:366;;;:::o;11579:400::-;11739:3;11760:84;11842:1;11837:3;11760:84;:::i;:::-;11753:91;;11853:93;11942:3;11853:93;:::i;:::-;11971:1;11966:3;11962:11;11955:18;;11579:400;;;:::o;11985:366::-;12127:3;12148:67;12212:2;12207:3;12148:67;:::i;:::-;12141:74;;12224:93;12313:3;12224:93;:::i;:::-;12342:2;12337:3;12333:12;12326:19;;11985:366;;;:::o;12357:::-;12499:3;12520:67;12584:2;12579:3;12520:67;:::i;:::-;12513:74;;12596:93;12685:3;12596:93;:::i;:::-;12714:2;12709:3;12705:12;12698:19;;12357:366;;;:::o;12729:398::-;12888:3;12909:83;12990:1;12985:3;12909:83;:::i;:::-;12902:90;;13001:93;13090:3;13001:93;:::i;:::-;13119:1;13114:3;13110:11;13103:18;;12729:398;;;:::o;13133:366::-;13275:3;13296:67;13360:2;13355:3;13296:67;:::i;:::-;13289:74;;13372:93;13461:3;13372:93;:::i;:::-;13490:2;13485:3;13481:12;13474:19;;13133:366;;;:::o;13505:::-;13647:3;13668:67;13732:2;13727:3;13668:67;:::i;:::-;13661:74;;13744:93;13833:3;13744:93;:::i;:::-;13862:2;13857:3;13853:12;13846:19;;13505:366;;;:::o;13877:::-;14019:3;14040:67;14104:2;14099:3;14040:67;:::i;:::-;14033:74;;14116:93;14205:3;14116:93;:::i;:::-;14234:2;14229:3;14225:12;14218:19;;13877:366;;;:::o;14249:118::-;14336:24;14354:5;14336:24;:::i;:::-;14331:3;14324:37;14249:118;;:::o;14373:695::-;14651:3;14673:92;14761:3;14752:6;14673:92;:::i;:::-;14666:99;;14782:95;14873:3;14864:6;14782:95;:::i;:::-;14775:102;;14894:148;15038:3;14894:148;:::i;:::-;14887:155;;15059:3;15052:10;;14373:695;;;;;:::o;15074:379::-;15258:3;15280:147;15423:3;15280:147;:::i;:::-;15273:154;;15444:3;15437:10;;15074:379;;;:::o;15459:222::-;15552:4;15590:2;15579:9;15575:18;15567:26;;15603:71;15671:1;15660:9;15656:17;15647:6;15603:71;:::i;:::-;15459:222;;;;:::o;15687:640::-;15882:4;15920:3;15909:9;15905:19;15897:27;;15934:71;16002:1;15991:9;15987:17;15978:6;15934:71;:::i;:::-;16015:72;16083:2;16072:9;16068:18;16059:6;16015:72;:::i;:::-;16097;16165:2;16154:9;16150:18;16141:6;16097:72;:::i;:::-;16216:9;16210:4;16206:20;16201:2;16190:9;16186:18;16179:48;16244:76;16315:4;16306:6;16244:76;:::i;:::-;16236:84;;15687:640;;;;;;;:::o;16333:210::-;16420:4;16458:2;16447:9;16443:18;16435:26;;16471:65;16533:1;16522:9;16518:17;16509:6;16471:65;:::i;:::-;16333:210;;;;:::o;16549:313::-;16662:4;16700:2;16689:9;16685:18;16677:26;;16749:9;16743:4;16739:20;16735:1;16724:9;16720:17;16713:47;16777:78;16850:4;16841:6;16777:78;:::i;:::-;16769:86;;16549:313;;;;:::o;16868:419::-;17034:4;17072:2;17061:9;17057:18;17049:26;;17121:9;17115:4;17111:20;17107:1;17096:9;17092:17;17085:47;17149:131;17275:4;17149:131;:::i;:::-;17141:139;;16868:419;;;:::o;17293:::-;17459:4;17497:2;17486:9;17482:18;17474:26;;17546:9;17540:4;17536:20;17532:1;17521:9;17517:17;17510:47;17574:131;17700:4;17574:131;:::i;:::-;17566:139;;17293:419;;;:::o;17718:::-;17884:4;17922:2;17911:9;17907:18;17899:26;;17971:9;17965:4;17961:20;17957:1;17946:9;17942:17;17935:47;17999:131;18125:4;17999:131;:::i;:::-;17991:139;;17718:419;;;:::o;18143:::-;18309:4;18347:2;18336:9;18332:18;18324:26;;18396:9;18390:4;18386:20;18382:1;18371:9;18367:17;18360:47;18424:131;18550:4;18424:131;:::i;:::-;18416:139;;18143:419;;;:::o;18568:::-;18734:4;18772:2;18761:9;18757:18;18749:26;;18821:9;18815:4;18811:20;18807:1;18796:9;18792:17;18785:47;18849:131;18975:4;18849:131;:::i;:::-;18841:139;;18568:419;;;:::o;18993:::-;19159:4;19197:2;19186:9;19182:18;19174:26;;19246:9;19240:4;19236:20;19232:1;19221:9;19217:17;19210:47;19274:131;19400:4;19274:131;:::i;:::-;19266:139;;18993:419;;;:::o;19418:::-;19584:4;19622:2;19611:9;19607:18;19599:26;;19671:9;19665:4;19661:20;19657:1;19646:9;19642:17;19635:47;19699:131;19825:4;19699:131;:::i;:::-;19691:139;;19418:419;;;:::o;19843:::-;20009:4;20047:2;20036:9;20032:18;20024:26;;20096:9;20090:4;20086:20;20082:1;20071:9;20067:17;20060:47;20124:131;20250:4;20124:131;:::i;:::-;20116:139;;19843:419;;;:::o;20268:::-;20434:4;20472:2;20461:9;20457:18;20449:26;;20521:9;20515:4;20511:20;20507:1;20496:9;20492:17;20485:47;20549:131;20675:4;20549:131;:::i;:::-;20541:139;;20268:419;;;:::o;20693:::-;20859:4;20897:2;20886:9;20882:18;20874:26;;20946:9;20940:4;20936:20;20932:1;20921:9;20917:17;20910:47;20974:131;21100:4;20974:131;:::i;:::-;20966:139;;20693:419;;;:::o;21118:222::-;21211:4;21249:2;21238:9;21234:18;21226:26;;21262:71;21330:1;21319:9;21315:17;21306:6;21262:71;:::i;:::-;21118:222;;;;:::o;21346:129::-;21380:6;21407:20;;:::i;:::-;21397:30;;21436:33;21464:4;21456:6;21436:33;:::i;:::-;21346:129;;;:::o;21481:75::-;21514:6;21547:2;21541:9;21531:19;;21481:75;:::o;21562:307::-;21623:4;21713:18;21705:6;21702:30;21699:56;;;21735:18;;:::i;:::-;21699:56;21773:29;21795:6;21773:29;:::i;:::-;21765:37;;21857:4;21851;21847:15;21839:23;;21562:307;;;:::o;21875:308::-;21937:4;22027:18;22019:6;22016:30;22013:56;;;22049:18;;:::i;:::-;22013:56;22087:29;22109:6;22087:29;:::i;:::-;22079:37;;22171:4;22165;22161:15;22153:23;;21875:308;;;:::o;22189:141::-;22238:4;22261:3;22253:11;;22284:3;22281:1;22274:14;22318:4;22315:1;22305:18;22297:26;;22189:141;;;:::o;22336:98::-;22387:6;22421:5;22415:12;22405:22;;22336:98;;;:::o;22440:99::-;22492:6;22526:5;22520:12;22510:22;;22440:99;;;:::o;22545:168::-;22628:11;22662:6;22657:3;22650:19;22702:4;22697:3;22693:14;22678:29;;22545:168;;;;:::o;22719:147::-;22820:11;22857:3;22842:18;;22719:147;;;;:::o;22872:169::-;22956:11;22990:6;22985:3;22978:19;23030:4;23025:3;23021:14;23006:29;;22872:169;;;;:::o;23047:148::-;23149:11;23186:3;23171:18;;23047:148;;;;:::o;23201:305::-;23241:3;23260:20;23278:1;23260:20;:::i;:::-;23255:25;;23294:20;23312:1;23294:20;:::i;:::-;23289:25;;23448:1;23380:66;23376:74;23373:1;23370:81;23367:107;;;23454:18;;:::i;:::-;23367:107;23498:1;23495;23491:9;23484:16;;23201:305;;;;:::o;23512:185::-;23552:1;23569:20;23587:1;23569:20;:::i;:::-;23564:25;;23603:20;23621:1;23603:20;:::i;:::-;23598:25;;23642:1;23632:35;;23647:18;;:::i;:::-;23632:35;23689:1;23686;23682:9;23677:14;;23512:185;;;;:::o;23703:348::-;23743:7;23766:20;23784:1;23766:20;:::i;:::-;23761:25;;23800:20;23818:1;23800:20;:::i;:::-;23795:25;;23988:1;23920:66;23916:74;23913:1;23910:81;23905:1;23898:9;23891:17;23887:105;23884:131;;;23995:18;;:::i;:::-;23884:131;24043:1;24040;24036:9;24025:20;;23703:348;;;;:::o;24057:191::-;24097:4;24117:20;24135:1;24117:20;:::i;:::-;24112:25;;24151:20;24169:1;24151:20;:::i;:::-;24146:25;;24190:1;24187;24184:8;24181:34;;;24195:18;;:::i;:::-;24181:34;24240:1;24237;24233:9;24225:17;;24057:191;;;;:::o;24254:96::-;24291:7;24320:24;24338:5;24320:24;:::i;:::-;24309:35;;24254:96;;;:::o;24356:90::-;24390:7;24433:5;24426:13;24419:21;24408:32;;24356:90;;;:::o;24452:149::-;24488:7;24528:66;24521:5;24517:78;24506:89;;24452:149;;;:::o;24607:126::-;24644:7;24684:42;24677:5;24673:54;24662:65;;24607:126;;;:::o;24739:77::-;24776:7;24805:5;24794:16;;24739:77;;;:::o;24822:154::-;24906:6;24901:3;24896;24883:30;24968:1;24959:6;24954:3;24950:16;24943:27;24822:154;;;:::o;24982:307::-;25050:1;25060:113;25074:6;25071:1;25068:13;25060:113;;;25159:1;25154:3;25150:11;25144:18;25140:1;25135:3;25131:11;25124:39;25096:2;25093:1;25089:10;25084:15;;25060:113;;;25191:6;25188:1;25185:13;25182:101;;;25271:1;25262:6;25257:3;25253:16;25246:27;25182:101;25031:258;24982:307;;;:::o;25295:320::-;25339:6;25376:1;25370:4;25366:12;25356:22;;25423:1;25417:4;25413:12;25444:18;25434:81;;25500:4;25492:6;25488:17;25478:27;;25434:81;25562:2;25554:6;25551:14;25531:18;25528:38;25525:84;;;25581:18;;:::i;:::-;25525:84;25346:269;25295:320;;;:::o;25621:281::-;25704:27;25726:4;25704:27;:::i;:::-;25696:6;25692:40;25834:6;25822:10;25819:22;25798:18;25786:10;25783:34;25780:62;25777:88;;;25845:18;;:::i;:::-;25777:88;25885:10;25881:2;25874:22;25664:238;25621:281;;:::o;25908:233::-;25947:3;25970:24;25988:5;25970:24;:::i;:::-;25961:33;;26016:66;26009:5;26006:77;26003:103;;;26086:18;;:::i;:::-;26003:103;26133:1;26126:5;26122:13;26115:20;;25908:233;;;:::o;26147:176::-;26179:1;26196:20;26214:1;26196:20;:::i;:::-;26191:25;;26230:20;26248:1;26230:20;:::i;:::-;26225:25;;26269:1;26259:35;;26274:18;;:::i;:::-;26259:35;26315:1;26312;26308:9;26303:14;;26147:176;;;;:::o;26329:180::-;26377:77;26374:1;26367:88;26474:4;26471:1;26464:15;26498:4;26495:1;26488:15;26515:180;26563:77;26560:1;26553:88;26660:4;26657:1;26650:15;26684:4;26681:1;26674:15;26701:180;26749:77;26746:1;26739:88;26846:4;26843:1;26836:15;26870:4;26867:1;26860:15;26887:180;26935:77;26932:1;26925:88;27032:4;27029:1;27022:15;27056:4;27053:1;27046:15;27073:180;27121:77;27118:1;27111:88;27218:4;27215:1;27208:15;27242:4;27239:1;27232:15;27259:117;27368:1;27365;27358:12;27382:117;27491:1;27488;27481:12;27505:117;27614:1;27611;27604:12;27628:117;27737:1;27734;27727:12;27751:102;27792:6;27843:2;27839:7;27834:2;27827:5;27823:14;27819:28;27809:38;;27751:102;;;:::o;27859:157::-;27999:9;27995:1;27987:6;27983:14;27976:33;27859:157;:::o;28022:225::-;28162:34;28158:1;28150:6;28146:14;28139:58;28231:8;28226:2;28218:6;28214:15;28207:33;28022:225;:::o;28253:245::-;28393:34;28389:1;28381:6;28377:14;28370:58;28462:28;28457:2;28449:6;28445:15;28438:53;28253:245;:::o;28504:179::-;28644:31;28640:1;28632:6;28628:14;28621:55;28504:179;:::o;28689:221::-;28829:34;28825:1;28817:6;28813:14;28806:58;28898:4;28893:2;28885:6;28881:15;28874:29;28689:221;:::o;28916:155::-;29056:7;29052:1;29044:6;29040:14;29033:31;28916:155;:::o;29077:182::-;29217:34;29213:1;29205:6;29201:14;29194:58;29077:182;:::o;29265:234::-;29405:34;29401:1;29393:6;29389:14;29382:58;29474:17;29469:2;29461:6;29457:15;29450:42;29265:234;:::o;29505:114::-;;:::o;29625:174::-;29765:26;29761:1;29753:6;29749:14;29742:50;29625:174;:::o;29805:181::-;29945:33;29941:1;29933:6;29929:14;29922:57;29805:181;:::o;29992:173::-;30132:25;30128:1;30120:6;30116:14;30109:49;29992:173;:::o;30171:122::-;30244:24;30262:5;30244:24;:::i;:::-;30237:5;30234:35;30224:63;;30283:1;30280;30273:12;30224:63;30171:122;:::o;30299:116::-;30369:21;30384:5;30369:21;:::i;:::-;30362:5;30359:32;30349:60;;30405:1;30402;30395:12;30349:60;30299:116;:::o;30421:120::-;30493:23;30510:5;30493:23;:::i;:::-;30486:5;30483:34;30473:62;;30531:1;30528;30521:12;30473:62;30421:120;:::o;30547:122::-;30620:24;30638:5;30620:24;:::i;:::-;30613:5;30610:35;30600:63;;30659:1;30656;30649:12;30600:63;30547:122;:::o
Swarm Source
ipfs://1b485ae3f0b92916e78e8b1cec3bcd85871bee0bea3e1428e41d5d191e5ad753
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ 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.