ERC-721
Overview
Max Total Supply
1,289 $$$$H
Holders
389
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 $$$$HLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NobodyHasToKnow
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-24 */ // SPDX-License-Identifier: MIT /* Nobody has to know 1289 Nft free mint wen reveal? https://www.tickcounter.com/countdown/3317447/wen-reveal-nobody-has-to-know @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,.....,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@%...........................@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@,.....................................#@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@.............................................@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@........,%%%%%%%%%...............%%%%%%%%%.........@@@@@@@@@@@@@@ @@@@@@@@@@@@.......%%%%%%%%%%%%%,...............*%%%%%%%%%%%%%.......@@@@@@@@@@@ @@@@@@@@@@......%%%%%%%%................................,%%%%%%%%......@@@@@@@@@ @@@@@@@@,....%%%%%%%.........................................%%%%%%(....%@@@@@@@ @@@@@@@.....%%%%%,.............................................(%%%%%.....@@@@@@ @@@@@@.......%%...................................................%%.......@@@@@ @@@@@....................%%%%%/...................#%%%%%....................@@@@ @@@@....................%%%%%%%%.................%%%%%%%%....................@@@ @@@....................,%%%%%%%%.................%%%%%%%%....................%@@ @@@.....................#%%%%%%..................*%%%%%%/.....................@@ @@@...........................................................................@@ @@@...........................................................................@@ @@@...................................********................................@@ @@@...................................********................................@@ @@@..................................********,................................@@ @@@@................................%********................................@@@ @@@@@..........................#%%%%********(%%%#...........................@@@@ @@@@@@.........................%%%%%********%%%%#..........................@@@@@ @@@@@@@............................********#(.............................@@@@@@ @@@@@@@@...........................*************....,***,................@@@@@@@ @@@@@@@@@@........................*************************............@@@@@@@@@ @@@@@@@@@@@@.....................,********%%%%%(**********,..........@@@@@@@@@@@ @@@@@@@@@@@@@@...................****************%#******..........@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@................****************(%****,........@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@...........*************#%%******......@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@,.....,***************#%***,..@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*******(%*******%****@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@********%%%%%%%#***@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */ 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; /** * @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 (token/ERC721/extensions/IERC721Enumerable.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/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (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 v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex = 0; uint256 internal immutable maxBatchSize; // 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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, 'ERC721A: max batch size must be nonzero'); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert('ERC721A: unable to get token of owner by index'); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), 'ERC721A: token already minted'); require(quantity <= maxBatchSize, 'ERC721A: quantity to mint too high'); require(quantity > 0, 'ERC721A: quantity must be greater 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; } _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } /* Nobody has to know 1289 Nft free mint wen reveal? https://www.tickcounter.com/countdown/3317447/wen-reveal-nobody-has-to-know @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,.....,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@%...........................@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@,.....................................#@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@.............................................@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@........,%%%%%%%%%...............%%%%%%%%%.........@@@@@@@@@@@@@@ @@@@@@@@@@@@.......%%%%%%%%%%%%%,...............*%%%%%%%%%%%%%.......@@@@@@@@@@@ @@@@@@@@@@......%%%%%%%%................................,%%%%%%%%......@@@@@@@@@ @@@@@@@@,....%%%%%%%.........................................%%%%%%(....%@@@@@@@ @@@@@@@.....%%%%%,.............................................(%%%%%.....@@@@@@ @@@@@@.......%%...................................................%%.......@@@@@ @@@@@....................%%%%%/...................#%%%%%....................@@@@ @@@@....................%%%%%%%%.................%%%%%%%%....................@@@ @@@....................,%%%%%%%%.................%%%%%%%%....................%@@ @@@.....................#%%%%%%..................*%%%%%%/.....................@@ @@@...........................................................................@@ @@@...........................................................................@@ @@@...................................********................................@@ @@@...................................********................................@@ @@@..................................********,................................@@ @@@@................................%********................................@@@ @@@@@..........................#%%%%********(%%%#...........................@@@@ @@@@@@.........................%%%%%********%%%%#..........................@@@@@ @@@@@@@............................********#(.............................@@@@@@ @@@@@@@@...........................*************....,***,................@@@@@@@ @@@@@@@@@@........................*************************............@@@@@@@@@ @@@@@@@@@@@@.....................,********%%%%%(**********,..........@@@@@@@@@@@ @@@@@@@@@@@@@@...................****************%#******..........@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@................****************(%****,........@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@...........*************#%%******......@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@,.....,***************#%***,..@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*******(%*******%****@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@********%%%%%%%#***@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */ pragma solidity ^0.8.0; contract NobodyHasToKnow is ERC721A, Ownable { using Strings for uint256; string private uriPrefix = ""; string private uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public price = 0 ether; uint256 public maxSupply = 1289; uint256 public maxMintAmountPerTx = 3; uint256 public nftPerAddressLimit = 3; bool public paused = false; bool public revealed = false; mapping(address => uint256) public addressMintedBalance; constructor() ERC721A("nobodyhastoknow", "$$$$H", maxMintAmountPerTx) { setHiddenMetadataUri("ipfs://QmQGyVacehfdeyTieLaJdgaceX4TwDr8ZMuuriFKE5Mzt1"); } modifier mintCompliance(uint256 _mintAmount) { uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); require(currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(!paused, "The contract is paused!"); require(msg.value >= price * _mintAmount, "Insufficient funds!"); require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); _safeMint(msg.sender, _mintAmount); } function Airdrop(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_to, _mintAmount); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 0; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setPrice(uint256 _price) public onlyOwner { price = _price; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function _mintLoop(address _receiver, uint256 _mintAmount) internal { _safeMint(_receiver, _mintAmount); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setNftPerAddressLimit(uint256 _nftPerAddressLimit) public onlyOwner { nftPerAddressLimit = _nftPerAddressLimit; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftPerAddressLimit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600080805560c060405260a09081526008906200001d9082620002e5565b50604080518082019091526005815264173539b7b760d91b6020820152600990620000499082620002e5565b506000600b55610509600c556003600d819055600e55600f805461ffff191690553480156200007757600080fd5b506040518060400160405280600f81526020016e6e6f626f6479686173746f6b6e6f7760881b81525060405180604001604052806005815260200164048484848960db1b815250600d5460008111620001275760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b6001620001358482620002e5565b506002620001448382620002e5565b50608052506200015690503362000180565b6200017a60405180606001604052806035815260200162002d4160359139620001d2565b620003b1565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b031633146200022e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200011e565b600a6200023c8282620002e5565b5050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200026b57607f821691505b6020821081036200028c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002e057600081815260208120601f850160051c81016020861015620002bb5750805b601f850160051c820191505b81811015620002dc57828155600101620002c7565b5050505b505050565b81516001600160401b0381111562000301576200030162000240565b620003198162000312845462000256565b8462000292565b602080601f831160018114620003515760008415620003385750858301515b600019600386901b1c1916600185901b178555620002dc565b600085815260208120601f198616915b82811015620003825788860151825594840194600190910190840162000361565b5085821015620003a15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051612966620003db60003960008181611ad601528181611b000152611f3901526129666000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063a45ba8e7116100ab578063d0eb26b01161006f578063d0eb26b01461068a578063d5abeb01146106aa578063e0a80853146106c0578063e985e9c5146106e0578063f2fde38b1461072957600080fd5b8063a45ba8e7146105ff578063b071401b14610614578063b88d4fde14610634578063ba7d2c7614610654578063c87b56dd1461066a57600080fd5b806394354fd0116100f257806394354fd01461058b57806395d89b41146105a1578063a035b1fe146105b6578063a0712d68146105cc578063a22cb465146105df57600080fd5b8063715018a6146104f85780637ec4a6591461050d5780638c32c5681461052d5780638da5cb5b1461054d57806391b7f5ed1461056b57600080fd5b80633ccfd60b116101bc5780635183022711610180578063518302271461045f5780635c975abb1461047e5780636352211e146104985780636f8b44b0146104b857806370a08231146104d857600080fd5b80633ccfd60b146103bd57806342842e0e146103d2578063438b6300146103f25780634f6ccce71461041f5780634fdd43cb1461043f57600080fd5b806316c38b3c1161020357806316c38b3c1461031157806318160ddd1461033157806318cae2691461035057806323b872dd1461037d5780632f745c591461039d57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806316ba10e0146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b3660046121c9565b610749565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a6107b6565b60405161026c919061223e565b3480156102a357600080fd5b506102b76102b2366004612251565b610848565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612286565b6108d8565b005b3480156102fd57600080fd5b506102ef61030c36600461233c565b6109ef565b34801561031d57600080fd5b506102ef61032c366004612395565b610a29565b34801561033d57600080fd5b506000545b60405190815260200161026c565b34801561035c57600080fd5b5061034261036b3660046123b0565b60106020526000908152604090205481565b34801561038957600080fd5b506102ef6103983660046123cb565b610a66565b3480156103a957600080fd5b506103426103b8366004612286565b610a71565b3480156103c957600080fd5b506102ef610bdd565b3480156103de57600080fd5b506102ef6103ed3660046123cb565b610c7b565b3480156103fe57600080fd5b5061041261040d3660046123b0565b610c96565b60405161026c9190612407565b34801561042b57600080fd5b5061034261043a366004612251565b610d75565b34801561044b57600080fd5b506102ef61045a36600461233c565b610dd7565b34801561046b57600080fd5b50600f5461026090610100900460ff1681565b34801561048a57600080fd5b50600f546102609060ff1681565b3480156104a457600080fd5b506102b76104b3366004612251565b610e0d565b3480156104c457600080fd5b506102ef6104d3366004612251565b610e1f565b3480156104e457600080fd5b506103426104f33660046123b0565b610e4e565b34801561050457600080fd5b506102ef610edf565b34801561051957600080fd5b506102ef61052836600461233c565b610f15565b34801561053957600080fd5b506102ef610548366004612286565b610f4b565b34801561055957600080fd5b506007546001600160a01b03166102b7565b34801561057757600080fd5b506102ef610586366004612251565b61106c565b34801561059757600080fd5b50610342600d5481565b3480156105ad57600080fd5b5061028a61109b565b3480156105c257600080fd5b50610342600b5481565b6102ef6105da366004612251565b6110aa565b3480156105eb57600080fd5b506102ef6105fa36600461244b565b61127c565b34801561060b57600080fd5b5061028a611340565b34801561062057600080fd5b506102ef61062f366004612251565b6113ce565b34801561064057600080fd5b506102ef61064f36600461247e565b6113fd565b34801561066057600080fd5b50610342600e5481565b34801561067657600080fd5b5061028a610685366004612251565b611430565b34801561069657600080fd5b506102ef6106a5366004612251565b6115a6565b3480156106b657600080fd5b50610342600c5481565b3480156106cc57600080fd5b506102ef6106db366004612395565b6115d5565b3480156106ec57600080fd5b506102606106fb3660046124fa565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561073557600080fd5b506102ef6107443660046123b0565b611619565b60006001600160e01b031982166380ac58cd60e01b148061077a57506001600160e01b03198216635b5e139f60e01b145b8061079557506001600160e01b0319821663780e9d6360e01b145b806107b057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107c590612524565b80601f01602080910402602001604051908101604052809291908181526020018280546107f190612524565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b6000610855826000541190565b6108bc5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108e382610e0d565b9050806001600160a01b0316836001600160a01b0316036109515760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108b3565b336001600160a01b038216148061096d575061096d81336106fb565b6109df5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108b3565b6109ea8383836116b1565b505050565b6007546001600160a01b03163314610a195760405162461bcd60e51b81526004016108b39061255e565b6009610a2582826125d9565b5050565b6007546001600160a01b03163314610a535760405162461bcd60e51b81526004016108b39061255e565b600f805460ff1916911515919091179055565b6109ea83838361170d565b6000610a7c83610e4e565b8210610ad55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108b3565b600080549080805b83811015610b7d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b3057805192505b876001600160a01b0316836001600160a01b031603610b6a57868403610b5c575093506107b092505050565b83610b66816126af565b9450505b5080610b75816126af565b915050610add565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108b3565b6007546001600160a01b03163314610c075760405162461bcd60e51b81526004016108b39061255e565b6000610c1b6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c65576040519150601f19603f3d011682016040523d82523d6000602084013e610c6a565b606091505b5050905080610c7857600080fd5b50565b6109ea838383604051806020016040528060008152506113fd565b60606000610ca383610e4e565b905060008167ffffffffffffffff811115610cc057610cc06122b0565b604051908082528060200260200182016040528015610ce9578160200160208202803683370190505b5090506000805b8381108015610d015750600c548211155b15610d6b576000610d1183610e0d565b9050866001600160a01b0316816001600160a01b031603610d585782848381518110610d3f57610d3f6126c8565b602090810291909101015281610d54816126af565b9250505b82610d62816126af565b93505050610cf0565b5090949350505050565b600080548210610dd35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108b3565b5090565b6007546001600160a01b03163314610e015760405162461bcd60e51b81526004016108b39061255e565b600a610a2582826125d9565b6000610e1882611a54565b5192915050565b6007546001600160a01b03163314610e495760405162461bcd60e51b81526004016108b39061255e565b600c55565b60006001600160a01b038216610eba5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108b3565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610f095760405162461bcd60e51b81526004016108b39061255e565b610f136000611bfe565b565b6007546001600160a01b03163314610f3f5760405162461bcd60e51b81526004016108b39061255e565b6008610a2582826125d9565b3360009081526010602052604090205481908115801590610f6e5750600d548211155b610fb15760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108b3565b600e54610fbe83836126de565b1115610fdc5760405162461bcd60e51b81526004016108b3906126f6565b600c5482600054610fed91906126de565b11156110325760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108b3565b6007546001600160a01b0316331461105c5760405162461bcd60e51b81526004016108b39061255e565b6110668484611c50565b50505050565b6007546001600160a01b031633146110965760405162461bcd60e51b81526004016108b39061255e565b600b55565b6060600280546107c590612524565b33600090815260106020526040902054819081158015906110cd5750600d548211155b6111105760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108b3565b600e5461111d83836126de565b111561113b5760405162461bcd60e51b81526004016108b3906126f6565b600c548260005461114c91906126de565b11156111915760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108b3565b33600090815260106020526040902054600f5460ff16156111f45760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108b3565b83600b54611202919061272d565b3410156112475760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108b3565b600e5461125485836126de565b11156112725760405162461bcd60e51b81526004016108b3906126f6565b6110663385611c50565b336001600160a01b038316036112d45760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108b3565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a805461134d90612524565b80601f016020809104026020016040519081016040528092919081815260200182805461137990612524565b80156113c65780601f1061139b576101008083540402835291602001916113c6565b820191906000526020600020905b8154815290600101906020018083116113a957829003601f168201915b505050505081565b6007546001600160a01b031633146113f85760405162461bcd60e51b81526004016108b39061255e565b600d55565b61140884848461170d565b61141484848484611c6a565b6110665760405162461bcd60e51b81526004016108b39061274c565b606061143d826000541190565b6114a15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108b3565b600f54610100900460ff16151560000361154757600a80546114c290612524565b80601f01602080910402602001604051908101604052809291908181526020018280546114ee90612524565b801561153b5780601f106115105761010080835404028352916020019161153b565b820191906000526020600020905b81548152906001019060200180831161151e57829003601f168201915b50505050509050919050565b6000611551611d6c565b90506000815111611571576040518060200160405280600081525061159f565b8061157b84611d7b565b600960405160200161158f9392919061279f565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146115d05760405162461bcd60e51b81526004016108b39061255e565b600e55565b6007546001600160a01b031633146115ff5760405162461bcd60e51b81526004016108b39061255e565b600f80549115156101000261ff0019909216919091179055565b6007546001600160a01b031633146116435760405162461bcd60e51b81526004016108b39061255e565b6001600160a01b0381166116a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b3565b610c7881611bfe565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061171882611a54565b80519091506000906001600160a01b0316336001600160a01b0316148061174f57503361174484610848565b6001600160a01b0316145b806117615750815161176190336106fb565b9050806117cb5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108b3565b846001600160a01b031682600001516001600160a01b03161461183f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108b3565b6001600160a01b0384166118a35760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108b3565b6118b360008484600001516116b1565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906119789085906126de565b6000818152600360205260409020549091506001600160a01b0316611a0a576119a2816000541190565b15611a0a5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611a73826000541190565b611ad25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108b3565b60007f00000000000000000000000000000000000000000000000000000000000000008310611b3357611b257f00000000000000000000000000000000000000000000000000000000000000008461283f565b611b309060016126de565b90505b825b818110611b9d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b8a57949350505050565b5080611b9581612856565b915050611b35565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108b3565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a25828260405180602001604052806000815250611e7c565b60006001600160a01b0384163b15611d6057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cae90339089908890889060040161286d565b6020604051808303816000875af1925050508015611ce9575060408051601f3d908101601f19168201909252611ce6918101906128aa565b60015b611d46573d808015611d17576040519150601f19603f3d011682016040523d82523d6000602084013e611d1c565b606091505b508051600003611d3e5760405162461bcd60e51b81526004016108b39061274c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d64565b5060015b949350505050565b6060600880546107c590612524565b606081600003611da25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dcc5780611db6816126af565b9150611dc59050600a836128dd565b9150611da6565b60008167ffffffffffffffff811115611de757611de76122b0565b6040519080825280601f01601f191660200182016040528015611e11576020820181803683370190505b5090505b8415611d6457611e2660018361283f565b9150611e33600a866128f1565b611e3e9060306126de565b60f81b818381518110611e5357611e536126c8565b60200101906001600160f81b031916908160001a905350611e75600a866128dd565b9450611e15565b6000546001600160a01b038416611edf5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108b3565b611eea816000541190565b15611f375760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108b3565b7f0000000000000000000000000000000000000000000000000000000000000000831115611fb25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108b3565b6000831161200e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016108b3565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061206a908790612905565b6001600160801b031681526020018583602001516120889190612905565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121a85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461216c6000888488611c6a565b6121885760405162461bcd60e51b81526004016108b39061274c565b81612192816126af565b92505080806121a0906126af565b91505061211f565b506000819055611a4c565b6001600160e01b031981168114610c7857600080fd5b6000602082840312156121db57600080fd5b813561159f816121b3565b60005b838110156122015781810151838201526020016121e9565b838111156110665750506000910152565b6000815180845261222a8160208601602086016121e6565b601f01601f19169290920160200192915050565b60208152600061159f6020830184612212565b60006020828403121561226357600080fd5b5035919050565b80356001600160a01b038116811461228157600080fd5b919050565b6000806040838503121561229957600080fd5b6122a28361226a565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156122e1576122e16122b0565b604051601f8501601f19908116603f01168101908282118183101715612309576123096122b0565b8160405280935085815286868601111561232257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561234e57600080fd5b813567ffffffffffffffff81111561236557600080fd5b8201601f8101841361237657600080fd5b611d64848235602084016122c6565b8035801515811461228157600080fd5b6000602082840312156123a757600080fd5b61159f82612385565b6000602082840312156123c257600080fd5b61159f8261226a565b6000806000606084860312156123e057600080fd5b6123e98461226a565b92506123f76020850161226a565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561243f57835183529284019291840191600101612423565b50909695505050505050565b6000806040838503121561245e57600080fd5b6124678361226a565b915061247560208401612385565b90509250929050565b6000806000806080858703121561249457600080fd5b61249d8561226a565b93506124ab6020860161226a565b925060408501359150606085013567ffffffffffffffff8111156124ce57600080fd5b8501601f810187136124df57600080fd5b6124ee878235602084016122c6565b91505092959194509250565b6000806040838503121561250d57600080fd5b6125168361226a565b91506124756020840161226a565b600181811c9082168061253857607f821691505b60208210810361255857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f8211156109ea57600081815260208120601f850160051c810160208610156125ba5750805b601f850160051c820191505b81811015611a4c578281556001016125c6565b815167ffffffffffffffff8111156125f3576125f36122b0565b612607816126018454612524565b84612593565b602080601f83116001811461263c57600084156126245750858301515b600019600386901b1c1916600185901b178555611a4c565b600085815260208120601f198616915b8281101561266b5788860151825594840194600190910190840161264c565b50858210156126895787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000600182016126c1576126c1612699565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600082198211156126f1576126f1612699565b500190565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b600081600019048311821515161561274757612747612699565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845160206127b28285838a016121e6565b8551918401916127c58184848a016121e6565b85549201916000906127d681612524565b600182811680156127ee57600181146128035761282f565b60ff198416875282151583028701945061282f565b896000528560002060005b848110156128275781548982015290830190870161280e565b505082870194505b50929a9950505050505050505050565b60008282101561285157612851612699565b500390565b60008161286557612865612699565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128a090830184612212565b9695505050505050565b6000602082840312156128bc57600080fd5b815161159f816121b3565b634e487b7160e01b600052601260045260246000fd5b6000826128ec576128ec6128c7565b500490565b600082612900576129006128c7565b500690565b60006001600160801b0380831681851680830382111561292757612927612699565b0194935050505056fea264697066735822122058242fb87c22d921cacd931c0be1208fd28839bd5493023f1602013f7ccdf92e64736f6c634300080f0033697066733a2f2f516d5147795661636568666465795469654c614a6467616365583454774472385a4d75757269464b45354d7a7431
Deployed Bytecode
0x60806040526004361061023b5760003560e01c8063715018a61161012e578063a45ba8e7116100ab578063d0eb26b01161006f578063d0eb26b01461068a578063d5abeb01146106aa578063e0a80853146106c0578063e985e9c5146106e0578063f2fde38b1461072957600080fd5b8063a45ba8e7146105ff578063b071401b14610614578063b88d4fde14610634578063ba7d2c7614610654578063c87b56dd1461066a57600080fd5b806394354fd0116100f257806394354fd01461058b57806395d89b41146105a1578063a035b1fe146105b6578063a0712d68146105cc578063a22cb465146105df57600080fd5b8063715018a6146104f85780637ec4a6591461050d5780638c32c5681461052d5780638da5cb5b1461054d57806391b7f5ed1461056b57600080fd5b80633ccfd60b116101bc5780635183022711610180578063518302271461045f5780635c975abb1461047e5780636352211e146104985780636f8b44b0146104b857806370a08231146104d857600080fd5b80633ccfd60b146103bd57806342842e0e146103d2578063438b6300146103f25780634f6ccce71461041f5780634fdd43cb1461043f57600080fd5b806316c38b3c1161020357806316c38b3c1461031157806318160ddd1461033157806318cae2691461035057806323b872dd1461037d5780632f745c591461039d57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806316ba10e0146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b3660046121c9565b610749565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a6107b6565b60405161026c919061223e565b3480156102a357600080fd5b506102b76102b2366004612251565b610848565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612286565b6108d8565b005b3480156102fd57600080fd5b506102ef61030c36600461233c565b6109ef565b34801561031d57600080fd5b506102ef61032c366004612395565b610a29565b34801561033d57600080fd5b506000545b60405190815260200161026c565b34801561035c57600080fd5b5061034261036b3660046123b0565b60106020526000908152604090205481565b34801561038957600080fd5b506102ef6103983660046123cb565b610a66565b3480156103a957600080fd5b506103426103b8366004612286565b610a71565b3480156103c957600080fd5b506102ef610bdd565b3480156103de57600080fd5b506102ef6103ed3660046123cb565b610c7b565b3480156103fe57600080fd5b5061041261040d3660046123b0565b610c96565b60405161026c9190612407565b34801561042b57600080fd5b5061034261043a366004612251565b610d75565b34801561044b57600080fd5b506102ef61045a36600461233c565b610dd7565b34801561046b57600080fd5b50600f5461026090610100900460ff1681565b34801561048a57600080fd5b50600f546102609060ff1681565b3480156104a457600080fd5b506102b76104b3366004612251565b610e0d565b3480156104c457600080fd5b506102ef6104d3366004612251565b610e1f565b3480156104e457600080fd5b506103426104f33660046123b0565b610e4e565b34801561050457600080fd5b506102ef610edf565b34801561051957600080fd5b506102ef61052836600461233c565b610f15565b34801561053957600080fd5b506102ef610548366004612286565b610f4b565b34801561055957600080fd5b506007546001600160a01b03166102b7565b34801561057757600080fd5b506102ef610586366004612251565b61106c565b34801561059757600080fd5b50610342600d5481565b3480156105ad57600080fd5b5061028a61109b565b3480156105c257600080fd5b50610342600b5481565b6102ef6105da366004612251565b6110aa565b3480156105eb57600080fd5b506102ef6105fa36600461244b565b61127c565b34801561060b57600080fd5b5061028a611340565b34801561062057600080fd5b506102ef61062f366004612251565b6113ce565b34801561064057600080fd5b506102ef61064f36600461247e565b6113fd565b34801561066057600080fd5b50610342600e5481565b34801561067657600080fd5b5061028a610685366004612251565b611430565b34801561069657600080fd5b506102ef6106a5366004612251565b6115a6565b3480156106b657600080fd5b50610342600c5481565b3480156106cc57600080fd5b506102ef6106db366004612395565b6115d5565b3480156106ec57600080fd5b506102606106fb3660046124fa565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561073557600080fd5b506102ef6107443660046123b0565b611619565b60006001600160e01b031982166380ac58cd60e01b148061077a57506001600160e01b03198216635b5e139f60e01b145b8061079557506001600160e01b0319821663780e9d6360e01b145b806107b057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107c590612524565b80601f01602080910402602001604051908101604052809291908181526020018280546107f190612524565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b6000610855826000541190565b6108bc5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108e382610e0d565b9050806001600160a01b0316836001600160a01b0316036109515760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108b3565b336001600160a01b038216148061096d575061096d81336106fb565b6109df5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108b3565b6109ea8383836116b1565b505050565b6007546001600160a01b03163314610a195760405162461bcd60e51b81526004016108b39061255e565b6009610a2582826125d9565b5050565b6007546001600160a01b03163314610a535760405162461bcd60e51b81526004016108b39061255e565b600f805460ff1916911515919091179055565b6109ea83838361170d565b6000610a7c83610e4e565b8210610ad55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108b3565b600080549080805b83811015610b7d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b3057805192505b876001600160a01b0316836001600160a01b031603610b6a57868403610b5c575093506107b092505050565b83610b66816126af565b9450505b5080610b75816126af565b915050610add565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108b3565b6007546001600160a01b03163314610c075760405162461bcd60e51b81526004016108b39061255e565b6000610c1b6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c65576040519150601f19603f3d011682016040523d82523d6000602084013e610c6a565b606091505b5050905080610c7857600080fd5b50565b6109ea838383604051806020016040528060008152506113fd565b60606000610ca383610e4e565b905060008167ffffffffffffffff811115610cc057610cc06122b0565b604051908082528060200260200182016040528015610ce9578160200160208202803683370190505b5090506000805b8381108015610d015750600c548211155b15610d6b576000610d1183610e0d565b9050866001600160a01b0316816001600160a01b031603610d585782848381518110610d3f57610d3f6126c8565b602090810291909101015281610d54816126af565b9250505b82610d62816126af565b93505050610cf0565b5090949350505050565b600080548210610dd35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108b3565b5090565b6007546001600160a01b03163314610e015760405162461bcd60e51b81526004016108b39061255e565b600a610a2582826125d9565b6000610e1882611a54565b5192915050565b6007546001600160a01b03163314610e495760405162461bcd60e51b81526004016108b39061255e565b600c55565b60006001600160a01b038216610eba5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108b3565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610f095760405162461bcd60e51b81526004016108b39061255e565b610f136000611bfe565b565b6007546001600160a01b03163314610f3f5760405162461bcd60e51b81526004016108b39061255e565b6008610a2582826125d9565b3360009081526010602052604090205481908115801590610f6e5750600d548211155b610fb15760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108b3565b600e54610fbe83836126de565b1115610fdc5760405162461bcd60e51b81526004016108b3906126f6565b600c5482600054610fed91906126de565b11156110325760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108b3565b6007546001600160a01b0316331461105c5760405162461bcd60e51b81526004016108b39061255e565b6110668484611c50565b50505050565b6007546001600160a01b031633146110965760405162461bcd60e51b81526004016108b39061255e565b600b55565b6060600280546107c590612524565b33600090815260106020526040902054819081158015906110cd5750600d548211155b6111105760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108b3565b600e5461111d83836126de565b111561113b5760405162461bcd60e51b81526004016108b3906126f6565b600c548260005461114c91906126de565b11156111915760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108b3565b33600090815260106020526040902054600f5460ff16156111f45760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108b3565b83600b54611202919061272d565b3410156112475760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108b3565b600e5461125485836126de565b11156112725760405162461bcd60e51b81526004016108b3906126f6565b6110663385611c50565b336001600160a01b038316036112d45760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108b3565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a805461134d90612524565b80601f016020809104026020016040519081016040528092919081815260200182805461137990612524565b80156113c65780601f1061139b576101008083540402835291602001916113c6565b820191906000526020600020905b8154815290600101906020018083116113a957829003601f168201915b505050505081565b6007546001600160a01b031633146113f85760405162461bcd60e51b81526004016108b39061255e565b600d55565b61140884848461170d565b61141484848484611c6a565b6110665760405162461bcd60e51b81526004016108b39061274c565b606061143d826000541190565b6114a15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108b3565b600f54610100900460ff16151560000361154757600a80546114c290612524565b80601f01602080910402602001604051908101604052809291908181526020018280546114ee90612524565b801561153b5780601f106115105761010080835404028352916020019161153b565b820191906000526020600020905b81548152906001019060200180831161151e57829003601f168201915b50505050509050919050565b6000611551611d6c565b90506000815111611571576040518060200160405280600081525061159f565b8061157b84611d7b565b600960405160200161158f9392919061279f565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146115d05760405162461bcd60e51b81526004016108b39061255e565b600e55565b6007546001600160a01b031633146115ff5760405162461bcd60e51b81526004016108b39061255e565b600f80549115156101000261ff0019909216919091179055565b6007546001600160a01b031633146116435760405162461bcd60e51b81526004016108b39061255e565b6001600160a01b0381166116a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b3565b610c7881611bfe565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061171882611a54565b80519091506000906001600160a01b0316336001600160a01b0316148061174f57503361174484610848565b6001600160a01b0316145b806117615750815161176190336106fb565b9050806117cb5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108b3565b846001600160a01b031682600001516001600160a01b03161461183f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108b3565b6001600160a01b0384166118a35760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108b3565b6118b360008484600001516116b1565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906119789085906126de565b6000818152600360205260409020549091506001600160a01b0316611a0a576119a2816000541190565b15611a0a5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611a73826000541190565b611ad25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108b3565b60007f00000000000000000000000000000000000000000000000000000000000000038310611b3357611b257f00000000000000000000000000000000000000000000000000000000000000038461283f565b611b309060016126de565b90505b825b818110611b9d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b8a57949350505050565b5080611b9581612856565b915050611b35565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108b3565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a25828260405180602001604052806000815250611e7c565b60006001600160a01b0384163b15611d6057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cae90339089908890889060040161286d565b6020604051808303816000875af1925050508015611ce9575060408051601f3d908101601f19168201909252611ce6918101906128aa565b60015b611d46573d808015611d17576040519150601f19603f3d011682016040523d82523d6000602084013e611d1c565b606091505b508051600003611d3e5760405162461bcd60e51b81526004016108b39061274c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d64565b5060015b949350505050565b6060600880546107c590612524565b606081600003611da25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dcc5780611db6816126af565b9150611dc59050600a836128dd565b9150611da6565b60008167ffffffffffffffff811115611de757611de76122b0565b6040519080825280601f01601f191660200182016040528015611e11576020820181803683370190505b5090505b8415611d6457611e2660018361283f565b9150611e33600a866128f1565b611e3e9060306126de565b60f81b818381518110611e5357611e536126c8565b60200101906001600160f81b031916908160001a905350611e75600a866128dd565b9450611e15565b6000546001600160a01b038416611edf5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108b3565b611eea816000541190565b15611f375760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108b3565b7f0000000000000000000000000000000000000000000000000000000000000003831115611fb25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108b3565b6000831161200e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016108b3565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061206a908790612905565b6001600160801b031681526020018583602001516120889190612905565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121a85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461216c6000888488611c6a565b6121885760405162461bcd60e51b81526004016108b39061274c565b81612192816126af565b92505080806121a0906126af565b91505061211f565b506000819055611a4c565b6001600160e01b031981168114610c7857600080fd5b6000602082840312156121db57600080fd5b813561159f816121b3565b60005b838110156122015781810151838201526020016121e9565b838111156110665750506000910152565b6000815180845261222a8160208601602086016121e6565b601f01601f19169290920160200192915050565b60208152600061159f6020830184612212565b60006020828403121561226357600080fd5b5035919050565b80356001600160a01b038116811461228157600080fd5b919050565b6000806040838503121561229957600080fd5b6122a28361226a565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156122e1576122e16122b0565b604051601f8501601f19908116603f01168101908282118183101715612309576123096122b0565b8160405280935085815286868601111561232257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561234e57600080fd5b813567ffffffffffffffff81111561236557600080fd5b8201601f8101841361237657600080fd5b611d64848235602084016122c6565b8035801515811461228157600080fd5b6000602082840312156123a757600080fd5b61159f82612385565b6000602082840312156123c257600080fd5b61159f8261226a565b6000806000606084860312156123e057600080fd5b6123e98461226a565b92506123f76020850161226a565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561243f57835183529284019291840191600101612423565b50909695505050505050565b6000806040838503121561245e57600080fd5b6124678361226a565b915061247560208401612385565b90509250929050565b6000806000806080858703121561249457600080fd5b61249d8561226a565b93506124ab6020860161226a565b925060408501359150606085013567ffffffffffffffff8111156124ce57600080fd5b8501601f810187136124df57600080fd5b6124ee878235602084016122c6565b91505092959194509250565b6000806040838503121561250d57600080fd5b6125168361226a565b91506124756020840161226a565b600181811c9082168061253857607f821691505b60208210810361255857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f8211156109ea57600081815260208120601f850160051c810160208610156125ba5750805b601f850160051c820191505b81811015611a4c578281556001016125c6565b815167ffffffffffffffff8111156125f3576125f36122b0565b612607816126018454612524565b84612593565b602080601f83116001811461263c57600084156126245750858301515b600019600386901b1c1916600185901b178555611a4c565b600085815260208120601f198616915b8281101561266b5788860151825594840194600190910190840161264c565b50858210156126895787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000600182016126c1576126c1612699565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600082198211156126f1576126f1612699565b500190565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b600081600019048311821515161561274757612747612699565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845160206127b28285838a016121e6565b8551918401916127c58184848a016121e6565b85549201916000906127d681612524565b600182811680156127ee57600181146128035761282f565b60ff198416875282151583028701945061282f565b896000528560002060005b848110156128275781548982015290830190870161280e565b505082870194505b50929a9950505050505050505050565b60008282101561285157612851612699565b500390565b60008161286557612865612699565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128a090830184612212565b9695505050505050565b6000602082840312156128bc57600080fd5b815161159f816121b3565b634e487b7160e01b600052601260045260246000fd5b6000826128ec576128ec6128c7565b500490565b600082612900576129006128c7565b500690565b60006001600160801b0380831681851680830382111561292757612927612699565b0194935050505056fea264697066735822122058242fb87c22d921cacd931c0be1208fd28839bd5493023f1602013f7ccdf92e64736f6c634300080f0033
Deployed Bytecode Sourcemap
44935:4172:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29789:372;;;;;;;;;;-1:-1:-1;29789:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;29789:372:0;;;;;;;;31594:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33155:214::-;;;;;;;;;;-1:-1:-1;33155:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;33155:214:0;1528:203:1;32676:413:0;;;;;;;;;;-1:-1:-1;32676:413:0;;;;;:::i;:::-;;:::i;:::-;;48146:100;;;;;;;;;;-1:-1:-1;48146:100:0;;;;;:::i;:::-;;:::i;48252:77::-;;;;;;;;;;-1:-1:-1;48252:77:0;;;;;:::i;:::-;;:::i;28230:100::-;;;;;;;;;;-1:-1:-1;28283:7:0;28310:12;28230:100;;;3894:25:1;;;3882:2;3867:18;28230:100:0;3748:177:1;45357:55:0;;;;;;;;;;-1:-1:-1;45357:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;34031:162;;;;;;;;;;-1:-1:-1;34031:162:0;;;;;:::i;:::-;;:::i;28894:823::-;;;;;;;;;;-1:-1:-1;28894:823:0;;;;;:::i;:::-;;:::i;48957:143::-;;;;;;;;;;;;;:::i;34264:177::-;;;;;;;;;;-1:-1:-1;34264:177:0;;;;;:::i;:::-;;:::i;46583:635::-;;;;;;;;;;-1:-1:-1;46583:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28407:187::-;;;;;;;;;;-1:-1:-1;28407:187:0;;;;;:::i;:::-;;:::i;47902:132::-;;;;;;;;;;-1:-1:-1;47902:132:0;;;;;:::i;:::-;;:::i;45324:28::-;;;;;;;;;;-1:-1:-1;45324:28:0;;;;;;;;;;;45293:26;;;;;;;;;;-1:-1:-1;45293:26:0;;;;;;;;31403:124;;;;;;;;;;-1:-1:-1;31403:124:0;;;;;:::i;:::-;;:::i;48855:96::-;;;;;;;;;;-1:-1:-1;48855:96:0;;;;;:::i;:::-;;:::i;30225:221::-;;;;;;;;;;-1:-1:-1;30225:221:0;;;;;:::i;:::-;;:::i;15475:103::-;;;;;;;;;;;;;:::i;48040:100::-;;;;;;;;;;-1:-1:-1;48040:100:0;;;;;:::i;:::-;;:::i;46438:136::-;;;;;;;;;;-1:-1:-1;46438:136:0;;;;;:::i;:::-;;:::i;14824:87::-;;;;;;;;;;-1:-1:-1;14897:6:0;;-1:-1:-1;;;;;14897:6:0;14824:87;;47815:80;;;;;;;;;;-1:-1:-1;47815:80:0;;;;;:::i;:::-;;:::i;45203:37::-;;;;;;;;;;;;;;;;31763:104;;;;;;;;;;;;;:::i;45130:30::-;;;;;;;;;;;;;;;;45991:429;;;;;;:::i;:::-;;:::i;33441:288::-;;;;;;;;;;-1:-1:-1;33441:288:0;;;;;:::i;:::-;;:::i;45090:31::-;;;;;;;;;;;;;:::i;48575:132::-;;;;;;;;;;-1:-1:-1;48575:132:0;;;;;:::i;:::-;;:::i;34512:355::-;;;;;;;;;;-1:-1:-1;34512:355:0;;;;;:::i;:::-;;:::i;45246:37::-;;;;;;;;;;;;;;;;47224:494;;;;;;;;;;-1:-1:-1;47224:494:0;;;;;:::i;:::-;;:::i;48715:132::-;;;;;;;;;;-1:-1:-1;48715:132:0;;;;;:::i;:::-;;:::i;45166:31::-;;;;;;;;;;;;;;;;47724:85;;;;;;;;;;-1:-1:-1;47724:85:0;;;;;:::i;:::-;;:::i;33800:164::-;;;;;;;;;;-1:-1:-1;33800:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33921:25:0;;;33897:4;33921:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33800:164;15733:201;;;;;;;;;;-1:-1:-1;15733:201:0;;;;;:::i;:::-;;:::i;29789:372::-;29891:4;-1:-1:-1;;;;;;29928:40:0;;-1:-1:-1;;;29928:40:0;;:105;;-1:-1:-1;;;;;;;29985:48:0;;-1:-1:-1;;;29985:48:0;29928:105;:172;;;-1:-1:-1;;;;;;;30050:50:0;;-1:-1:-1;;;30050:50:0;29928:172;:225;;;-1:-1:-1;;;;;;;;;;7920:40:0;;;30117:36;29908:245;29789:372;-1:-1:-1;;29789:372:0:o;31594:100::-;31648:13;31681:5;31674:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31594:100;:::o;33155:214::-;33223:7;33251:16;33259:7;35179:4;35213:12;-1:-1:-1;35203:22:0;35122:111;33251:16;33243:74;;;;-1:-1:-1;;;33243:74:0;;6874:2:1;33243:74:0;;;6856:21:1;6913:2;6893:18;;;6886:30;6952:34;6932:18;;;6925:62;-1:-1:-1;;;7003:18:1;;;6996:43;7056:19;;33243:74:0;;;;;;;;;-1:-1:-1;33337:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33337:24:0;;33155:214::o;32676:413::-;32749:13;32765:24;32781:7;32765:15;:24::i;:::-;32749:40;;32814:5;-1:-1:-1;;;;;32808:11:0;:2;-1:-1:-1;;;;;32808:11:0;;32800:58;;;;-1:-1:-1;;;32800:58:0;;7288:2:1;32800:58:0;;;7270:21:1;7327:2;7307:18;;;7300:30;7366:34;7346:18;;;7339:62;-1:-1:-1;;;7417:18:1;;;7410:32;7459:19;;32800:58:0;7086:398:1;32800:58:0;13628:10;-1:-1:-1;;;;;32893:21:0;;;;:62;;-1:-1:-1;32918:37:0;32935:5;13628:10;33800:164;:::i;32918:37::-;32871:169;;;;-1:-1:-1;;;32871:169:0;;7691:2:1;32871:169:0;;;7673:21:1;7730:2;7710:18;;;7703:30;7769:34;7749:18;;;7742:62;7840:27;7820:18;;;7813:55;7885:19;;32871:169:0;7489:421:1;32871:169:0;33053:28;33062:2;33066:7;33075:5;33053:8;:28::i;:::-;32738:351;32676:413;;:::o;48146:100::-;14897:6;;-1:-1:-1;;;;;14897:6:0;13628:10;15044:23;15036:68;;;;-1:-1:-1;;;15036:68:0;;;;;;;:::i;:::-;48218:9:::1;:22;48230:10:::0;48218:9;:22:::1;:::i;:::-;;48146:100:::0;:::o;48252:77::-;14897:6;;-1:-1:-1;;;;;14897:6:0;13628:10;15044:23;15036:68;;;;-1:-1:-1;;;15036:68:0;;;;;;;:::i;:::-;48308:6:::1;:15:::0;;-1:-1:-1;;48308:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48252:77::o;34031:162::-;34157:28;34167:4;34173:2;34177:7;34157:9;:28::i;28894:823::-;28983:7;29019:16;29029:5;29019:9;:16::i;:::-;29011:5;:24;29003:71;;;;-1:-1:-1;;;29003:71:0;;10682:2:1;29003:71:0;;;10664:21:1;10721:2;10701:18;;;10694:30;10760:34;10740:18;;;10733:62;-1:-1:-1;;;10811:18:1;;;10804:32;10853:19;;29003:71:0;10480:398:1;29003:71:0;29085:22;28310:12;;;29085:22;;29217:426;29241:14;29237:1;:18;29217:426;;;29277:31;29311:14;;;:11;:14;;;;;;;;;29277:48;;;;;;;;;-1:-1:-1;;;;;29277:48:0;;;;;-1:-1:-1;;;29277:48:0;;;;;;;;;;;;29344:28;29340:103;;29413:14;;;-1:-1:-1;29340:103:0;29482:5;-1:-1:-1;;;;;29461:26:0;:17;-1:-1:-1;;;;;29461:26:0;;29457:175;;29527:5;29512:11;:20;29508:77;;-1:-1:-1;29564:1:0;-1:-1:-1;29557:8:0;;-1:-1:-1;;;29557:8:0;29508:77;29603:13;;;;:::i;:::-;;;;29457:175;-1:-1:-1;29257:3:0;;;;:::i;:::-;;;;29217:426;;;-1:-1:-1;29653:56:0;;-1:-1:-1;;;29653:56:0;;11357:2:1;29653:56:0;;;11339:21:1;11396:2;11376:18;;;11369:30;11435:34;11415:18;;;11408:62;-1:-1:-1;;;11486:18:1;;;11479:44;11540:19;;29653:56:0;11155:410:1;48957:143:0;14897:6;;-1:-1:-1;;;;;14897:6:0;13628:10;15044:23;15036:68;;;;-1:-1:-1;;;15036:68:0;;;;;;;:::i;:::-;49002:7:::1;49023;14897:6:::0;;-1:-1:-1;;;;;14897:6:0;;14824:87;49023:7:::1;-1:-1:-1::0;;;;;49015:21:0::1;49044;49015:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49001:69;;;49085:2;49077:11;;;::::0;::::1;;48994:106;48957:143::o:0;34264:177::-;34394:39;34411:4;34417:2;34421:7;34394:39;;;;;;;;;;;;:16;:39::i;46583:635::-;46658:16;46686:23;46712:17;46722:6;46712:9;:17::i;:::-;46686:43;;46736:30;46783:15;46769:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46769:30:0;;46736:63;;46806:22;46839:23;46875:309;46900:15;46882;:33;:64;;;;;46937:9;;46919:14;:27;;46882:64;46875:309;;;46957:25;46985:23;46993:14;46985:7;:23::i;:::-;46957:51;;47044:6;-1:-1:-1;;;;;47023:27:0;:17;-1:-1:-1;;;;;47023:27:0;;47019:131;;47096:14;47063:13;47077:15;47063:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;47123:17;;;;:::i;:::-;;;;47019:131;47160:16;;;;:::i;:::-;;;;46948:236;46875:309;;;-1:-1:-1;47199:13:0;;46583:635;-1:-1:-1;;;;46583:635:0:o;28407:187::-;28474:7;28310:12;;28502:5;:21;28494:69;;;;-1:-1:-1;;;28494:69:0;;12114:2:1;28494:69:0;;;12096:21:1;12153:2;12133:18;;;12126:30;12192:34;12172:18;;;12165:62;-1:-1:-1;;;12243:18:1;;;12236:33;12286:19;;28494:69:0;11912:399:1;28494:69:0;-1:-1:-1;28581:5:0;28407:187::o;47902:132::-;14897:6;;-1:-1:-1;;;;;14897:6:0;13628:10;15044:23;15036:68;;;;-1:-1:-1;;;15036:68:0;;;;;;;:::i;:::-;47990:17:::1;:38;48010:18:::0;47990:17;:38:::1;:::i;31403:124::-:0;31467:7;31494:20;31506:7;31494:11;:20::i;:::-;:25;;31403:124;-1:-1:-1;;31403:124:0:o;48855:96::-;14897:6;;-1:-1:-1;;;;;14897:6:0;13628:10;15044:23;15036:68;;;;-1:-1:-1;;;15036:68:0;;;;;;;:::i;:::-;48921:9:::1;:22:::0;48855:96::o;30225:221::-;30289:7;-1:-1:-1;;;;;30317:19:0;;30309:75;;;;-1:-1:-1;;;30309:75:0;;12518:2:1;30309:75:0;;;12500:21:1;12557:2;12537:18;;;12530:30;12596:34;12576:18;;;12569:62;-1:-1:-1;;;12647:18:1;;;12640:41;12698:19;;30309:75:0;12316:407:1;30309:75:0;-1:-1:-1;;;;;;30410:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30410:27:0;;30225:221::o;15475:103::-;14897:6;;-1:-1:-1;;;;;14897:6:0;13628:10;15044:23;15036:68;;;;-1:-1:-1;;;15036:68:0;;;;;;;:::i;:::-;15540:30:::1;15567:1;15540:18;:30::i;:::-;15475:103::o:0;48040:100::-;14897:6;;-1:-1:-1;;;;;14897:6:0;13628:10;15044:23;15036:68;;;;-1:-1:-1;;;15036:68:0;;;;;;;:::i;:::-;48112:9:::1;:22;48124:10:::0;48112:9;:22:::1;:::i;46438:136::-:0;45689:10;45641:24;45668:32;;;:20;:32;;;;;;46511:11;;45715:15;;;;;:52;;;45749:18;;45734:11;:33;;45715:52;45707:85;;;;-1:-1:-1;;;45707:85:0;;12930:2:1;45707:85:0;;;12912:21:1;12969:2;12949:18;;;12942:30;-1:-1:-1;;;12988:18:1;;;12981:50;13048:18;;45707:85:0;12728:344:1;45707:85:0;45841:18;;45807:30;45826:11;45807:16;:30;:::i;:::-;:52;;45799:93;;;;-1:-1:-1;;;45799:93:0;;;;;;;:::i;:::-;45937:9;;45922:11;45907:12;;:26;;;;:::i;:::-;:39;;45899:72;;;;-1:-1:-1;;;45899:72:0;;13769:2:1;45899:72:0;;;13751:21:1;13808:2;13788:18;;;13781:30;-1:-1:-1;;;13827:18:1;;;13820:50;13887:18;;45899:72:0;13567:344:1;45899:72:0;14897:6;;-1:-1:-1;;;;;14897:6:0;13628:10;15044:23:::1;15036:68;;;;-1:-1:-1::0;;;15036:68:0::1;;;;;;;:::i;:::-;46541:27:::2;46551:3;46556:11;46541:9;:27::i;:::-;45632:353:::0;46438:136;;;:::o;47815:80::-;14897:6;;-1:-1:-1;;;;;14897:6:0;13628:10;15044:23;15036:68;;;;-1:-1:-1;;;15036:68:0;;;;;;;:::i;:::-;47873:5:::1;:14:::0;47815:80::o;31763:104::-;31819:13;31852:7;31845:14;;;;;:::i;45991:429::-;45689:10;45641:24;45668:32;;;:20;:32;;;;;;46056:11;;45715:15;;;;;:52;;;45749:18;;45734:11;:33;;45715:52;45707:85;;;;-1:-1:-1;;;45707:85:0;;12930:2:1;45707:85:0;;;12912:21:1;12969:2;12949:18;;;12942:30;-1:-1:-1;;;12988:18:1;;;12981:50;13048:18;;45707:85:0;12728:344:1;45707:85:0;45841:18;;45807:30;45826:11;45807:16;:30;:::i;:::-;:52;;45799:93;;;;-1:-1:-1;;;45799:93:0;;;;;;;:::i;:::-;45937:9;;45922:11;45907:12;;:26;;;;:::i;:::-;:39;;45899:72;;;;-1:-1:-1;;;45899:72:0;;13769:2:1;45899:72:0;;;13751:21:1;13808:2;13788:18;;;13781:30;-1:-1:-1;;;13827:18:1;;;13820:50;13887:18;;45899:72:0;13567:344:1;45899:72:0;46128:10:::1;46080:24;46107:32:::0;;;:20:::1;:32;::::0;;;;;46155:6:::1;::::0;::::1;;46154:7;46146:43;;;::::0;-1:-1:-1;;;46146:43:0;;14118:2:1;46146:43:0::1;::::0;::::1;14100:21:1::0;14157:2;14137:18;;;14130:30;14196:25;14176:18;;;14169:53;14239:18;;46146:43:0::1;13916:347:1::0;46146:43:0::1;46225:11;46217:5;;:19;;;;:::i;:::-;46204:9;:32;;46196:64;;;::::0;-1:-1:-1;;;46196:64:0;;14643:2:1;46196:64:0::1;::::0;::::1;14625:21:1::0;14682:2;14662:18;;;14655:30;-1:-1:-1;;;14701:18:1;;;14694:49;14760:18;;46196:64:0::1;14441:343:1::0;46196:64:0::1;46310:18;::::0;46276:30:::1;46295:11:::0;46276:16;:30:::1;:::i;:::-;:52;;46268:93;;;;-1:-1:-1::0;;;46268:93:0::1;;;;;;;:::i;:::-;46380:34;46390:10;46402:11;46380:9;:34::i;33441:288::-:0;13628:10;-1:-1:-1;;;;;33536:24:0;;;33528:63;;;;-1:-1:-1;;;33528:63:0;;14991:2:1;33528:63:0;;;14973:21:1;15030:2;15010:18;;;15003:30;15069:28;15049:18;;;15042:56;15115:18;;33528:63:0;14789:350:1;33528:63:0;13628:10;33604:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33604:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33604:53:0;;;;;;;;;;33673:48;;540:41:1;;;33604:42:0;;13628:10;33673:48;;513:18:1;33673:48:0;;;;;;;33441:288;;:::o;45090:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48575:132::-;14897:6;;-1:-1:-1;;;;;14897:6:0;13628:10;15044:23;15036:68;;;;-1:-1:-1;;;15036:68:0;;;;;;;:::i;:::-;48659:18:::1;:40:::0;48575:132::o;34512:355::-;34671:28;34681:4;34687:2;34691:7;34671:9;:28::i;:::-;34732:48;34755:4;34761:2;34765:7;34774:5;34732:22;:48::i;:::-;34710:149;;;;-1:-1:-1;;;34710:149:0;;;;;;;:::i;47224:494::-;47323:13;47364:17;47372:8;35179:4;35213:12;-1:-1:-1;35203:22:0;35122:111;47364:17;47348:98;;;;-1:-1:-1;;;47348:98:0;;15766:2:1;47348:98:0;;;15748:21:1;15805:2;15785:18;;;15778:30;15844:34;15824:18;;;15817:62;-1:-1:-1;;;15895:18:1;;;15888:45;15950:19;;47348:98:0;15564:411:1;47348:98:0;47459:8;;;;;;;:17;;47471:5;47459:17;47455:64;;47494:17;47487:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47224:494;;;:::o;47455:64::-;47527:28;47558:10;:8;:10::i;:::-;47527:41;;47613:1;47588:14;47582:28;:32;:130;;;;;;;;;;;;;;;;;47650:14;47666:19;:8;:17;:19::i;:::-;47687:9;47633:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47582:130;47575:137;47224:494;-1:-1:-1;;;47224:494:0:o;48715:132::-;14897:6;;-1:-1:-1;;;;;14897:6:0;13628:10;15044:23;15036:68;;;;-1:-1:-1;;;15036:68:0;;;;;;;:::i;:::-;48799:18:::1;:40:::0;48715:132::o;47724:85::-;14897:6;;-1:-1:-1;;;;;14897:6:0;13628:10;15044:23;15036:68;;;;-1:-1:-1;;;15036:68:0;;;;;;;:::i;:::-;47782:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;47782:17:0;;::::1;::::0;;;::::1;::::0;;47724:85::o;15733:201::-;14897:6;;-1:-1:-1;;;;;14897:6:0;13628:10;15044:23;15036:68;;;;-1:-1:-1;;;15036:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15822:22:0;::::1;15814:73;;;::::0;-1:-1:-1;;;15814:73:0;;17417:2:1;15814:73:0::1;::::0;::::1;17399:21:1::0;17456:2;17436:18;;;17429:30;17495:34;17475:18;;;17468:62;-1:-1:-1;;;17546:18:1;;;17539:36;17592:19;;15814:73:0::1;17215:402:1::0;15814:73:0::1;15898:28;15917:8;15898:18;:28::i;39248:196::-:0;39363:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39363:29:0;-1:-1:-1;;;;;39363:29:0;;;;;;;;;39408:28;;39363:24;;39408:28;;;;;;;39248:196;;;:::o;37347:1783::-;37462:35;37500:20;37512:7;37500:11;:20::i;:::-;37575:18;;37462:58;;-1:-1:-1;37533:22:0;;-1:-1:-1;;;;;37559:34:0;13628:10;-1:-1:-1;;;;;37559:34:0;;:87;;;-1:-1:-1;13628:10:0;37610:20;37622:7;37610:11;:20::i;:::-;-1:-1:-1;;;;;37610:36:0;;37559:87;:154;;;-1:-1:-1;37680:18:0;;37663:50;;13628:10;33800:164;:::i;37663:50::-;37533:181;;37735:17;37727:80;;;;-1:-1:-1;;;37727:80:0;;17824:2:1;37727:80:0;;;17806:21:1;17863:2;17843:18;;;17836:30;17902:34;17882:18;;;17875:62;-1:-1:-1;;;17953:18:1;;;17946:48;18011:19;;37727:80:0;17622:414:1;37727:80:0;37850:4;-1:-1:-1;;;;;37828:26:0;:13;:18;;;-1:-1:-1;;;;;37828:26:0;;37820:77;;;;-1:-1:-1;;;37820:77:0;;18243:2:1;37820:77:0;;;18225:21:1;18282:2;18262:18;;;18255:30;18321:34;18301:18;;;18294:62;-1:-1:-1;;;18372:18:1;;;18365:36;18418:19;;37820:77:0;18041:402:1;37820:77:0;-1:-1:-1;;;;;37916:16:0;;37908:66;;;;-1:-1:-1;;;37908:66:0;;18650:2:1;37908:66:0;;;18632:21:1;18689:2;18669:18;;;18662:30;18728:34;18708:18;;;18701:62;-1:-1:-1;;;18779:18:1;;;18772:35;18824:19;;37908:66:0;18448:401:1;37908:66:0;38095:49;38112:1;38116:7;38125:13;:18;;;38095:8;:49::i;:::-;-1:-1:-1;;;;;38349:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38349:31:0;;;-1:-1:-1;;;;;38349:31:0;;;-1:-1:-1;;38349:31:0;;;;;;;38395:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38395:29:0;;;;;;;;;;;;;38471:43;;;;;;;;;;38497:15;38471:43;;;;;;;;;;38448:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;38448:66:0;;;;;;;-1:-1:-1;;;38448:66:0;;;;;;;;;;;;38349:18;38776:11;;38448:20;;38776:11;:::i;:::-;38843:1;38802:24;;;:11;:24;;;;;:29;38754:33;;-1:-1:-1;;;;;;38802:29:0;38798:227;;38866:20;38874:11;35179:4;35213:12;-1:-1:-1;35203:22:0;35122:111;38866:20;38862:152;;;38934:64;;;;;;;;38949:18;;-1:-1:-1;;;;;38934:64:0;;;;;;38969:28;;;;38934:64;;;;;;;;;;-1:-1:-1;38907:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;38907:91:0;-1:-1:-1;;;;;;38907:91:0;;;;;;;;;;;;38862:152;39061:7;39057:2;-1:-1:-1;;;;;39042:27:0;39051:4;-1:-1:-1;;;;;39042:27:0;;;;;;;;;;;39080:42;37451:1679;;;37347:1783;;;:::o;30691:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;30794:16:0;30802:7;35179:4;35213:12;-1:-1:-1;35203:22:0;35122:111;30794:16;30786:71;;;;-1:-1:-1;;;30786:71:0;;19056:2:1;30786:71:0;;;19038:21:1;19095:2;19075:18;;;19068:30;19134:34;19114:18;;;19107:62;-1:-1:-1;;;19185:18:1;;;19178:40;19235:19;;30786:71:0;18854:406:1;30786:71:0;30870:26;30922:12;30911:7;:23;30907:103;;30972:22;30982:12;30972:7;:22;:::i;:::-;:26;;30997:1;30972:26;:::i;:::-;30951:47;;30907:103;31042:7;31022:242;31059:18;31051:4;:26;31022:242;;31102:31;31136:17;;;:11;:17;;;;;;;;;31102:51;;;;;;;;;-1:-1:-1;;;;;31102:51:0;;;;;-1:-1:-1;;;31102:51:0;;;;;;;;;;;;31172:28;31168:85;;31228:9;30691:650;-1:-1:-1;;;;30691:650:0:o;31168:85::-;-1:-1:-1;31079:6:0;;;;:::i;:::-;;;;31022:242;;;-1:-1:-1;31276:57:0;;-1:-1:-1;;;31276:57:0;;19738:2:1;31276:57:0;;;19720:21:1;19777:2;19757:18;;;19750:30;19816:34;19796:18;;;19789:62;-1:-1:-1;;;19867:18:1;;;19860:45;19922:19;;31276:57:0;19536:411:1;16094:191:0;16187:6;;;-1:-1:-1;;;;;16204:17:0;;;-1:-1:-1;;;;;;16204:17:0;;;;;;;16237:40;;16187:6;;;16204:17;16187:6;;16237:40;;16168:16;;16237:40;16157:128;16094:191;:::o;35241:104::-;35310:27;35320:2;35324:8;35310:27;;;;;;;;;;;;:9;:27::i;40009:804::-;40164:4;-1:-1:-1;;;;;40185:13:0;;17435:20;17483:8;40181:625;;40221:72;;-1:-1:-1;;;40221:72:0;;-1:-1:-1;;;;;40221:36:0;;;;;:72;;13628:10;;40272:4;;40278:7;;40287:5;;40221:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40221:72:0;;;;;;;;-1:-1:-1;;40221:72:0;;;;;;;;;;;;:::i;:::-;;;40217:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40467:6;:13;40484:1;40467:18;40463:273;;40510:61;;-1:-1:-1;;;40510:61:0;;;;;;;:::i;40463:273::-;40686:6;40680:13;40671:6;40667:2;40663:15;40656:38;40217:534;-1:-1:-1;;;;;;40344:55:0;-1:-1:-1;;;40344:55:0;;-1:-1:-1;40337:62:0;;40181:625;-1:-1:-1;40790:4:0;40181:625;40009:804;;;;;;:::o;48457:110::-;48517:13;48546:9;48539:16;;;;;:::i;5201:723::-;5257:13;5478:5;5487:1;5478:10;5474:53;;-1:-1:-1;;5505:10:0;;;;;;;;;;;;-1:-1:-1;;;5505:10:0;;;;;5201:723::o;5474:53::-;5552:5;5537:12;5593:78;5600:9;;5593:78;;5626:8;;;;:::i;:::-;;-1:-1:-1;5649:10:0;;-1:-1:-1;5657:2:0;5649:10;;:::i;:::-;;;5593:78;;;5681:19;5713:6;5703:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5703:17:0;;5681:39;;5731:154;5738:10;;5731:154;;5765:11;5775:1;5765:11;;:::i;:::-;;-1:-1:-1;5834:10:0;5842:2;5834:5;:10;:::i;:::-;5821:24;;:2;:24;:::i;:::-;5808:39;;5791:6;5798;5791:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5791:56:0;;;;;;;;-1:-1:-1;5862:11:0;5871:2;5862:11;;:::i;:::-;;;5731:154;;35622:1471;35745:20;35768:12;-1:-1:-1;;;;;35799:16:0;;35791:62;;;;-1:-1:-1;;;35791:62:0;;21276:2:1;35791:62:0;;;21258:21:1;21315:2;21295:18;;;21288:30;21354:34;21334:18;;;21327:62;-1:-1:-1;;;21405:18:1;;;21398:31;21446:19;;35791:62:0;21074:397:1;35791:62:0;35998:21;36006:12;35179:4;35213:12;-1:-1:-1;35203:22:0;35122:111;35998:21;35997:22;35989:64;;;;-1:-1:-1;;;35989:64:0;;21678:2:1;35989:64:0;;;21660:21:1;21717:2;21697:18;;;21690:30;21756:31;21736:18;;;21729:59;21805:18;;35989:64:0;21476:353:1;35989:64:0;36084:12;36072:8;:24;;36064:71;;;;-1:-1:-1;;;36064:71:0;;22036:2:1;36064:71:0;;;22018:21:1;22075:2;22055:18;;;22048:30;22114:34;22094:18;;;22087:62;-1:-1:-1;;;22165:18:1;;;22158:32;22207:19;;36064:71:0;21834:398:1;36064:71:0;36165:1;36154:8;:12;36146:60;;;;-1:-1:-1;;;36146:60:0;;22439:2:1;36146:60:0;;;22421:21:1;22478:2;22458:18;;;22451:30;22517:34;22497:18;;;22490:62;-1:-1:-1;;;22568:18:1;;;22561:33;22611:19;;36146:60:0;22237:399:1;36146:60:0;-1:-1:-1;;;;;36326:16:0;;36293:30;36326:16;;;:12;:16;;;;;;;;;36293:49;;;;;;;;;-1:-1:-1;;;;;36293:49:0;;;;;-1:-1:-1;;;36293:49:0;;;;;;;;;;;36372:135;;;;;;;;36398:19;;36293:49;;36372:135;;;36398:39;;36428:8;;36398:39;:::i;:::-;-1:-1:-1;;;;;36372:135:0;;;;;36487:8;36452:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36372:135:0;;;;;;-1:-1:-1;;;;;36353:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;36353:154:0;;;;;;;;;;;;36546:43;;;;;;;;;;;36572:15;36546:43;;;;;;;;36518:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36518:71:0;-1:-1:-1;;;;;;36518:71:0;;;;;;;;;;;;;;;;;;36530:12;;36650:325;36674:8;36670:1;:12;36650:325;;;36709:38;;36734:12;;-1:-1:-1;;;;;36709:38:0;;;36726:1;;36709:38;;36726:1;;36709:38;36788:59;36819:1;36823:2;36827:12;36841:5;36788:22;:59::i;:::-;36762:172;;;;-1:-1:-1;;;36762:172:0;;;;;;;:::i;:::-;36949:14;;;;:::i;:::-;;;;36684:3;;;;;:::i;:::-;;;;36650:325;;;-1:-1:-1;36987:12:0;:27;;;37025:60;46438:136;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:632;2370:5;2400:18;2441:2;2433:6;2430:14;2427:40;;;2447:18;;:::i;:::-;2522:2;2516:9;2490:2;2576:15;;-1:-1:-1;;2572:24:1;;;2598:2;2568:33;2564:42;2552:55;;;2622:18;;;2642:22;;;2619:46;2616:72;;;2668:18;;:::i;:::-;2708:10;2704:2;2697:22;2737:6;2728:15;;2767:6;2759;2752:22;2807:3;2798:6;2793:3;2789:16;2786:25;2783:45;;;2824:1;2821;2814:12;2783:45;2874:6;2869:3;2862:4;2854:6;2850:17;2837:44;2929:1;2922:4;2913:6;2905;2901:19;2897:30;2890:41;;;;2305:632;;;;;:::o;2942:451::-;3011:6;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3120:9;3107:23;3153:18;3145:6;3142:30;3139:50;;;3185:1;3182;3175:12;3139:50;3208:22;;3261:4;3253:13;;3249:27;-1:-1:-1;3239:55:1;;3290:1;3287;3280:12;3239:55;3313:74;3379:7;3374:2;3361:16;3356:2;3352;3348:11;3313:74;:::i;3398:160::-;3463:20;;3519:13;;3512:21;3502:32;;3492:60;;3548:1;3545;3538:12;3563:180;3619:6;3672:2;3660:9;3651:7;3647:23;3643:32;3640:52;;;3688:1;3685;3678:12;3640:52;3711:26;3727:9;3711:26;:::i;3930:186::-;3989:6;4042:2;4030:9;4021:7;4017:23;4013:32;4010:52;;;4058:1;4055;4048:12;4010:52;4081:29;4100:9;4081:29;:::i;4121:328::-;4198:6;4206;4214;4267:2;4255:9;4246:7;4242:23;4238:32;4235:52;;;4283:1;4280;4273:12;4235:52;4306:29;4325:9;4306:29;:::i;:::-;4296:39;;4354:38;4388:2;4377:9;4373:18;4354:38;:::i;:::-;4344:48;;4439:2;4428:9;4424:18;4411:32;4401:42;;4121:328;;;;;:::o;4454:632::-;4625:2;4677:21;;;4747:13;;4650:18;;;4769:22;;;4596:4;;4625:2;4848:15;;;;4822:2;4807:18;;;4596:4;4891:169;4905:6;4902:1;4899:13;4891:169;;;4966:13;;4954:26;;5035:15;;;;5000:12;;;;4927:1;4920:9;4891:169;;;-1:-1:-1;5077:3:1;;4454:632;-1:-1:-1;;;;;;4454:632:1:o;5091:254::-;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;:::-;5294:45;;5091:254;;;;;:::o;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;5777:18;5769:6;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:380::-;6366:1;6362:12;;;;6409;;;6430:61;;6484:4;6476:6;6472:17;6462:27;;6430:61;6537:2;6529:6;6526:14;6506:18;6503:38;6500:161;;6583:10;6578:3;6574:20;6571:1;6564:31;6618:4;6615:1;6608:15;6646:4;6643:1;6636:15;6500:161;;6287:380;;;:::o;7915:356::-;8117:2;8099:21;;;8136:18;;;8129:30;8195:34;8190:2;8175:18;;8168:62;8262:2;8247:18;;7915:356::o;8402:545::-;8504:2;8499:3;8496:11;8493:448;;;8540:1;8565:5;8561:2;8554:17;8610:4;8606:2;8596:19;8680:2;8668:10;8664:19;8661:1;8657:27;8651:4;8647:38;8716:4;8704:10;8701:20;8698:47;;;-1:-1:-1;8739:4:1;8698:47;8794:2;8789:3;8785:12;8782:1;8778:20;8772:4;8768:31;8758:41;;8849:82;8867:2;8860:5;8857:13;8849:82;;;8912:17;;;8893:1;8882:13;8849:82;;9123:1352;9249:3;9243:10;9276:18;9268:6;9265:30;9262:56;;;9298:18;;:::i;:::-;9327:97;9417:6;9377:38;9409:4;9403:11;9377:38;:::i;:::-;9371:4;9327:97;:::i;:::-;9479:4;;9543:2;9532:14;;9560:1;9555:663;;;;10262:1;10279:6;10276:89;;;-1:-1:-1;10331:19:1;;;10325:26;10276:89;-1:-1:-1;;9080:1:1;9076:11;;;9072:24;9068:29;9058:40;9104:1;9100:11;;;9055:57;10378:81;;9525:944;;9555:663;8349:1;8342:14;;;8386:4;8373:18;;-1:-1:-1;;9591:20:1;;;9709:236;9723:7;9720:1;9717:14;9709:236;;;9812:19;;;9806:26;9791:42;;9904:27;;;;9872:1;9860:14;;;;9739:19;;9709:236;;;9713:3;9973:6;9964:7;9961:19;9958:201;;;10034:19;;;10028:26;-1:-1:-1;;10117:1:1;10113:14;;;10129:3;10109:24;10105:37;10101:42;10086:58;10071:74;;9958:201;-1:-1:-1;;;;;10205:1:1;10189:14;;;10185:22;10172:36;;-1:-1:-1;9123:1352:1:o;10883:127::-;10944:10;10939:3;10935:20;10932:1;10925:31;10975:4;10972:1;10965:15;10999:4;10996:1;10989:15;11015:135;11054:3;11075:17;;;11072:43;;11095:18;;:::i;:::-;-1:-1:-1;11142:1:1;11131:13;;11015:135::o;11780:127::-;11841:10;11836:3;11832:20;11829:1;11822:31;11872:4;11869:1;11862:15;11896:4;11893:1;11886:15;13077:128;13117:3;13148:1;13144:6;13141:1;13138:13;13135:39;;;13154:18;;:::i;:::-;-1:-1:-1;13190:9:1;;13077:128::o;13210:352::-;13412:2;13394:21;;;13451:2;13431:18;;;13424:30;13490;13485:2;13470:18;;13463:58;13553:2;13538:18;;13210:352::o;14268:168::-;14308:7;14374:1;14370;14366:6;14362:14;14359:1;14356:21;14351:1;14344:9;14337:17;14333:45;14330:71;;;14381:18;;:::i;:::-;-1:-1:-1;14421:9:1;;14268:168::o;15144:415::-;15346:2;15328:21;;;15385:2;15365:18;;;15358:30;15424:34;15419:2;15404:18;;15397:62;-1:-1:-1;;;15490:2:1;15475:18;;15468:49;15549:3;15534:19;;15144:415::o;15980:1230::-;16204:3;16242:6;16236:13;16268:4;16281:51;16325:6;16320:3;16315:2;16307:6;16303:15;16281:51;:::i;:::-;16395:13;;16354:16;;;;16417:55;16395:13;16354:16;16439:15;;;16417:55;:::i;:::-;16561:13;;16494:20;;;16534:1;;16599:36;16561:13;16599:36;:::i;:::-;16654:1;16671:18;;;16698:141;;;;16853:1;16848:337;;;;16664:521;;16698:141;-1:-1:-1;;16733:24:1;;16719:39;;16810:16;;16803:24;16789:39;;16778:51;;;-1:-1:-1;16698:141:1;;16848:337;16879:6;16876:1;16869:17;16927:2;16924:1;16914:16;16952:1;16966:169;16980:8;16977:1;16974:15;16966:169;;;17062:14;;17047:13;;;17040:37;17105:16;;;;16997:10;;16966:169;;;16970:3;;17166:8;17159:5;17155:20;17148:27;;16664:521;-1:-1:-1;17201:3:1;;15980:1230;-1:-1:-1;;;;;;;;;;15980:1230:1:o;19265:125::-;19305:4;19333:1;19330;19327:8;19324:34;;;19338:18;;:::i;:::-;-1:-1:-1;19375:9:1;;19265:125::o;19395:136::-;19434:3;19462:5;19452:39;;19471:18;;:::i;:::-;-1:-1:-1;;;19507:18:1;;19395:136::o;19952:489::-;-1:-1:-1;;;;;20221:15:1;;;20203:34;;20273:15;;20268:2;20253:18;;20246:43;20320:2;20305:18;;20298:34;;;20368:3;20363:2;20348:18;;20341:31;;;20146:4;;20389:46;;20415:19;;20407:6;20389:46;:::i;:::-;20381:54;19952:489;-1:-1:-1;;;;;;19952:489:1:o;20446:249::-;20515:6;20568:2;20556:9;20547:7;20543:23;20539:32;20536:52;;;20584:1;20581;20574:12;20536:52;20616:9;20610:16;20635:30;20659:5;20635:30;:::i;20700:127::-;20761:10;20756:3;20752:20;20749:1;20742:31;20792:4;20789:1;20782:15;20816:4;20813:1;20806:15;20832:120;20872:1;20898;20888:35;;20903:18;;:::i;:::-;-1:-1:-1;20937:9:1;;20832:120::o;20957:112::-;20989:1;21015;21005:35;;21020:18;;:::i;:::-;-1:-1:-1;21054:9:1;;20957:112::o;22641:253::-;22681:3;-1:-1:-1;;;;;22770:2:1;22767:1;22763:10;22800:2;22797:1;22793:10;22831:3;22827:2;22823:12;22818:3;22815:21;22812:47;;;22839:18;;:::i;:::-;22875:13;;22641:253;-1:-1:-1;;;;22641:253:1:o
Swarm Source
ipfs://58242fb87c22d921cacd931c0be1208fd28839bd5493023f1602013f7ccdf92e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.