Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
5,366 3D=3B
Holders
1,135
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 3D=3BLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DickButtVerse
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-07 */ // SPDX-License-Identifier: MIT // D I C K B U T T V E R S E // // ***//////////* ,#(((#########( // **/////(((((((((////*, ((###################### // **//((##(######(((((((/////############%%%%%%%%%%%%%%%#### // **/# *// #(((#(((((((///#######%%%%%%%%%%%%%&&&& %%##. // //( */ #(((((((//###%#%%%%%%%%%* && ## // *****/ ***** ,**********//////////(((( **** ,*** // ****//// *//(( ///*****************///(((( ////( *****// // (((( ****************///(((, *///(( // .#(((((,,,,,****(#### // (#/****/((****/(/**//(#* // ((****/((#(((#(/*///## // **,#(((/,,,***((##(#( // ***,,,,,,*,,*/****/// // ***********((//*///( // ,,*/,*(&&***/@@@@@@@@@@@@@@@@@% ,. // /((((/ &&&***************///(&/*,,* // ,,*/((@@@@@@@@.. ,*********///,@@@/,,*/ // **/(&@@@@@@@@@@@@.....(@@@@@,,,*@@@ (**** // &&&&@@@@@@@@@@%..,..@,,,**@@@ /( // &&&&@@@@@@@@@@@@@...,,**@@# // %&&@@@@@@@@@@@@@@@@@@@@@@ // ,&&@@@@@@@@@@@@@@@@@@@@@ // &&@@@@@@@@@@@@@@@@@@@ // @@@@@&@&@@&@@@@@@@& // %@@@@/ &@@@@, // @@@@@ @@@@@ // &&((# . ., // . .., .. .,, // ......* ,.....* pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts 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/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 {} } pragma solidity ^0.8.0; contract DickButtVerse is ERC721A, Ownable { using Strings for uint256; string private uriPrefix = ""; string private uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public price = 0 ether; // Free Mint! uint256 public maxSupply = 5352; uint256 public maxMintAmountPerTx = 100; // 100 are for deployer mints (600), then will limited to 2 per transaction uint256 public nftPerAddressLimit = 2; // Max 2 per wallet allowed! bool public paused = true; bool public revealed = true; mapping(address => uint256) public addressMintedBalance; constructor() ERC721A("DickButtVerse", "3D=3B", maxMintAmountPerTx) { setHiddenMetadataUri(""); } 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 wen(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":[],"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"wen","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600080805560c0604081905260a08290526200001f916008919062000252565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004e9160099162000252565b506000600b556114e8600c556064600d556002600e55600f805461ffff19166101011790553480156200008057600080fd5b506040518060400160405280600d81526020016c4469636b42757474566572736560981b8152506040518060400160405280600581526020016419a21e99a160d91b815250600d54600081116200012e5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b82516200014390600190602086019062000252565b5081516200015990600290602085019062000252565b50608052506200016b9050336200018b565b6040805160208101909152600081526200018590620001dd565b62000335565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620002395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000125565b80516200024e90600a90602084019062000252565b5050565b8280546200026090620002f8565b90600052602060002090601f016020900481019282620002845760008555620002cf565b82601f106200029f57805160ff1916838001178555620002cf565b82800160010185558215620002cf579182015b82811115620002cf578251825591602001919060010190620002b2565b50620002dd929150620002e1565b5090565b5b80821115620002dd5760008155600101620002e2565b600181811c908216806200030d57607f821691505b602082108114156200032f57634e487b7160e01b600052602260045260246000fd5b50919050565b6080516129356200035f60003960008181611aeb01528181611b150152611f5701526129356000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063ab43bce7116100ab578063d0eb26b01161006f578063d0eb26b01461068a578063d5abeb01146106aa578063e0a80853146106c0578063e985e9c5146106e0578063f2fde38b1461072957600080fd5b8063ab43bce714610601578063b071401b14610614578063b88d4fde14610634578063ba7d2c7614610654578063c87b56dd1461066a57600080fd5b806394354fd0116100f257806394354fd01461058b57806395d89b41146105a1578063a035b1fe146105b6578063a22cb465146105cc578063a45ba8e7146105ec57600080fd5b8063715018a6146104f85780637ec4a6591461050d5780638c32c5681461052d5780638da5cb5b1461054d57806391b7f5ed1461056b57600080fd5b80633ccfd60b116101bc5780635183022711610180578063518302271461045f5780635c975abb1461047e5780636352211e146104985780636f8b44b0146104b857806370a08231146104d857600080fd5b80633ccfd60b146103bd57806342842e0e146103d2578063438b6300146103f25780634f6ccce71461041f5780634fdd43cb1461043f57600080fd5b806316c38b3c1161020357806316c38b3c1461031157806318160ddd1461033157806318cae2691461035057806323b872dd1461037d5780632f745c591461039d57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806316ba10e0146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612478565b610749565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a6107b6565b60405161026c9190612685565b3480156102a357600080fd5b506102b76102b23660046124fb565b610848565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612433565b6108d8565b005b3480156102fd57600080fd5b506102ef61030c3660046124b2565b6109f0565b34801561031d57600080fd5b506102ef61032c36600461245d565b610a31565b34801561033d57600080fd5b506000545b60405190815260200161026c565b34801561035c57600080fd5b5061034261036b366004612303565b60106020526000908152604090205481565b34801561038957600080fd5b506102ef610398366004612351565b610a6e565b3480156103a957600080fd5b506103426103b8366004612433565b610a79565b3480156103c957600080fd5b506102ef610be7565b3480156103de57600080fd5b506102ef6103ed366004612351565b610c85565b3480156103fe57600080fd5b5061041261040d366004612303565b610ca0565b60405161026c9190612641565b34801561042b57600080fd5b5061034261043a3660046124fb565b610d80565b34801561044b57600080fd5b506102ef61045a3660046124b2565b610de2565b34801561046b57600080fd5b50600f5461026090610100900460ff1681565b34801561048a57600080fd5b50600f546102609060ff1681565b3480156104a457600080fd5b506102b76104b33660046124fb565b610e1f565b3480156104c457600080fd5b506102ef6104d33660046124fb565b610e31565b3480156104e457600080fd5b506103426104f3366004612303565b610e60565b34801561050457600080fd5b506102ef610ef1565b34801561051957600080fd5b506102ef6105283660046124b2565b610f27565b34801561053957600080fd5b506102ef610548366004612433565b610f64565b34801561055957600080fd5b506007546001600160a01b03166102b7565b34801561057757600080fd5b506102ef6105863660046124fb565b611085565b34801561059757600080fd5b50610342600d5481565b3480156105ad57600080fd5b5061028a6110b4565b3480156105c257600080fd5b50610342600b5481565b3480156105d857600080fd5b506102ef6105e7366004612409565b6110c3565b3480156105f857600080fd5b5061028a611188565b6102ef61060f3660046124fb565b611216565b34801561062057600080fd5b506102ef61062f3660046124fb565b6113e8565b34801561064057600080fd5b506102ef61064f36600461238d565b611417565b34801561066057600080fd5b50610342600e5481565b34801561067657600080fd5b5061028a6106853660046124fb565b61144a565b34801561069657600080fd5b506102ef6106a53660046124fb565b6115bb565b3480156106b657600080fd5b50610342600c5481565b3480156106cc57600080fd5b506102ef6106db36600461245d565b6115ea565b3480156106ec57600080fd5b506102606106fb36600461231e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561073557600080fd5b506102ef610744366004612303565b61162e565b60006001600160e01b031982166380ac58cd60e01b148061077a57506001600160e01b03198216635b5e139f60e01b145b8061079557506001600160e01b0319821663780e9d6360e01b145b806107b057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107c590612827565b80601f01602080910402602001604051908101604052809291908181526020018280546107f190612827565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b6000610855826000541190565b6108bc5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108e382610e1f565b9050806001600160a01b0316836001600160a01b031614156109525760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108b3565b336001600160a01b038216148061096e575061096e81336106fb565b6109e05760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108b3565b6109eb8383836116c6565b505050565b6007546001600160a01b03163314610a1a5760405162461bcd60e51b81526004016108b3906126cf565b8051610a2d9060099060208401906121d1565b5050565b6007546001600160a01b03163314610a5b5760405162461bcd60e51b81526004016108b3906126cf565b600f805460ff1916911515919091179055565b6109eb838383611722565b6000610a8483610e60565b8210610add5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108b3565b600080549080805b83811015610b87576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b3857805192505b876001600160a01b0316836001600160a01b03161415610b745786841415610b66575093506107b092505050565b83610b7081612862565b9450505b5080610b7f81612862565b915050610ae5565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108b3565b6007546001600160a01b03163314610c115760405162461bcd60e51b81526004016108b3906126cf565b6000610c256007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c6f576040519150601f19603f3d011682016040523d82523d6000602084013e610c74565b606091505b5050905080610c8257600080fd5b50565b6109eb83838360405180602001604052806000815250611417565b60606000610cad83610e60565b905060008167ffffffffffffffff811115610cca57610cca6128d3565b604051908082528060200260200182016040528015610cf3578160200160208202803683370190505b5090506000805b8381108015610d0b5750600c548211155b15610d76576000610d1b83610e1f565b9050866001600160a01b0316816001600160a01b03161415610d635782848381518110610d4a57610d4a6128bd565b602090810291909101015281610d5f81612862565b9250505b82610d6d81612862565b93505050610cfa565b5090949350505050565b600080548210610dde5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108b3565b5090565b6007546001600160a01b03163314610e0c5760405162461bcd60e51b81526004016108b3906126cf565b8051610a2d90600a9060208401906121d1565b6000610e2a82611a69565b5192915050565b6007546001600160a01b03163314610e5b5760405162461bcd60e51b81526004016108b3906126cf565b600c55565b60006001600160a01b038216610ecc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108b3565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610f1b5760405162461bcd60e51b81526004016108b3906126cf565b610f256000611c13565b565b6007546001600160a01b03163314610f515760405162461bcd60e51b81526004016108b3906126cf565b8051610a2d9060089060208401906121d1565b3360009081526010602052604090205481908115801590610f875750600d548211155b610fca5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108b3565b600e54610fd78383612782565b1115610ff55760405162461bcd60e51b81526004016108b390612698565b600c54826000546110069190612782565b111561104b5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108b3565b6007546001600160a01b031633146110755760405162461bcd60e51b81526004016108b3906126cf565b61107f8484611c65565b50505050565b6007546001600160a01b031633146110af5760405162461bcd60e51b81526004016108b3906126cf565b600b55565b6060600280546107c590612827565b6001600160a01b03821633141561111c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108b3565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a805461119590612827565b80601f01602080910402602001604051908101604052809291908181526020018280546111c190612827565b801561120e5780601f106111e35761010080835404028352916020019161120e565b820191906000526020600020905b8154815290600101906020018083116111f157829003601f168201915b505050505081565b33600090815260106020526040902054819081158015906112395750600d548211155b61127c5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108b3565b600e546112898383612782565b11156112a75760405162461bcd60e51b81526004016108b390612698565b600c54826000546112b89190612782565b11156112fd5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108b3565b33600090815260106020526040902054600f5460ff16156113605760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108b3565b83600b5461136e91906127ae565b3410156113b35760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108b3565b600e546113c08583612782565b11156113de5760405162461bcd60e51b81526004016108b390612698565b61107f3385611c65565b6007546001600160a01b031633146114125760405162461bcd60e51b81526004016108b3906126cf565b600d55565b611422848484611722565b61142e84848484611c7f565b61107f5760405162461bcd60e51b81526004016108b390612704565b6060611457826000541190565b6114bb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108b3565b600f54610100900460ff1661155c57600a80546114d790612827565b80601f016020809104026020016040519081016040528092919081815260200182805461150390612827565b80156115505780601f1061152557610100808354040283529160200191611550565b820191906000526020600020905b81548152906001019060200180831161153357829003601f168201915b50505050509050919050565b6000611566611d8d565b9050600081511161158657604051806020016040528060008152506115b4565b8061159084611d9c565b60096040516020016115a493929190612540565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146115e55760405162461bcd60e51b81526004016108b3906126cf565b600e55565b6007546001600160a01b031633146116145760405162461bcd60e51b81526004016108b3906126cf565b600f80549115156101000261ff0019909216919091179055565b6007546001600160a01b031633146116585760405162461bcd60e51b81526004016108b3906126cf565b6001600160a01b0381166116bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b3565b610c8281611c13565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061172d82611a69565b80519091506000906001600160a01b0316336001600160a01b0316148061176457503361175984610848565b6001600160a01b0316145b806117765750815161177690336106fb565b9050806117e05760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108b3565b846001600160a01b031682600001516001600160a01b0316146118545760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108b3565b6001600160a01b0384166118b85760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108b3565b6118c860008484600001516116c6565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061198d908590612782565b6000818152600360205260409020549091506001600160a01b0316611a1f576119b7816000541190565b15611a1f5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611a88826000541190565b611ae75760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108b3565b60007f00000000000000000000000000000000000000000000000000000000000000008310611b4857611b3a7f0000000000000000000000000000000000000000000000000000000000000000846127cd565b611b45906001612782565b90505b825b818110611bb2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b9f57949350505050565b5080611baa81612810565b915050611b4a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108b3565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a2d828260405180602001604052806000815250611e9a565b60006001600160a01b0384163b15611d8157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cc3903390899088908890600401612604565b602060405180830381600087803b158015611cdd57600080fd5b505af1925050508015611d0d575060408051601f3d908101601f19168201909252611d0a91810190612495565b60015b611d67573d808015611d3b576040519150601f19603f3d011682016040523d82523d6000602084013e611d40565b606091505b508051611d5f5760405162461bcd60e51b81526004016108b390612704565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d85565b5060015b949350505050565b6060600880546107c590612827565b606081611dc05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dea5780611dd481612862565b9150611de39050600a8361279a565b9150611dc4565b60008167ffffffffffffffff811115611e0557611e056128d3565b6040519080825280601f01601f191660200182016040528015611e2f576020820181803683370190505b5090505b8415611d8557611e446001836127cd565b9150611e51600a8661287d565b611e5c906030612782565b60f81b818381518110611e7157611e716128bd565b60200101906001600160f81b031916908160001a905350611e93600a8661279a565b9450611e33565b6000546001600160a01b038416611efd5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108b3565b611f08816000541190565b15611f555760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108b3565b7f0000000000000000000000000000000000000000000000000000000000000000831115611fd05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108b3565b6000831161202c5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016108b3565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612088908790612757565b6001600160801b031681526020018583602001516120a69190612757565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121c65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461218a6000888488611c7f565b6121a65760405162461bcd60e51b81526004016108b390612704565b816121b081612862565b92505080806121be90612862565b91505061213d565b506000819055611a61565b8280546121dd90612827565b90600052602060002090601f0160209004810192826121ff5760008555612245565b82601f1061221857805160ff1916838001178555612245565b82800160010185558215612245579182015b8281111561224557825182559160200191906001019061222a565b50610dde9291505b80821115610dde576000815560010161224d565b600067ffffffffffffffff8084111561227c5761227c6128d3565b604051601f8501601f19908116603f011681019082821181831017156122a4576122a46128d3565b816040528093508581528686860111156122bd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146122ee57600080fd5b919050565b803580151581146122ee57600080fd5b60006020828403121561231557600080fd5b6115b4826122d7565b6000806040838503121561233157600080fd5b61233a836122d7565b9150612348602084016122d7565b90509250929050565b60008060006060848603121561236657600080fd5b61236f846122d7565b925061237d602085016122d7565b9150604084013590509250925092565b600080600080608085870312156123a357600080fd5b6123ac856122d7565b93506123ba602086016122d7565b925060408501359150606085013567ffffffffffffffff8111156123dd57600080fd5b8501601f810187136123ee57600080fd5b6123fd87823560208401612261565b91505092959194509250565b6000806040838503121561241c57600080fd5b612425836122d7565b9150612348602084016122f3565b6000806040838503121561244657600080fd5b61244f836122d7565b946020939093013593505050565b60006020828403121561246f57600080fd5b6115b4826122f3565b60006020828403121561248a57600080fd5b81356115b4816128e9565b6000602082840312156124a757600080fd5b81516115b4816128e9565b6000602082840312156124c457600080fd5b813567ffffffffffffffff8111156124db57600080fd5b8201601f810184136124ec57600080fd5b611d8584823560208401612261565b60006020828403121561250d57600080fd5b5035919050565b6000815180845261252c8160208601602086016127e4565b601f01601f19169290920160200192915050565b6000845160206125538285838a016127e4565b8551918401916125668184848a016127e4565b8554920191600090600181811c908083168061258357607f831692505b8583108114156125a157634e487b7160e01b85526022600452602485fd5b8080156125b557600181146125c6576125f3565b60ff198516885283880195506125f3565b60008b81526020902060005b858110156125eb5781548a8201529084019088016125d2565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061263790830184612514565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126795783518352928401929184019160010161265d565b50909695505050505050565b6020815260006115b46020830184612514565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561277957612779612891565b01949350505050565b6000821982111561279557612795612891565b500190565b6000826127a9576127a96128a7565b500490565b60008160001904831182151516156127c8576127c8612891565b500290565b6000828210156127df576127df612891565b500390565b60005b838110156127ff5781810151838201526020016127e7565b8381111561107f5750506000910152565b60008161281f5761281f612891565b506000190190565b600181811c9082168061283b57607f821691505b6020821081141561285c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561287657612876612891565b5060010190565b60008261288c5761288c6128a7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c8257600080fdfea2646970667358221220b7acef317920829745a00dba2b0bc136d4e384f10db05494cd7e07a4ca5ac8f764736f6c63430008070033
Deployed Bytecode
0x60806040526004361061023b5760003560e01c8063715018a61161012e578063ab43bce7116100ab578063d0eb26b01161006f578063d0eb26b01461068a578063d5abeb01146106aa578063e0a80853146106c0578063e985e9c5146106e0578063f2fde38b1461072957600080fd5b8063ab43bce714610601578063b071401b14610614578063b88d4fde14610634578063ba7d2c7614610654578063c87b56dd1461066a57600080fd5b806394354fd0116100f257806394354fd01461058b57806395d89b41146105a1578063a035b1fe146105b6578063a22cb465146105cc578063a45ba8e7146105ec57600080fd5b8063715018a6146104f85780637ec4a6591461050d5780638c32c5681461052d5780638da5cb5b1461054d57806391b7f5ed1461056b57600080fd5b80633ccfd60b116101bc5780635183022711610180578063518302271461045f5780635c975abb1461047e5780636352211e146104985780636f8b44b0146104b857806370a08231146104d857600080fd5b80633ccfd60b146103bd57806342842e0e146103d2578063438b6300146103f25780634f6ccce71461041f5780634fdd43cb1461043f57600080fd5b806316c38b3c1161020357806316c38b3c1461031157806318160ddd1461033157806318cae2691461035057806323b872dd1461037d5780632f745c591461039d57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806316ba10e0146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612478565b610749565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a6107b6565b60405161026c9190612685565b3480156102a357600080fd5b506102b76102b23660046124fb565b610848565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612433565b6108d8565b005b3480156102fd57600080fd5b506102ef61030c3660046124b2565b6109f0565b34801561031d57600080fd5b506102ef61032c36600461245d565b610a31565b34801561033d57600080fd5b506000545b60405190815260200161026c565b34801561035c57600080fd5b5061034261036b366004612303565b60106020526000908152604090205481565b34801561038957600080fd5b506102ef610398366004612351565b610a6e565b3480156103a957600080fd5b506103426103b8366004612433565b610a79565b3480156103c957600080fd5b506102ef610be7565b3480156103de57600080fd5b506102ef6103ed366004612351565b610c85565b3480156103fe57600080fd5b5061041261040d366004612303565b610ca0565b60405161026c9190612641565b34801561042b57600080fd5b5061034261043a3660046124fb565b610d80565b34801561044b57600080fd5b506102ef61045a3660046124b2565b610de2565b34801561046b57600080fd5b50600f5461026090610100900460ff1681565b34801561048a57600080fd5b50600f546102609060ff1681565b3480156104a457600080fd5b506102b76104b33660046124fb565b610e1f565b3480156104c457600080fd5b506102ef6104d33660046124fb565b610e31565b3480156104e457600080fd5b506103426104f3366004612303565b610e60565b34801561050457600080fd5b506102ef610ef1565b34801561051957600080fd5b506102ef6105283660046124b2565b610f27565b34801561053957600080fd5b506102ef610548366004612433565b610f64565b34801561055957600080fd5b506007546001600160a01b03166102b7565b34801561057757600080fd5b506102ef6105863660046124fb565b611085565b34801561059757600080fd5b50610342600d5481565b3480156105ad57600080fd5b5061028a6110b4565b3480156105c257600080fd5b50610342600b5481565b3480156105d857600080fd5b506102ef6105e7366004612409565b6110c3565b3480156105f857600080fd5b5061028a611188565b6102ef61060f3660046124fb565b611216565b34801561062057600080fd5b506102ef61062f3660046124fb565b6113e8565b34801561064057600080fd5b506102ef61064f36600461238d565b611417565b34801561066057600080fd5b50610342600e5481565b34801561067657600080fd5b5061028a6106853660046124fb565b61144a565b34801561069657600080fd5b506102ef6106a53660046124fb565b6115bb565b3480156106b657600080fd5b50610342600c5481565b3480156106cc57600080fd5b506102ef6106db36600461245d565b6115ea565b3480156106ec57600080fd5b506102606106fb36600461231e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561073557600080fd5b506102ef610744366004612303565b61162e565b60006001600160e01b031982166380ac58cd60e01b148061077a57506001600160e01b03198216635b5e139f60e01b145b8061079557506001600160e01b0319821663780e9d6360e01b145b806107b057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107c590612827565b80601f01602080910402602001604051908101604052809291908181526020018280546107f190612827565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b6000610855826000541190565b6108bc5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108e382610e1f565b9050806001600160a01b0316836001600160a01b031614156109525760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108b3565b336001600160a01b038216148061096e575061096e81336106fb565b6109e05760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108b3565b6109eb8383836116c6565b505050565b6007546001600160a01b03163314610a1a5760405162461bcd60e51b81526004016108b3906126cf565b8051610a2d9060099060208401906121d1565b5050565b6007546001600160a01b03163314610a5b5760405162461bcd60e51b81526004016108b3906126cf565b600f805460ff1916911515919091179055565b6109eb838383611722565b6000610a8483610e60565b8210610add5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108b3565b600080549080805b83811015610b87576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b3857805192505b876001600160a01b0316836001600160a01b03161415610b745786841415610b66575093506107b092505050565b83610b7081612862565b9450505b5080610b7f81612862565b915050610ae5565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108b3565b6007546001600160a01b03163314610c115760405162461bcd60e51b81526004016108b3906126cf565b6000610c256007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c6f576040519150601f19603f3d011682016040523d82523d6000602084013e610c74565b606091505b5050905080610c8257600080fd5b50565b6109eb83838360405180602001604052806000815250611417565b60606000610cad83610e60565b905060008167ffffffffffffffff811115610cca57610cca6128d3565b604051908082528060200260200182016040528015610cf3578160200160208202803683370190505b5090506000805b8381108015610d0b5750600c548211155b15610d76576000610d1b83610e1f565b9050866001600160a01b0316816001600160a01b03161415610d635782848381518110610d4a57610d4a6128bd565b602090810291909101015281610d5f81612862565b9250505b82610d6d81612862565b93505050610cfa565b5090949350505050565b600080548210610dde5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108b3565b5090565b6007546001600160a01b03163314610e0c5760405162461bcd60e51b81526004016108b3906126cf565b8051610a2d90600a9060208401906121d1565b6000610e2a82611a69565b5192915050565b6007546001600160a01b03163314610e5b5760405162461bcd60e51b81526004016108b3906126cf565b600c55565b60006001600160a01b038216610ecc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108b3565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610f1b5760405162461bcd60e51b81526004016108b3906126cf565b610f256000611c13565b565b6007546001600160a01b03163314610f515760405162461bcd60e51b81526004016108b3906126cf565b8051610a2d9060089060208401906121d1565b3360009081526010602052604090205481908115801590610f875750600d548211155b610fca5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108b3565b600e54610fd78383612782565b1115610ff55760405162461bcd60e51b81526004016108b390612698565b600c54826000546110069190612782565b111561104b5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108b3565b6007546001600160a01b031633146110755760405162461bcd60e51b81526004016108b3906126cf565b61107f8484611c65565b50505050565b6007546001600160a01b031633146110af5760405162461bcd60e51b81526004016108b3906126cf565b600b55565b6060600280546107c590612827565b6001600160a01b03821633141561111c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108b3565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a805461119590612827565b80601f01602080910402602001604051908101604052809291908181526020018280546111c190612827565b801561120e5780601f106111e35761010080835404028352916020019161120e565b820191906000526020600020905b8154815290600101906020018083116111f157829003601f168201915b505050505081565b33600090815260106020526040902054819081158015906112395750600d548211155b61127c5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108b3565b600e546112898383612782565b11156112a75760405162461bcd60e51b81526004016108b390612698565b600c54826000546112b89190612782565b11156112fd5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108b3565b33600090815260106020526040902054600f5460ff16156113605760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108b3565b83600b5461136e91906127ae565b3410156113b35760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108b3565b600e546113c08583612782565b11156113de5760405162461bcd60e51b81526004016108b390612698565b61107f3385611c65565b6007546001600160a01b031633146114125760405162461bcd60e51b81526004016108b3906126cf565b600d55565b611422848484611722565b61142e84848484611c7f565b61107f5760405162461bcd60e51b81526004016108b390612704565b6060611457826000541190565b6114bb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108b3565b600f54610100900460ff1661155c57600a80546114d790612827565b80601f016020809104026020016040519081016040528092919081815260200182805461150390612827565b80156115505780601f1061152557610100808354040283529160200191611550565b820191906000526020600020905b81548152906001019060200180831161153357829003601f168201915b50505050509050919050565b6000611566611d8d565b9050600081511161158657604051806020016040528060008152506115b4565b8061159084611d9c565b60096040516020016115a493929190612540565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146115e55760405162461bcd60e51b81526004016108b3906126cf565b600e55565b6007546001600160a01b031633146116145760405162461bcd60e51b81526004016108b3906126cf565b600f80549115156101000261ff0019909216919091179055565b6007546001600160a01b031633146116585760405162461bcd60e51b81526004016108b3906126cf565b6001600160a01b0381166116bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b3565b610c8281611c13565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061172d82611a69565b80519091506000906001600160a01b0316336001600160a01b0316148061176457503361175984610848565b6001600160a01b0316145b806117765750815161177690336106fb565b9050806117e05760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108b3565b846001600160a01b031682600001516001600160a01b0316146118545760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108b3565b6001600160a01b0384166118b85760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108b3565b6118c860008484600001516116c6565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061198d908590612782565b6000818152600360205260409020549091506001600160a01b0316611a1f576119b7816000541190565b15611a1f5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611a88826000541190565b611ae75760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108b3565b60007f00000000000000000000000000000000000000000000000000000000000000648310611b4857611b3a7f0000000000000000000000000000000000000000000000000000000000000064846127cd565b611b45906001612782565b90505b825b818110611bb2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b9f57949350505050565b5080611baa81612810565b915050611b4a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108b3565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a2d828260405180602001604052806000815250611e9a565b60006001600160a01b0384163b15611d8157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cc3903390899088908890600401612604565b602060405180830381600087803b158015611cdd57600080fd5b505af1925050508015611d0d575060408051601f3d908101601f19168201909252611d0a91810190612495565b60015b611d67573d808015611d3b576040519150601f19603f3d011682016040523d82523d6000602084013e611d40565b606091505b508051611d5f5760405162461bcd60e51b81526004016108b390612704565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d85565b5060015b949350505050565b6060600880546107c590612827565b606081611dc05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dea5780611dd481612862565b9150611de39050600a8361279a565b9150611dc4565b60008167ffffffffffffffff811115611e0557611e056128d3565b6040519080825280601f01601f191660200182016040528015611e2f576020820181803683370190505b5090505b8415611d8557611e446001836127cd565b9150611e51600a8661287d565b611e5c906030612782565b60f81b818381518110611e7157611e716128bd565b60200101906001600160f81b031916908160001a905350611e93600a8661279a565b9450611e33565b6000546001600160a01b038416611efd5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108b3565b611f08816000541190565b15611f555760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108b3565b7f0000000000000000000000000000000000000000000000000000000000000064831115611fd05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108b3565b6000831161202c5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016108b3565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612088908790612757565b6001600160801b031681526020018583602001516120a69190612757565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121c65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461218a6000888488611c7f565b6121a65760405162461bcd60e51b81526004016108b390612704565b816121b081612862565b92505080806121be90612862565b91505061213d565b506000819055611a61565b8280546121dd90612827565b90600052602060002090601f0160209004810192826121ff5760008555612245565b82601f1061221857805160ff1916838001178555612245565b82800160010185558215612245579182015b8281111561224557825182559160200191906001019061222a565b50610dde9291505b80821115610dde576000815560010161224d565b600067ffffffffffffffff8084111561227c5761227c6128d3565b604051601f8501601f19908116603f011681019082821181831017156122a4576122a46128d3565b816040528093508581528686860111156122bd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146122ee57600080fd5b919050565b803580151581146122ee57600080fd5b60006020828403121561231557600080fd5b6115b4826122d7565b6000806040838503121561233157600080fd5b61233a836122d7565b9150612348602084016122d7565b90509250929050565b60008060006060848603121561236657600080fd5b61236f846122d7565b925061237d602085016122d7565b9150604084013590509250925092565b600080600080608085870312156123a357600080fd5b6123ac856122d7565b93506123ba602086016122d7565b925060408501359150606085013567ffffffffffffffff8111156123dd57600080fd5b8501601f810187136123ee57600080fd5b6123fd87823560208401612261565b91505092959194509250565b6000806040838503121561241c57600080fd5b612425836122d7565b9150612348602084016122f3565b6000806040838503121561244657600080fd5b61244f836122d7565b946020939093013593505050565b60006020828403121561246f57600080fd5b6115b4826122f3565b60006020828403121561248a57600080fd5b81356115b4816128e9565b6000602082840312156124a757600080fd5b81516115b4816128e9565b6000602082840312156124c457600080fd5b813567ffffffffffffffff8111156124db57600080fd5b8201601f810184136124ec57600080fd5b611d8584823560208401612261565b60006020828403121561250d57600080fd5b5035919050565b6000815180845261252c8160208601602086016127e4565b601f01601f19169290920160200192915050565b6000845160206125538285838a016127e4565b8551918401916125668184848a016127e4565b8554920191600090600181811c908083168061258357607f831692505b8583108114156125a157634e487b7160e01b85526022600452602485fd5b8080156125b557600181146125c6576125f3565b60ff198516885283880195506125f3565b60008b81526020902060005b858110156125eb5781548a8201529084019088016125d2565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061263790830184612514565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126795783518352928401929184019160010161265d565b50909695505050505050565b6020815260006115b46020830184612514565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561277957612779612891565b01949350505050565b6000821982111561279557612795612891565b500190565b6000826127a9576127a96128a7565b500490565b60008160001904831182151516156127c8576127c8612891565b500290565b6000828210156127df576127df612891565b500390565b60005b838110156127ff5781810151838201526020016127e7565b8381111561107f5750506000910152565b60008161281f5761281f612891565b506000190190565b600181811c9082168061283b57607f821691505b6020821081141561285c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561287657612876612891565b5060010190565b60008261288c5761288c6128a7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c8257600080fdfea2646970667358221220b7acef317920829745a00dba2b0bc136d4e384f10db05494cd7e07a4ca5ac8f764736f6c63430008070033
Deployed Bytecode Sourcemap
41941:4230:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29660:372;;;;;;;;;;-1:-1:-1;29660:372:0;;;;;:::i;:::-;;:::i;:::-;;;7807:14:1;;7800:22;7782:41;;7770:2;7755:18;29660:372:0;;;;;;;;31465:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33026:214::-;;;;;;;;;;-1:-1:-1;33026:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6468:32:1;;;6450:51;;6438:2;6423:18;33026:214:0;6304:203:1;32547:413:0;;;;;;;;;;-1:-1:-1;32547:413:0;;;;;:::i;:::-;;:::i;:::-;;45210:100;;;;;;;;;;-1:-1:-1;45210:100:0;;;;;:::i;:::-;;:::i;45316:77::-;;;;;;;;;;-1:-1:-1;45316:77:0;;;;;:::i;:::-;;:::i;28101:100::-;;;;;;;;;;-1:-1:-1;28154:7:0;28181:12;28101:100;;;18421:25:1;;;18409:2;18394:18;28101:100:0;18275:177:1;42477:55:0;;;;;;;;;;-1:-1:-1;42477:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;33902:162;;;;;;;;;;-1:-1:-1;33902:162:0;;;;;:::i;:::-;;:::i;28765:823::-;;;;;;;;;;-1:-1:-1;28765:823:0;;;;;:::i;:::-;;:::i;46021:143::-;;;;;;;;;;;;;:::i;34135:177::-;;;;;;;;;;-1:-1:-1;34135:177:0;;;;;:::i;:::-;;:::i;43647:635::-;;;;;;;;;;-1:-1:-1;43647:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28278:187::-;;;;;;;;;;-1:-1:-1;28278:187:0;;;;;:::i;:::-;;:::i;44966:132::-;;;;;;;;;;-1:-1:-1;44966:132:0;;;;;:::i;:::-;;:::i;42445:27::-;;;;;;;;;;-1:-1:-1;42445:27:0;;;;;;;;;;;42415:25;;;;;;;;;;-1:-1:-1;42415:25:0;;;;;;;;31274:124;;;;;;;;;;-1:-1:-1;31274:124:0;;;;;:::i;:::-;;:::i;45919:96::-;;;;;;;;;;-1:-1:-1;45919:96:0;;;;;:::i;:::-;;:::i;30096:221::-;;;;;;;;;;-1:-1:-1;30096:221:0;;;;;:::i;:::-;;:::i;15346:103::-;;;;;;;;;;;;;:::i;45104:100::-;;;;;;;;;;-1:-1:-1;45104:100:0;;;;;:::i;:::-;;:::i;43502:136::-;;;;;;;;;;-1:-1:-1;43502:136:0;;;;;:::i;:::-;;:::i;14695:87::-;;;;;;;;;;-1:-1:-1;14768:6:0;;-1:-1:-1;;;;;14768:6:0;14695:87;;44879:80;;;;;;;;;;-1:-1:-1;44879:80:0;;;;;:::i;:::-;;:::i;42220:39::-;;;;;;;;;;;;;;;;31634:104;;;;;;;;;;;;;:::i;42134:30::-;;;;;;;;;;;;;;;;33312:288;;;;;;;;;;-1:-1:-1;33312:288:0;;;;;:::i;:::-;;:::i;42094:31::-;;;;;;;;;;;;;:::i;43056:428::-;;;;;;:::i;:::-;;:::i;45639:132::-;;;;;;;;;;-1:-1:-1;45639:132:0;;;;;:::i;:::-;;:::i;34383:355::-;;;;;;;;;;-1:-1:-1;34383:355:0;;;;;:::i;:::-;;:::i;42340:37::-;;;;;;;;;;;;;;;;44288:494;;;;;;;;;;-1:-1:-1;44288:494:0;;;;;:::i;:::-;;:::i;45779:132::-;;;;;;;;;;-1:-1:-1;45779:132:0;;;;;:::i;:::-;;:::i;42183:31::-;;;;;;;;;;;;;;;;44788:85;;;;;;;;;;-1:-1:-1;44788:85:0;;;;;:::i;:::-;;:::i;33671:164::-;;;;;;;;;;-1:-1:-1;33671:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33792:25:0;;;33768:4;33792:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33671:164;15604:201;;;;;;;;;;-1:-1:-1;15604:201:0;;;;;:::i;:::-;;:::i;29660:372::-;29762:4;-1:-1:-1;;;;;;29799:40:0;;-1:-1:-1;;;29799:40:0;;:105;;-1:-1:-1;;;;;;;29856:48:0;;-1:-1:-1;;;29856:48:0;29799:105;:172;;;-1:-1:-1;;;;;;;29921:50:0;;-1:-1:-1;;;29921:50:0;29799:172;:225;;;-1:-1:-1;;;;;;;;;;5643:40:0;;;29988:36;29779:245;29660:372;-1:-1:-1;;29660:372:0:o;31465:100::-;31519:13;31552:5;31545:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31465:100;:::o;33026:214::-;33094:7;33122:16;33130:7;35050:4;35084:12;-1:-1:-1;35074:22:0;34993:111;33122:16;33114:74;;;;-1:-1:-1;;;33114:74:0;;17312:2:1;33114:74:0;;;17294:21:1;17351:2;17331:18;;;17324:30;17390:34;17370:18;;;17363:62;-1:-1:-1;;;17441:18:1;;;17434:43;17494:19;;33114:74:0;;;;;;;;;-1:-1:-1;33208:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33208:24:0;;33026:214::o;32547:413::-;32620:13;32636:24;32652:7;32636:15;:24::i;:::-;32620:40;;32685:5;-1:-1:-1;;;;;32679:11:0;:2;-1:-1:-1;;;;;32679:11:0;;;32671:58;;;;-1:-1:-1;;;32671:58:0;;14145:2:1;32671:58:0;;;14127:21:1;14184:2;14164:18;;;14157:30;14223:34;14203:18;;;14196:62;-1:-1:-1;;;14274:18:1;;;14267:32;14316:19;;32671:58:0;13943:398:1;32671:58:0;13499:10;-1:-1:-1;;;;;32764:21:0;;;;:62;;-1:-1:-1;32789:37:0;32806:5;13499:10;33671:164;:::i;32789:37::-;32742:169;;;;-1:-1:-1;;;32742:169:0;;10997:2:1;32742:169:0;;;10979:21:1;11036:2;11016:18;;;11009:30;11075:34;11055:18;;;11048:62;11146:27;11126:18;;;11119:55;11191:19;;32742:169:0;10795:421:1;32742:169:0;32924:28;32933:2;32937:7;32946:5;32924:8;:28::i;:::-;32609:351;32547:413;;:::o;45210:100::-;14768:6;;-1:-1:-1;;;;;14768:6:0;13499:10;14915:23;14907:68;;;;-1:-1:-1;;;14907:68:0;;;;;;;:::i;:::-;45282:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45210:100:::0;:::o;45316:77::-;14768:6;;-1:-1:-1;;;;;14768:6:0;13499:10;14915:23;14907:68;;;;-1:-1:-1;;;14907:68:0;;;;;;;:::i;:::-;45372:6:::1;:15:::0;;-1:-1:-1;;45372:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45316:77::o;33902:162::-;34028:28;34038:4;34044:2;34048:7;34028:9;:28::i;28765:823::-;28854:7;28890:16;28900:5;28890:9;:16::i;:::-;28882:5;:24;28874:71;;;;-1:-1:-1;;;28874:71:0;;8260:2:1;28874:71:0;;;8242:21:1;8299:2;8279:18;;;8272:30;8338:34;8318:18;;;8311:62;-1:-1:-1;;;8389:18:1;;;8382:32;8431:19;;28874:71:0;8058:398:1;28874:71:0;28956:22;28181:12;;;28956:22;;29088:426;29112:14;29108:1;:18;29088:426;;;29148:31;29182:14;;;:11;:14;;;;;;;;;29148:48;;;;;;;;;-1:-1:-1;;;;;29148:48:0;;;;;-1:-1:-1;;;29148:48:0;;;;;;;;;;;;29215:28;29211:103;;29284:14;;;-1:-1:-1;29211:103:0;29353:5;-1:-1:-1;;;;;29332:26:0;:17;-1:-1:-1;;;;;29332:26:0;;29328:175;;;29398:5;29383:11;:20;29379:77;;;-1:-1:-1;29435:1:0;-1:-1:-1;29428:8:0;;-1:-1:-1;;;29428:8:0;29379:77;29474:13;;;;:::i;:::-;;;;29328:175;-1:-1:-1;29128:3:0;;;;:::i;:::-;;;;29088:426;;;-1:-1:-1;29524:56:0;;-1:-1:-1;;;29524:56:0;;16481:2:1;29524:56:0;;;16463:21:1;16520:2;16500:18;;;16493:30;16559:34;16539:18;;;16532:62;-1:-1:-1;;;16610:18:1;;;16603:44;16664:19;;29524:56:0;16279:410:1;46021:143:0;14768:6;;-1:-1:-1;;;;;14768:6:0;13499:10;14915:23;14907:68;;;;-1:-1:-1;;;14907:68:0;;;;;;;:::i;:::-;46066:7:::1;46087;14768:6:::0;;-1:-1:-1;;;;;14768:6:0;;14695:87;46087:7:::1;-1:-1:-1::0;;;;;46079:21:0::1;46108;46079:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46065:69;;;46149:2;46141:11;;;::::0;::::1;;46058:106;46021:143::o:0;34135:177::-;34265:39;34282:4;34288:2;34292:7;34265:39;;;;;;;;;;;;:16;:39::i;43647:635::-;43722:16;43750:23;43776:17;43786:6;43776:9;:17::i;:::-;43750:43;;43800:30;43847:15;43833:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43833:30:0;;43800:63;;43870:22;43903:23;43939:309;43964:15;43946;:33;:64;;;;;44001:9;;43983:14;:27;;43946:64;43939:309;;;44021:25;44049:23;44057:14;44049:7;:23::i;:::-;44021:51;;44108:6;-1:-1:-1;;;;;44087:27:0;:17;-1:-1:-1;;;;;44087:27:0;;44083:131;;;44160:14;44127:13;44141:15;44127:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;44187:17;;;;:::i;:::-;;;;44083:131;44224:16;;;;:::i;:::-;;;;44012:236;43939:309;;;-1:-1:-1;44263:13:0;;43647:635;-1:-1:-1;;;;43647:635:0:o;28278:187::-;28345:7;28181:12;;28373:5;:21;28365:69;;;;-1:-1:-1;;;28365:69:0;;10187:2:1;28365:69:0;;;10169:21:1;10226:2;10206:18;;;10199:30;10265:34;10245:18;;;10238:62;-1:-1:-1;;;10316:18:1;;;10309:33;10359:19;;28365:69:0;9985:399:1;28365:69:0;-1:-1:-1;28452:5:0;28278:187::o;44966:132::-;14768:6;;-1:-1:-1;;;;;14768:6:0;13499:10;14915:23;14907:68;;;;-1:-1:-1;;;14907:68:0;;;;;;;:::i;:::-;45054:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;31274:124::-:0;31338:7;31365:20;31377:7;31365:11;:20::i;:::-;:25;;31274:124;-1:-1:-1;;31274:124:0:o;45919:96::-;14768:6;;-1:-1:-1;;;;;14768:6:0;13499:10;14915:23;14907:68;;;;-1:-1:-1;;;14907:68:0;;;;;;;:::i;:::-;45985:9:::1;:22:::0;45919:96::o;30096:221::-;30160:7;-1:-1:-1;;;;;30188:19:0;;30180:75;;;;-1:-1:-1;;;30180:75:0;;11423:2:1;30180:75:0;;;11405:21:1;11462:2;11442:18;;;11435:30;11501:34;11481:18;;;11474:62;-1:-1:-1;;;11552:18:1;;;11545:41;11603:19;;30180:75:0;11221:407:1;30180:75:0;-1:-1:-1;;;;;;30281:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30281:27:0;;30096:221::o;15346:103::-;14768:6;;-1:-1:-1;;;;;14768:6:0;13499:10;14915:23;14907:68;;;;-1:-1:-1;;;14907:68:0;;;;;;;:::i;:::-;15411:30:::1;15438:1;15411:18;:30::i;:::-;15346:103::o:0;45104:100::-;14768:6;;-1:-1:-1;;;;;14768:6:0;13499:10;14915:23;14907:68;;;;-1:-1:-1;;;14907:68:0;;;;;;;:::i;:::-;45176:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;43502:136::-:0;42754:10;42706:24;42733:32;;;:20;:32;;;;;;43575:11;;42780:15;;;;;:52;;;42814:18;;42799:11;:33;;42780:52;42772:85;;;;-1:-1:-1;;;42772:85:0;;9481:2:1;42772:85:0;;;9463:21:1;9520:2;9500:18;;;9493:30;-1:-1:-1;;;9539:18:1;;;9532:50;9599:18;;42772:85:0;9279:344:1;42772:85:0;42906:18;;42872:30;42891:11;42872:16;:30;:::i;:::-;:52;;42864:93;;;;-1:-1:-1;;;42864:93:0;;;;;;;:::i;:::-;43002:9;;42987:11;42972:12;;:26;;;;:::i;:::-;:39;;42964:72;;;;-1:-1:-1;;;42964:72:0;;14548:2:1;42964:72:0;;;14530:21:1;14587:2;14567:18;;;14560:30;-1:-1:-1;;;14606:18:1;;;14599:50;14666:18;;42964:72:0;14346:344:1;42964:72:0;14768:6;;-1:-1:-1;;;;;14768:6:0;13499:10;14915:23:::1;14907:68;;;;-1:-1:-1::0;;;14907:68:0::1;;;;;;;:::i;:::-;43605:27:::2;43615:3;43620:11;43605:9;:27::i;:::-;42697:353:::0;43502:136;;;:::o;44879:80::-;14768:6;;-1:-1:-1;;;;;14768:6:0;13499:10;14915:23;14907:68;;;;-1:-1:-1;;;14907:68:0;;;;;;;:::i;:::-;44937:5:::1;:14:::0;44879:80::o;31634:104::-;31690:13;31723:7;31716:14;;;;;:::i;33312:288::-;-1:-1:-1;;;;;33407:24:0;;13499:10;33407:24;;33399:63;;;;-1:-1:-1;;;33399:63:0;;13371:2:1;33399:63:0;;;13353:21:1;13410:2;13390:18;;;13383:30;13449:28;13429:18;;;13422:56;13495:18;;33399:63:0;13169:350:1;33399:63:0;13499:10;33475:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33475:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33475:53:0;;;;;;;;;;33544:48;;7782:41:1;;;33475:42:0;;13499:10;33544:48;;7755:18:1;33544:48:0;;;;;;;33312:288;;:::o;42094:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43056:428::-;42754:10;42706:24;42733:32;;;:20;:32;;;;;;43120:11;;42780:15;;;;;:52;;;42814:18;;42799:11;:33;;42780:52;42772:85;;;;-1:-1:-1;;;42772:85:0;;9481:2:1;42772:85:0;;;9463:21:1;9520:2;9500:18;;;9493:30;-1:-1:-1;;;9539:18:1;;;9532:50;9599:18;;42772:85:0;9279:344:1;42772:85:0;42906:18;;42872:30;42891:11;42872:16;:30;:::i;:::-;:52;;42864:93;;;;-1:-1:-1;;;42864:93:0;;;;;;;:::i;:::-;43002:9;;42987:11;42972:12;;:26;;;;:::i;:::-;:39;;42964:72;;;;-1:-1:-1;;;42964:72:0;;14548:2:1;42964:72:0;;;14530:21:1;14587:2;14567:18;;;14560:30;-1:-1:-1;;;14606:18:1;;;14599:50;14666:18;;42964:72:0;14346:344:1;42964:72:0;43192:10:::1;43144:24;43171:32:::0;;;:20:::1;:32;::::0;;;;;43219:6:::1;::::0;::::1;;43218:7;43210:43;;;::::0;-1:-1:-1;;;43210:43:0;;12603:2:1;43210:43:0::1;::::0;::::1;12585:21:1::0;12642:2;12622:18;;;12615:30;12681:25;12661:18;;;12654:53;12724:18;;43210:43:0::1;12401:347:1::0;43210:43:0::1;43289:11;43281:5;;:19;;;;:::i;:::-;43268:9;:32;;43260:64;;;::::0;-1:-1:-1;;;43260:64:0;;18129:2:1;43260:64:0::1;::::0;::::1;18111:21:1::0;18168:2;18148:18;;;18141:30;-1:-1:-1;;;18187:18:1;;;18180:49;18246:18;;43260:64:0::1;17927:343:1::0;43260:64:0::1;43374:18;::::0;43340:30:::1;43359:11:::0;43340:16;:30:::1;:::i;:::-;:52;;43332:93;;;;-1:-1:-1::0;;;43332:93:0::1;;;;;;;:::i;:::-;43444:34;43454:10;43466:11;43444:9;:34::i;45639:132::-:0;14768:6;;-1:-1:-1;;;;;14768:6:0;13499:10;14915:23;14907:68;;;;-1:-1:-1;;;14907:68:0;;;;;;;:::i;:::-;45723:18:::1;:40:::0;45639:132::o;34383:355::-;34542:28;34552:4;34558:2;34562:7;34542:9;:28::i;:::-;34603:48;34626:4;34632:2;34636:7;34645:5;34603:22;:48::i;:::-;34581:149;;;;-1:-1:-1;;;34581:149:0;;;;;;;:::i;44288:494::-;44387:13;44428:17;44436:8;35050:4;35084:12;-1:-1:-1;35074:22:0;34993:111;44428:17;44412:98;;;;-1:-1:-1;;;44412:98:0;;12955:2:1;44412:98:0;;;12937:21:1;12994:2;12974:18;;;12967:30;13033:34;13013:18;;;13006:62;-1:-1:-1;;;13084:18:1;;;13077:45;13139:19;;44412:98:0;12753:411:1;44412:98:0;44523:8;;;;;;;44519:64;;44558:17;44551:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44288:494;;;:::o;44519:64::-;44591:28;44622:10;:8;:10::i;:::-;44591:41;;44677:1;44652:14;44646:28;:32;:130;;;;;;;;;;;;;;;;;44714:14;44730:19;:8;:17;:19::i;:::-;44751:9;44697:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44646:130;44639:137;44288:494;-1:-1:-1;;;44288:494:0:o;45779:132::-;14768:6;;-1:-1:-1;;;;;14768:6:0;13499:10;14915:23;14907:68;;;;-1:-1:-1;;;14907:68:0;;;;;;;:::i;:::-;45863:18:::1;:40:::0;45779:132::o;44788:85::-;14768:6;;-1:-1:-1;;;;;14768:6:0;13499:10;14915:23;14907:68;;;;-1:-1:-1;;;14907:68:0;;;;;;;:::i;:::-;44846:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;44846:17:0;;::::1;::::0;;;::::1;::::0;;44788:85::o;15604:201::-;14768:6;;-1:-1:-1;;;;;14768:6:0;13499:10;14915:23;14907:68;;;;-1:-1:-1;;;14907:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15693:22:0;::::1;15685:73;;;::::0;-1:-1:-1;;;15685:73:0;;8663:2:1;15685:73:0::1;::::0;::::1;8645:21:1::0;8702:2;8682:18;;;8675:30;8741:34;8721:18;;;8714:62;-1:-1:-1;;;8792:18:1;;;8785:36;8838:19;;15685:73:0::1;8461:402:1::0;15685:73:0::1;15769:28;15788:8;15769:18;:28::i;39119:196::-:0;39234:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39234:29:0;-1:-1:-1;;;;;39234:29:0;;;;;;;;;39279:28;;39234:24;;39279:28;;;;;;;39119:196;;;:::o;37218:1783::-;37333:35;37371:20;37383:7;37371:11;:20::i;:::-;37446:18;;37333:58;;-1:-1:-1;37404:22:0;;-1:-1:-1;;;;;37430:34:0;13499:10;-1:-1:-1;;;;;37430:34:0;;:87;;;-1:-1:-1;13499:10:0;37481:20;37493:7;37481:11;:20::i;:::-;-1:-1:-1;;;;;37481:36:0;;37430:87;:154;;;-1:-1:-1;37551:18:0;;37534:50;;13499:10;33671:164;:::i;37534:50::-;37404:181;;37606:17;37598:80;;;;-1:-1:-1;;;37598:80:0;;13726:2:1;37598:80:0;;;13708:21:1;13765:2;13745:18;;;13738:30;13804:34;13784:18;;;13777:62;-1:-1:-1;;;13855:18:1;;;13848:48;13913:19;;37598:80:0;13524:414:1;37598:80:0;37721:4;-1:-1:-1;;;;;37699:26:0;:13;:18;;;-1:-1:-1;;;;;37699:26:0;;37691:77;;;;-1:-1:-1;;;37691:77:0;;11835:2:1;37691:77:0;;;11817:21:1;11874:2;11854:18;;;11847:30;11913:34;11893:18;;;11886:62;-1:-1:-1;;;11964:18:1;;;11957:36;12010:19;;37691:77:0;11633:402:1;37691:77:0;-1:-1:-1;;;;;37787:16:0;;37779:66;;;;-1:-1:-1;;;37779:66:0;;10591:2:1;37779:66:0;;;10573:21:1;10630:2;10610:18;;;10603:30;10669:34;10649:18;;;10642:62;-1:-1:-1;;;10720:18:1;;;10713:35;10765:19;;37779:66:0;10389:401:1;37779:66:0;37966:49;37983:1;37987:7;37996:13;:18;;;37966:8;:49::i;:::-;-1:-1:-1;;;;;38220:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38220:31:0;;;-1:-1:-1;;;;;38220:31:0;;;-1:-1:-1;;38220:31:0;;;;;;;38266:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38266:29:0;;;;;;;;;;;;;38342:43;;;;;;;;;;38368:15;38342:43;;;;;;;;;;38319:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;38319:66:0;;;;;;;-1:-1:-1;;;38319:66:0;;;;;;;;;;;;38220:18;38647:11;;38319:20;;38647:11;:::i;:::-;38714:1;38673:24;;;:11;:24;;;;;:29;38625:33;;-1:-1:-1;;;;;;38673:29:0;38669:227;;38737:20;38745:11;35050:4;35084:12;-1:-1:-1;35074:22:0;34993:111;38737:20;38733:152;;;38805:64;;;;;;;;38820:18;;-1:-1:-1;;;;;38805:64:0;;;;;;38840:28;;;;38805:64;;;;;;;;;;-1:-1:-1;38778:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;38778:91:0;-1:-1:-1;;;;;;38778:91:0;;;;;;;;;;;;38733:152;38932:7;38928:2;-1:-1:-1;;;;;38913:27:0;38922:4;-1:-1:-1;;;;;38913:27:0;;;;;;;;;;;38951:42;37322:1679;;;37218:1783;;;:::o;30562:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;30665:16:0;30673:7;35050:4;35084:12;-1:-1:-1;35074:22:0;34993:111;30665:16;30657:71;;;;-1:-1:-1;;;30657:71:0;;9070:2:1;30657:71:0;;;9052:21:1;9109:2;9089:18;;;9082:30;9148:34;9128:18;;;9121:62;-1:-1:-1;;;9199:18:1;;;9192:40;9249:19;;30657:71:0;8868:406:1;30657:71:0;30741:26;30793:12;30782:7;:23;30778:103;;30843:22;30853:12;30843:7;:22;:::i;:::-;:26;;30868:1;30843:26;:::i;:::-;30822:47;;30778:103;30913:7;30893:242;30930:18;30922:4;:26;30893:242;;30973:31;31007:17;;;:11;:17;;;;;;;;;30973:51;;;;;;;;;-1:-1:-1;;;;;30973:51:0;;;;;-1:-1:-1;;;30973:51:0;;;;;;;;;;;;31043:28;31039:85;;31099:9;30562:650;-1:-1:-1;;;;30562:650:0:o;31039:85::-;-1:-1:-1;30950:6:0;;;;:::i;:::-;;;;30893:242;;;-1:-1:-1;31147:57:0;;-1:-1:-1;;;31147:57:0;;16896:2:1;31147:57:0;;;16878:21:1;16935:2;16915:18;;;16908:30;16974:34;16954:18;;;16947:62;-1:-1:-1;;;17025:18:1;;;17018:45;17080:19;;31147:57:0;16694:411:1;15965:191:0;16058:6;;;-1:-1:-1;;;;;16075:17:0;;;-1:-1:-1;;;;;;16075:17:0;;;;;;;16108:40;;16058:6;;;16075:17;16058:6;;16108:40;;16039:16;;16108:40;16028:128;15965:191;:::o;35112:104::-;35181:27;35191:2;35195:8;35181:27;;;;;;;;;;;;:9;:27::i;39880:804::-;40035:4;-1:-1:-1;;;;;40056:13:0;;17306:20;17354:8;40052:625;;40092:72;;-1:-1:-1;;;40092:72:0;;-1:-1:-1;;;;;40092:36:0;;;;;:72;;13499:10;;40143:4;;40149:7;;40158:5;;40092:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40092:72:0;;;;;;;;-1:-1:-1;;40092:72:0;;;;;;;;;;;;:::i;:::-;;;40088:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40338:13:0;;40334:273;;40381:61;;-1:-1:-1;;;40381:61:0;;;;;;;:::i;40334:273::-;40557:6;40551:13;40542:6;40538:2;40534:15;40527:38;40088:534;-1:-1:-1;;;;;;40215:55:0;-1:-1:-1;;;40215:55:0;;-1:-1:-1;40208:62:0;;40052:625;-1:-1:-1;40661:4:0;40052:625;39880:804;;;;;;:::o;45521:110::-;45581:13;45610:9;45603:16;;;;;:::i;10981:723::-;11037:13;11258:10;11254:53;;-1:-1:-1;;11285:10:0;;;;;;;;;;;;-1:-1:-1;;;11285:10:0;;;;;10981:723::o;11254:53::-;11332:5;11317:12;11373:78;11380:9;;11373:78;;11406:8;;;;:::i;:::-;;-1:-1:-1;11429:10:0;;-1:-1:-1;11437:2:0;11429:10;;:::i;:::-;;;11373:78;;;11461:19;11493:6;11483:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11483:17:0;;11461:39;;11511:154;11518:10;;11511:154;;11545:11;11555:1;11545:11;;:::i;:::-;;-1:-1:-1;11614:10:0;11622:2;11614:5;:10;:::i;:::-;11601:24;;:2;:24;:::i;:::-;11588:39;;11571:6;11578;11571:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;11571:56:0;;;;;;;;-1:-1:-1;11642:11:0;11651:2;11642:11;;:::i;:::-;;;11511:154;;35493:1471;35616:20;35639:12;-1:-1:-1;;;;;35670:16:0;;35662:62;;;;-1:-1:-1;;;35662:62:0;;16079:2:1;35662:62:0;;;16061:21:1;16118:2;16098:18;;;16091:30;16157:34;16137:18;;;16130:62;-1:-1:-1;;;16208:18:1;;;16201:31;16249:19;;35662:62:0;15877:397:1;35662:62:0;35869:21;35877:12;35050:4;35084:12;-1:-1:-1;35074:22:0;34993:111;35869:21;35868:22;35860:64;;;;-1:-1:-1;;;35860:64:0;;15721:2:1;35860:64:0;;;15703:21:1;15760:2;15740:18;;;15733:30;15799:31;15779:18;;;15772:59;15848:18;;35860:64:0;15519:353:1;35860:64:0;35955:12;35943:8;:24;;35935:71;;;;-1:-1:-1;;;35935:71:0;;17726:2:1;35935:71:0;;;17708:21:1;17765:2;17745:18;;;17738:30;17804:34;17784:18;;;17777:62;-1:-1:-1;;;17855:18:1;;;17848:32;17897:19;;35935:71:0;17524:398:1;35935:71:0;36036:1;36025:8;:12;36017:60;;;;-1:-1:-1;;;36017:60:0;;14897:2:1;36017:60:0;;;14879:21:1;14936:2;14916:18;;;14909:30;14975:34;14955:18;;;14948:62;-1:-1:-1;;;15026:18:1;;;15019:33;15069:19;;36017:60:0;14695:399:1;36017:60:0;-1:-1:-1;;;;;36197:16:0;;36164:30;36197:16;;;:12;:16;;;;;;;;;36164:49;;;;;;;;;-1:-1:-1;;;;;36164:49:0;;;;;-1:-1:-1;;;36164:49:0;;;;;;;;;;;36243:135;;;;;;;;36269:19;;36164:49;;36243:135;;;36269:39;;36299:8;;36269:39;:::i;:::-;-1:-1:-1;;;;;36243:135:0;;;;;36358:8;36323:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36243:135:0;;;;;;-1:-1:-1;;;;;36224:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;36224:154:0;;;;;;;;;;;;36417:43;;;;;;;;;;;36443:15;36417:43;;;;;;;;36389:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36389:71:0;-1:-1:-1;;;;;;36389:71:0;;;;;;;;;;;;;;;;;;36401:12;;36521:325;36545:8;36541:1;:12;36521:325;;;36580:38;;36605:12;;-1:-1:-1;;;;;36580:38:0;;;36597:1;;36580:38;;36597:1;;36580:38;36659:59;36690:1;36694:2;36698:12;36712:5;36659:22;:59::i;:::-;36633:172;;;;-1:-1:-1;;;36633:172:0;;;;;;;:::i;:::-;36820:14;;;;:::i;:::-;;;;36555:3;;;;;:::i;:::-;;;;36521:325;;;-1:-1:-1;36858:12:0;:27;;;36896:60;43502:136;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:1;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:1;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:1;;5736:328;18530:1;18523:14;;;18567:4;18554:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:1;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:1:o;6512:488::-;-1:-1:-1;;;;;6781:15:1;;;6763:34;;6833:15;;6828:2;6813:18;;6806:43;6880:2;6865:18;;6858:34;;;6928:3;6923:2;6908:18;;6901:31;;;6706:4;;6949:45;;6974:19;;6966:6;6949:45;:::i;:::-;6941:53;6512:488;-1:-1:-1;;;;;;6512:488:1:o;7005:632::-;7176:2;7228:21;;;7298:13;;7201:18;;;7320:22;;;7147:4;;7176:2;7399:15;;;;7373:2;7358:18;;;7147:4;7442:169;7456:6;7453:1;7450:13;7442:169;;;7517:13;;7505:26;;7586:15;;;;7551:12;;;;7478:1;7471:9;7442:169;;;-1:-1:-1;7628:3:1;;7005:632;-1:-1:-1;;;;;;7005:632:1:o;7834:219::-;7983:2;7972:9;7965:21;7946:4;8003:44;8043:2;8032:9;8028:18;8020:6;8003:44;:::i;9628:352::-;9830:2;9812:21;;;9869:2;9849:18;;;9842:30;9908;9903:2;9888:18;;9881:58;9971:2;9956:18;;9628:352::o;12040:356::-;12242:2;12224:21;;;12261:18;;;12254:30;12320:34;12315:2;12300:18;;12293:62;12387:2;12372:18;;12040:356::o;15099:415::-;15301:2;15283:21;;;15340:2;15320:18;;;15313:30;15379:34;15374:2;15359:18;;15352:62;-1:-1:-1;;;15445:2:1;15430:18;;15423:49;15504:3;15489:19;;15099:415::o;18583:253::-;18623:3;-1:-1:-1;;;;;18712:2:1;18709:1;18705:10;18742:2;18739:1;18735:10;18773:3;18769:2;18765:12;18760:3;18757:21;18754:47;;;18781:18;;:::i;:::-;18817:13;;18583:253;-1:-1:-1;;;;18583:253:1:o;18841:128::-;18881:3;18912:1;18908:6;18905:1;18902:13;18899:39;;;18918:18;;:::i;:::-;-1:-1:-1;18954:9:1;;18841:128::o;18974:120::-;19014:1;19040;19030:35;;19045:18;;:::i;:::-;-1:-1:-1;19079:9:1;;18974:120::o;19099:168::-;19139:7;19205:1;19201;19197:6;19193:14;19190:1;19187:21;19182:1;19175:9;19168:17;19164:45;19161:71;;;19212:18;;:::i;:::-;-1:-1:-1;19252:9:1;;19099:168::o;19272:125::-;19312:4;19340:1;19337;19334:8;19331:34;;;19345:18;;:::i;:::-;-1:-1:-1;19382:9:1;;19272:125::o;19402:258::-;19474:1;19484:113;19498:6;19495:1;19492:13;19484:113;;;19574:11;;;19568:18;19555:11;;;19548:39;19520:2;19513:10;19484:113;;;19615:6;19612:1;19609:13;19606:48;;;-1:-1:-1;;19650:1:1;19632:16;;19625:27;19402:258::o;19665:136::-;19704:3;19732:5;19722:39;;19741:18;;:::i;:::-;-1:-1:-1;;;19777:18:1;;19665:136::o;19806:380::-;19885:1;19881:12;;;;19928;;;19949:61;;20003:4;19995:6;19991:17;19981:27;;19949:61;20056:2;20048:6;20045:14;20025:18;20022:38;20019:161;;;20102:10;20097:3;20093:20;20090:1;20083:31;20137:4;20134:1;20127:15;20165:4;20162:1;20155:15;20019:161;;19806:380;;;:::o;20191:135::-;20230:3;-1:-1:-1;;20251:17:1;;20248:43;;;20271:18;;:::i;:::-;-1:-1:-1;20318:1:1;20307:13;;20191:135::o;20331:112::-;20363:1;20389;20379:35;;20394:18;;:::i;:::-;-1:-1:-1;20428:9:1;;20331:112::o;20448:127::-;20509:10;20504:3;20500:20;20497:1;20490:31;20540:4;20537:1;20530:15;20564:4;20561:1;20554:15;20580:127;20641:10;20636:3;20632:20;20629:1;20622:31;20672:4;20669:1;20662:15;20696:4;20693:1;20686:15;20712:127;20773:10;20768:3;20764:20;20761:1;20754:31;20804:4;20801:1;20794:15;20828:4;20825:1;20818:15;20844:127;20905:10;20900:3;20896:20;20893:1;20886:31;20936:4;20933:1;20926:15;20960:4;20957:1;20950:15;20976:131;-1:-1:-1;;;;;;21050:32:1;;21040:43;;21030:71;;21097:1;21094;21087:12
Swarm Source
ipfs://b7acef317920829745a00dba2b0bc136d4e384f10db05494cd7e07a4ca5ac8f7
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.