ERC-721
Overview
Max Total Supply
6,969 CBB
Holders
445
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
20 CBBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptoBullBalls
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-29 */ // SPDX-License-Identifier: MIT /* #################################################################################### ####################### ################################# ######################## ######################### ###################### ########################### ############################ ################## ############################## ############################# ############### ################################ ############################# ############### ################################ ############################ ############# ############################### ############################ ############# ############################### ############################ ############################### ############################## ################################# ###################################### ######################################### ##################################### ######################################## ################################### ###################################### ############################### C r y p t o ################################## ############################ B u l l ############################### ########################## B a l l s ############################# ######################## ########################### ######################### # ############################ ########################## ### ############################# ########################### ########### ############################## #################################################################################### #################################################################################### #################################################################################### //Smart contract by ScecarelloGuy // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts 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); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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); } // File: contracts/LowerGas.sol // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } 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 {} } interface HolderC { function balanceOf(address owner) external view returns (uint256 balance); } pragma solidity ^0.8.0; contract CryptoBullBalls is ERC721A, Ownable { using Strings for uint256; string private uriPrefix = ""; string private uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public price = 0.005 ether; uint256 public maxSupply = 6969; uint256 public maxMintAmountPerTx = 10; uint256 public nftPerAddressLimitWl = 10; bool public paused = true; bool public revealed = false; bool public onlyWhitelisted = false; bytes32 public whitelistMerkleRoot; mapping(address => uint256) public addressMintedBalance; HolderC public holderc; constructor() ERC721A("CryptoBullBalls", "CBB", maxMintAmountPerTx) { setHiddenMetadataUri("ipfs://QmZZwfQzy5BHXha6Gq99HdvuX1Y41AeeCLFi6VYd9YoSSK"); } /** * @dev validates merkleProof */ modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) { require( MerkleProof.verify( merkleProof, root, keccak256(abi.encodePacked(msg.sender)) ), "Address does not exist in list" ); _; } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); require(!onlyWhitelisted, "Presale is on"); require(msg.value >= price * _mintAmount, "Insufficient funds!"); _safeMint(msg.sender, _mintAmount); } function mintHolder(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(!paused, "The contract is paused!"); require(onlyWhitelisted, "Presale has ended"); require(holderc.balanceOf(msg.sender) > 0 , "you are not a holder"); require(ownerMintedCount + _mintAmount <= nftPerAddressLimitWl, "max NFT per address exceeded"); require(msg.value >= price * _mintAmount, "Insufficient funds!"); addressMintedBalance[msg.sender]+=_mintAmount; _safeMint(msg.sender, _mintAmount); } function mintWhitelist(bytes32[] calldata merkleProof, uint256 _mintAmount) public payable isValidMerkleProof(merkleProof, whitelistMerkleRoot){ uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(!paused, "The contract is paused!"); require(onlyWhitelisted, "Presale has ended"); require(ownerMintedCount + _mintAmount <= nftPerAddressLimitWl, "max NFT per address exceeded"); require(msg.value >= price * _mintAmount, "Insufficient funds!"); addressMintedBalance[msg.sender]+=_mintAmount; _safeMint(msg.sender, _mintAmount); } function NftToAddress(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 setWhitelistMerkleRoot(bytes32 merkleRoot) external onlyOwner { whitelistMerkleRoot = merkleRoot; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function setPrice(uint256 _price) public onlyOwner { price = _price; } function setHolderC(address _address) public { holderc = HolderC(_address); } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setNftPerAddressLimitWl(uint256 _limit) public onlyOwner { nftPerAddressLimitWl = _limit; } 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 setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } // withdrawall addresses address t1 = 0x9191c1F39Be40bbA3B4d57c023da85A500a02DDb; address t2 = 0x9e9E6D6aC9E59410E4AbAbB13475C5d54e5356ad; address t3 = 0xD37905283aDf21d3E628B423cBE20c4583BA9979; address t4 = 0xed124a7fAf7a6B54741EDADc6BE7D1E60C76787d; address t5 = 0xA05e5B6B5199735e157bCCa08f3CA680cACC4764; function withdrawall() public onlyOwner { uint256 _balance = address(this).balance; require(payable(t1).send(_balance * 20 / 100 )); require(payable(t2).send(_balance * 20 / 100 )); require(payable(t3).send(_balance * 20 / 100 )); require(payable(t4).send(_balance * 20 / 100 )); require(payable(t5).send(_balance * 20 / 100 )); } }
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":"NftToAddress","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":[],"name":"holderc","outputs":[{"internalType":"contract HolderC","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintHolder","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"_address","type":"address"}],"name":"setHolderC","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":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","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":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawall","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600080805560c0604081905260a08290526200001f916008919062000304565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004e9160099162000304565b506611c37937e08000600b55611b39600c55600a600d819055600e55600f805462ffffff19166001179055601380546001600160a01b0319908116739191c1f39be40bba3b4d57c023da85a500a02ddb17909155601480548216739e9e6d6ac9e59410e4ababb13475c5d54e5356ad17905560158054821673d37905283adf21d3e628b423cbe20c4583ba997917905560168054821673ed124a7faf7a6b54741edadc6be7d1e60c76787d1790556017805490911673a05e5b6b5199735e157bcca08f3ca680cacc47641790553480156200012857600080fd5b506040518060400160405280600f81526020016e43727970746f42756c6c42616c6c7360881b8152506040518060400160405280600381526020016221a12160e91b815250600d5460008111620001d65760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b8251620001eb90600190602086019062000304565b5081516200020190600290602085019062000304565b5060805250620002139050336200023d565b62000237604051806060016040528060358152602001620034a2603591396200028f565b620003e7565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620002eb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001cd565b80516200030090600a90602084019062000304565b5050565b8280546200031290620003aa565b90600052602060002090601f01602090048101928262000336576000855562000381565b82601f106200035157805160ff191683800117855562000381565b8280016001018555821562000381579182015b828111156200038157825182559160200191906001019062000364565b506200038f92915062000393565b5090565b5b808211156200038f576000815560010162000394565b600181811c90821680620003bf57607f821691505b60208210811415620003e157634e487b7160e01b600052602260045260246000fd5b50919050565b60805161309162000411600039600081816120ba015281816120e4015261252201526130916000f3fe6080604052600436106102935760003560e01c806370a082311161015a578063a6d612f9116100c1578063d5abeb011161007a578063d5abeb01146107c6578063e0a80853146107dc578063e2dfc039146107fc578063e985e9c51461081c578063f2fde38b14610865578063f66c72811461088557600080fd5b8063a6d612f91461071d578063aa98e0c614610730578063b071401b14610746578063b88d4fde14610766578063bd32fb6614610786578063c87b56dd146107a657600080fd5b806395d89b411161011357806395d89b411461068a5780639c70b5121461069f578063a035b1fe146106bf578063a0712d68146106d5578063a22cb465146106e8578063a45ba8e71461070857600080fd5b806370a08231146105e1578063715018a6146106015780637ec4a659146106165780638da5cb5b1461063657806391b7f5ed1461065457806394354fd01461067457600080fd5b80632f745c59116101fe5780634f6ccce7116101b75780634f6ccce7146105285780634fdd43cb1461054857806351830227146105685780635c975abb146105875780636352211e146105a15780636f8b44b0146105c157600080fd5b80632f745c591461044b578063388960a71461046b5780633c952764146104a857806342842e0e146104c8578063438b6300146104e85780634b3ea9341461051557600080fd5b806316c38b3c1161025057806316c38b3c1461038957806318160ddd146103a957806318cae269146103c85780632063064e146103f557806323b872dd1461040b5780632cdf09ba1461042b57600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b3146103275780630c6beda21461034957806316ba10e014610369575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612b4b565b61089a565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610907565b6040516102c49190612d58565b3480156102fb57600080fd5b5061030f61030a366004612b32565b610999565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004612a72565b610a29565b005b34801561035557600080fd5b50610347610364366004612a72565b610b41565b34801561037557600080fd5b50610347610384366004612b85565b610bd3565b34801561039557600080fd5b506103476103a4366004612b17565b610c14565b3480156103b557600080fd5b506000545b6040519081526020016102c4565b3480156103d457600080fd5b506103ba6103e3366004612942565b60116020526000908152604090205481565b34801561040157600080fd5b506103ba600e5481565b34801561041757600080fd5b50610347610426366004612990565b610c51565b34801561043757600080fd5b5060125461030f906001600160a01b031681565b34801561045757600080fd5b506103ba610466366004612a72565b610c5c565b34801561047757600080fd5b50610347610486366004612942565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b3480156104b457600080fd5b506103476104c3366004612b17565b610dca565b3480156104d457600080fd5b506103476104e3366004612990565b610e10565b3480156104f457600080fd5b50610508610503366004612942565b610e2b565b6040516102c49190612d14565b610347610523366004612b32565b610f0b565b34801561053457600080fd5b506103ba610543366004612b32565b61115f565b34801561055457600080fd5b50610347610563366004612b85565b6111c1565b34801561057457600080fd5b50600f546102b890610100900460ff1681565b34801561059357600080fd5b50600f546102b89060ff1681565b3480156105ad57600080fd5b5061030f6105bc366004612b32565b6111fe565b3480156105cd57600080fd5b506103476105dc366004612b32565b611210565b3480156105ed57600080fd5b506103ba6105fc366004612942565b61123f565b34801561060d57600080fd5b506103476112d0565b34801561062257600080fd5b50610347610631366004612b85565b611306565b34801561064257600080fd5b506007546001600160a01b031661030f565b34801561066057600080fd5b5061034761066f366004612b32565b611343565b34801561068057600080fd5b506103ba600d5481565b34801561069657600080fd5b506102e2611372565b3480156106ab57600080fd5b50600f546102b89062010000900460ff1681565b3480156106cb57600080fd5b506103ba600b5481565b6103476106e3366004612b32565b611381565b3480156106f457600080fd5b50610347610703366004612a48565b611482565b34801561071457600080fd5b506102e2611547565b61034761072b366004612a9c565b6115d5565b34801561073c57600080fd5b506103ba60105481565b34801561075257600080fd5b50610347610761366004612b32565b6117d7565b34801561077257600080fd5b506103476107813660046129cc565b611806565b34801561079257600080fd5b506103476107a1366004612b32565b61183f565b3480156107b257600080fd5b506102e26107c1366004612b32565b61186e565b3480156107d257600080fd5b506103ba600c5481565b3480156107e857600080fd5b506103476107f7366004612b17565b6119df565b34801561080857600080fd5b50610347610817366004612b32565b611a23565b34801561082857600080fd5b506102b861083736600461295d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561087157600080fd5b50610347610880366004612942565b611a52565b34801561089157600080fd5b50610347611aed565b60006001600160e01b031982166380ac58cd60e01b14806108cb57506001600160e01b03198216635b5e139f60e01b145b806108e657506001600160e01b0319821663780e9d6360e01b145b8061090157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461091690612f83565b80601f016020809104026020016040519081016040528092919081815260200182805461094290612f83565b801561098f5780601f106109645761010080835404028352916020019161098f565b820191906000526020600020905b81548152906001019060200180831161097257829003601f168201915b5050505050905090565b60006109a6826000541190565b610a0d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a34826111fe565b9050806001600160a01b0316836001600160a01b03161415610aa35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a04565b336001600160a01b0382161480610abf5750610abf8133610837565b610b315760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a04565b610b3c838383611c7b565b505050565b80600081118015610b545750600d548111155b610b705760405162461bcd60e51b8152600401610a0490612d6b565b600c5481600054610b819190612ede565b1115610b9f5760405162461bcd60e51b8152600401610a0490612e05565b6007546001600160a01b03163314610bc95760405162461bcd60e51b8152600401610a0490612d99565b610b3c8383611cd7565b6007546001600160a01b03163314610bfd5760405162461bcd60e51b8152600401610a0490612d99565b8051610c10906009906020840190612810565b5050565b6007546001600160a01b03163314610c3e5760405162461bcd60e51b8152600401610a0490612d99565b600f805460ff1916911515919091179055565b610b3c838383611cf1565b6000610c678361123f565b8210610cc05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a04565b600080549080805b83811015610d6a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d1b57805192505b876001600160a01b0316836001600160a01b03161415610d575786841415610d495750935061090192505050565b83610d5381612fbe565b9450505b5080610d6281612fbe565b915050610cc8565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a04565b6007546001600160a01b03163314610df45760405162461bcd60e51b8152600401610a0490612d99565b600f8054911515620100000262ff000019909216919091179055565b610b3c83838360405180602001604052806000815250611806565b60606000610e388361123f565b905060008167ffffffffffffffff811115610e5557610e5561302f565b604051908082528060200260200182016040528015610e7e578160200160208202803683370190505b5090506000805b8381108015610e965750600c548211155b15610f01576000610ea6836111fe565b9050866001600160a01b0316816001600160a01b03161415610eee5782848381518110610ed557610ed5613019565b602090810291909101015281610eea81612fbe565b9250505b82610ef881612fbe565b93505050610e85565b5090949350505050565b80600081118015610f1e5750600d548111155b610f3a5760405162461bcd60e51b8152600401610a0490612d6b565b600c5481600054610f4b9190612ede565b1115610f695760405162461bcd60e51b8152600401610a0490612e05565b33600090815260116020526040902054600f5460ff1615610f9c5760405162461bcd60e51b8152600401610a0490612dce565b600f5462010000900460ff16610fe85760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b6044820152606401610a04565b6012546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561102c57600080fd5b505afa158015611040573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110649190612bce565b116110a85760405162461bcd60e51b81526020600482015260146024820152733cb7ba9030b932903737ba1030903437b63232b960611b6044820152606401610a04565b600e546110b58483612ede565b11156111035760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a04565b82600b546111119190612f0a565b3410156111305760405162461bcd60e51b8152600401610a0490612e86565b336000908152601160205260408120805485929061114f908490612ede565b90915550610b3c90503384611cd7565b6000805482106111bd5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a04565b5090565b6007546001600160a01b031633146111eb5760405162461bcd60e51b8152600401610a0490612d99565b8051610c1090600a906020840190612810565b600061120982612038565b5192915050565b6007546001600160a01b0316331461123a5760405162461bcd60e51b8152600401610a0490612d99565b600c55565b60006001600160a01b0382166112ab5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a04565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146112fa5760405162461bcd60e51b8152600401610a0490612d99565b61130460006121e2565b565b6007546001600160a01b031633146113305760405162461bcd60e51b8152600401610a0490612d99565b8051610c10906008906020840190612810565b6007546001600160a01b0316331461136d5760405162461bcd60e51b8152600401610a0490612d99565b600b55565b60606002805461091690612f83565b806000811180156113945750600d548111155b6113b05760405162461bcd60e51b8152600401610a0490612d6b565b600c54816000546113c19190612ede565b11156113df5760405162461bcd60e51b8152600401610a0490612e05565b600f5460ff16156114025760405162461bcd60e51b8152600401610a0490612dce565b600f5462010000900460ff161561144b5760405162461bcd60e51b815260206004820152600d60248201526c283932b9b0b6329034b99037b760991b6044820152606401610a04565b81600b546114599190612f0a565b3410156114785760405162461bcd60e51b8152600401610a0490612e86565b610c103383611cd7565b6001600160a01b0382163314156114db5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a04565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a805461155490612f83565b80601f016020809104026020016040519081016040528092919081815260200182805461158090612f83565b80156115cd5780601f106115a2576101008083540402835291602001916115cd565b820191906000526020600020905b8154815290600101906020018083116115b057829003601f168201915b505050505081565b828260105461164c838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152859250603401905060405160208183030381529060405280519060200120612234565b6116985760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610a04565b33600090815260116020526040902054600f5460ff16156116cb5760405162461bcd60e51b8152600401610a0490612dce565b600f5462010000900460ff166117175760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b6044820152606401610a04565b600e546117248683612ede565b11156117725760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a04565b84600b546117809190612f0a565b34101561179f5760405162461bcd60e51b8152600401610a0490612e86565b33600090815260116020526040812080548792906117be908490612ede565b909155506117ce90503386611cd7565b50505050505050565b6007546001600160a01b031633146118015760405162461bcd60e51b8152600401610a0490612d99565b600d55565b611811848484611cf1565b61181d8484848461224a565b6118395760405162461bcd60e51b8152600401610a0490612e33565b50505050565b6007546001600160a01b031633146118695760405162461bcd60e51b8152600401610a0490612d99565b601055565b606061187b826000541190565b6118df5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a04565b600f54610100900460ff1661198057600a80546118fb90612f83565b80601f016020809104026020016040519081016040528092919081815260200182805461192790612f83565b80156119745780601f1061194957610100808354040283529160200191611974565b820191906000526020600020905b81548152906001019060200180831161195757829003601f168201915b50505050509050919050565b600061198a612358565b905060008151116119aa57604051806020016040528060008152506119d8565b806119b484612367565b60096040516020016119c893929190612c13565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314611a095760405162461bcd60e51b8152600401610a0490612d99565b600f80549115156101000261ff0019909216919091179055565b6007546001600160a01b03163314611a4d5760405162461bcd60e51b8152600401610a0490612d99565b600e55565b6007546001600160a01b03163314611a7c5760405162461bcd60e51b8152600401610a0490612d99565b6001600160a01b038116611ae15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a04565b611aea816121e2565b50565b6007546001600160a01b03163314611b175760405162461bcd60e51b8152600401610a0490612d99565b60135447906001600160a01b03166108fc6064611b35846014612f0a565b611b3f9190612ef6565b6040518115909202916000818181858888f19350505050611b5f57600080fd5b601480546001600160a01b0316906108fc90606490611b7f908590612f0a565b611b899190612ef6565b6040518115909202916000818181858888f19350505050611ba957600080fd5b6015546001600160a01b03166108fc6064611bc5846014612f0a565b611bcf9190612ef6565b6040518115909202916000818181858888f19350505050611bef57600080fd5b6016546001600160a01b03166108fc6064611c0b846014612f0a565b611c159190612ef6565b6040518115909202916000818181858888f19350505050611c3557600080fd5b6017546001600160a01b03166108fc6064611c51846014612f0a565b611c5b9190612ef6565b6040518115909202916000818181858888f19350505050611aea57600080fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610c10828260405180602001604052806000815250612465565b6000611cfc82612038565b80519091506000906001600160a01b0316336001600160a01b03161480611d33575033611d2884610999565b6001600160a01b0316145b80611d4557508151611d459033610837565b905080611daf5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a04565b846001600160a01b031682600001516001600160a01b031614611e235760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a04565b6001600160a01b038416611e875760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a04565b611e976000848460000151611c7b565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611f5c908590612ede565b6000818152600360205260409020549091506001600160a01b0316611fee57611f86816000541190565b15611fee5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152612057826000541190565b6120b65760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a04565b60007f00000000000000000000000000000000000000000000000000000000000000008310612117576121097f000000000000000000000000000000000000000000000000000000000000000084612f29565b612114906001612ede565b90505b825b818110612181576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561216e57949350505050565b508061217981612f6c565b915050612119565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a04565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082612241858461279c565b14949350505050565b60006001600160a01b0384163b1561234c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061228e903390899088908890600401612cd7565b602060405180830381600087803b1580156122a857600080fd5b505af19250505080156122d8575060408051601f3d908101601f191682019092526122d591810190612b68565b60015b612332573d808015612306576040519150601f19603f3d011682016040523d82523d6000602084013e61230b565b606091505b50805161232a5760405162461bcd60e51b8152600401610a0490612e33565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612350565b5060015b949350505050565b60606008805461091690612f83565b60608161238b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123b5578061239f81612fbe565b91506123ae9050600a83612ef6565b915061238f565b60008167ffffffffffffffff8111156123d0576123d061302f565b6040519080825280601f01601f1916602001820160405280156123fa576020820181803683370190505b5090505b84156123505761240f600183612f29565b915061241c600a86612fd9565b612427906030612ede565b60f81b81838151811061243c5761243c613019565b60200101906001600160f81b031916908160001a90535061245e600a86612ef6565b94506123fe565b6000546001600160a01b0384166124c85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a04565b6124d3816000541190565b156125205760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a04565b7f000000000000000000000000000000000000000000000000000000000000000083111561259b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a04565b600083116125f75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610a04565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612653908790612eb3565b6001600160801b031681526020018583602001516126719190612eb3565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156127915760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612755600088848861224a565b6127715760405162461bcd60e51b8152600401610a0490612e33565b8161277b81612fbe565b925050808061278990612fbe565b915050612708565b506000819055612030565b600081815b84518110156128085760008582815181106127be576127be613019565b602002602001015190508083116127e457600083815260208290526040902092506127f5565b600081815260208490526040902092505b508061280081612fbe565b9150506127a1565b509392505050565b82805461281c90612f83565b90600052602060002090601f01602090048101928261283e5760008555612884565b82601f1061285757805160ff1916838001178555612884565b82800160010185558215612884579182015b82811115612884578251825591602001919060010190612869565b506111bd9291505b808211156111bd576000815560010161288c565b600067ffffffffffffffff808411156128bb576128bb61302f565b604051601f8501601f19908116603f011681019082821181831017156128e3576128e361302f565b816040528093508581528686860111156128fc57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461292d57600080fd5b919050565b8035801515811461292d57600080fd5b60006020828403121561295457600080fd5b6119d882612916565b6000806040838503121561297057600080fd5b61297983612916565b915061298760208401612916565b90509250929050565b6000806000606084860312156129a557600080fd5b6129ae84612916565b92506129bc60208501612916565b9150604084013590509250925092565b600080600080608085870312156129e257600080fd5b6129eb85612916565b93506129f960208601612916565b925060408501359150606085013567ffffffffffffffff811115612a1c57600080fd5b8501601f81018713612a2d57600080fd5b612a3c878235602084016128a0565b91505092959194509250565b60008060408385031215612a5b57600080fd5b612a6483612916565b915061298760208401612932565b60008060408385031215612a8557600080fd5b612a8e83612916565b946020939093013593505050565b600080600060408486031215612ab157600080fd5b833567ffffffffffffffff80821115612ac957600080fd5b818601915086601f830112612add57600080fd5b813581811115612aec57600080fd5b8760208260051b8501011115612b0157600080fd5b6020928301989097509590910135949350505050565b600060208284031215612b2957600080fd5b6119d882612932565b600060208284031215612b4457600080fd5b5035919050565b600060208284031215612b5d57600080fd5b81356119d881613045565b600060208284031215612b7a57600080fd5b81516119d881613045565b600060208284031215612b9757600080fd5b813567ffffffffffffffff811115612bae57600080fd5b8201601f81018413612bbf57600080fd5b612350848235602084016128a0565b600060208284031215612be057600080fd5b5051919050565b60008151808452612bff816020860160208601612f40565b601f01601f19169290920160200192915050565b600084516020612c268285838a01612f40565b855191840191612c398184848a01612f40565b8554920191600090600181811c9080831680612c5657607f831692505b858310811415612c7457634e487b7160e01b85526022600452602485fd5b808015612c885760018114612c9957612cc6565b60ff19851688528388019550612cc6565b60008b81526020902060005b85811015612cbe5781548a820152908401908801612ca5565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d0a90830184612be7565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d4c57835183529284019291840191600101612d30565b50909695505050505050565b6020815260006119d86020830184612be7565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b60006001600160801b03808316818516808303821115612ed557612ed5612fed565b01949350505050565b60008219821115612ef157612ef1612fed565b500190565b600082612f0557612f05613003565b500490565b6000816000190483118215151615612f2457612f24612fed565b500290565b600082821015612f3b57612f3b612fed565b500390565b60005b83811015612f5b578181015183820152602001612f43565b838111156118395750506000910152565b600081612f7b57612f7b612fed565b506000190190565b600181811c90821680612f9757607f821691505b60208210811415612fb857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fd257612fd2612fed565b5060010190565b600082612fe857612fe8613003565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611aea57600080fdfea2646970667358221220bd9dd0271d65941520ebd7e67b8e5a2fcc6ee9f9ce8d140d9fd416274c035db664736f6c63430008070033697066733a2f2f516d5a5a7766517a793542485868613647713939486476755831593431416565434c46693656596439596f53534b
Deployed Bytecode
0x6080604052600436106102935760003560e01c806370a082311161015a578063a6d612f9116100c1578063d5abeb011161007a578063d5abeb01146107c6578063e0a80853146107dc578063e2dfc039146107fc578063e985e9c51461081c578063f2fde38b14610865578063f66c72811461088557600080fd5b8063a6d612f91461071d578063aa98e0c614610730578063b071401b14610746578063b88d4fde14610766578063bd32fb6614610786578063c87b56dd146107a657600080fd5b806395d89b411161011357806395d89b411461068a5780639c70b5121461069f578063a035b1fe146106bf578063a0712d68146106d5578063a22cb465146106e8578063a45ba8e71461070857600080fd5b806370a08231146105e1578063715018a6146106015780637ec4a659146106165780638da5cb5b1461063657806391b7f5ed1461065457806394354fd01461067457600080fd5b80632f745c59116101fe5780634f6ccce7116101b75780634f6ccce7146105285780634fdd43cb1461054857806351830227146105685780635c975abb146105875780636352211e146105a15780636f8b44b0146105c157600080fd5b80632f745c591461044b578063388960a71461046b5780633c952764146104a857806342842e0e146104c8578063438b6300146104e85780634b3ea9341461051557600080fd5b806316c38b3c1161025057806316c38b3c1461038957806318160ddd146103a957806318cae269146103c85780632063064e146103f557806323b872dd1461040b5780632cdf09ba1461042b57600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b3146103275780630c6beda21461034957806316ba10e014610369575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612b4b565b61089a565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610907565b6040516102c49190612d58565b3480156102fb57600080fd5b5061030f61030a366004612b32565b610999565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004612a72565b610a29565b005b34801561035557600080fd5b50610347610364366004612a72565b610b41565b34801561037557600080fd5b50610347610384366004612b85565b610bd3565b34801561039557600080fd5b506103476103a4366004612b17565b610c14565b3480156103b557600080fd5b506000545b6040519081526020016102c4565b3480156103d457600080fd5b506103ba6103e3366004612942565b60116020526000908152604090205481565b34801561040157600080fd5b506103ba600e5481565b34801561041757600080fd5b50610347610426366004612990565b610c51565b34801561043757600080fd5b5060125461030f906001600160a01b031681565b34801561045757600080fd5b506103ba610466366004612a72565b610c5c565b34801561047757600080fd5b50610347610486366004612942565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b3480156104b457600080fd5b506103476104c3366004612b17565b610dca565b3480156104d457600080fd5b506103476104e3366004612990565b610e10565b3480156104f457600080fd5b50610508610503366004612942565b610e2b565b6040516102c49190612d14565b610347610523366004612b32565b610f0b565b34801561053457600080fd5b506103ba610543366004612b32565b61115f565b34801561055457600080fd5b50610347610563366004612b85565b6111c1565b34801561057457600080fd5b50600f546102b890610100900460ff1681565b34801561059357600080fd5b50600f546102b89060ff1681565b3480156105ad57600080fd5b5061030f6105bc366004612b32565b6111fe565b3480156105cd57600080fd5b506103476105dc366004612b32565b611210565b3480156105ed57600080fd5b506103ba6105fc366004612942565b61123f565b34801561060d57600080fd5b506103476112d0565b34801561062257600080fd5b50610347610631366004612b85565b611306565b34801561064257600080fd5b506007546001600160a01b031661030f565b34801561066057600080fd5b5061034761066f366004612b32565b611343565b34801561068057600080fd5b506103ba600d5481565b34801561069657600080fd5b506102e2611372565b3480156106ab57600080fd5b50600f546102b89062010000900460ff1681565b3480156106cb57600080fd5b506103ba600b5481565b6103476106e3366004612b32565b611381565b3480156106f457600080fd5b50610347610703366004612a48565b611482565b34801561071457600080fd5b506102e2611547565b61034761072b366004612a9c565b6115d5565b34801561073c57600080fd5b506103ba60105481565b34801561075257600080fd5b50610347610761366004612b32565b6117d7565b34801561077257600080fd5b506103476107813660046129cc565b611806565b34801561079257600080fd5b506103476107a1366004612b32565b61183f565b3480156107b257600080fd5b506102e26107c1366004612b32565b61186e565b3480156107d257600080fd5b506103ba600c5481565b3480156107e857600080fd5b506103476107f7366004612b17565b6119df565b34801561080857600080fd5b50610347610817366004612b32565b611a23565b34801561082857600080fd5b506102b861083736600461295d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561087157600080fd5b50610347610880366004612942565b611a52565b34801561089157600080fd5b50610347611aed565b60006001600160e01b031982166380ac58cd60e01b14806108cb57506001600160e01b03198216635b5e139f60e01b145b806108e657506001600160e01b0319821663780e9d6360e01b145b8061090157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461091690612f83565b80601f016020809104026020016040519081016040528092919081815260200182805461094290612f83565b801561098f5780601f106109645761010080835404028352916020019161098f565b820191906000526020600020905b81548152906001019060200180831161097257829003601f168201915b5050505050905090565b60006109a6826000541190565b610a0d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a34826111fe565b9050806001600160a01b0316836001600160a01b03161415610aa35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a04565b336001600160a01b0382161480610abf5750610abf8133610837565b610b315760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a04565b610b3c838383611c7b565b505050565b80600081118015610b545750600d548111155b610b705760405162461bcd60e51b8152600401610a0490612d6b565b600c5481600054610b819190612ede565b1115610b9f5760405162461bcd60e51b8152600401610a0490612e05565b6007546001600160a01b03163314610bc95760405162461bcd60e51b8152600401610a0490612d99565b610b3c8383611cd7565b6007546001600160a01b03163314610bfd5760405162461bcd60e51b8152600401610a0490612d99565b8051610c10906009906020840190612810565b5050565b6007546001600160a01b03163314610c3e5760405162461bcd60e51b8152600401610a0490612d99565b600f805460ff1916911515919091179055565b610b3c838383611cf1565b6000610c678361123f565b8210610cc05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a04565b600080549080805b83811015610d6a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d1b57805192505b876001600160a01b0316836001600160a01b03161415610d575786841415610d495750935061090192505050565b83610d5381612fbe565b9450505b5080610d6281612fbe565b915050610cc8565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a04565b6007546001600160a01b03163314610df45760405162461bcd60e51b8152600401610a0490612d99565b600f8054911515620100000262ff000019909216919091179055565b610b3c83838360405180602001604052806000815250611806565b60606000610e388361123f565b905060008167ffffffffffffffff811115610e5557610e5561302f565b604051908082528060200260200182016040528015610e7e578160200160208202803683370190505b5090506000805b8381108015610e965750600c548211155b15610f01576000610ea6836111fe565b9050866001600160a01b0316816001600160a01b03161415610eee5782848381518110610ed557610ed5613019565b602090810291909101015281610eea81612fbe565b9250505b82610ef881612fbe565b93505050610e85565b5090949350505050565b80600081118015610f1e5750600d548111155b610f3a5760405162461bcd60e51b8152600401610a0490612d6b565b600c5481600054610f4b9190612ede565b1115610f695760405162461bcd60e51b8152600401610a0490612e05565b33600090815260116020526040902054600f5460ff1615610f9c5760405162461bcd60e51b8152600401610a0490612dce565b600f5462010000900460ff16610fe85760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b6044820152606401610a04565b6012546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561102c57600080fd5b505afa158015611040573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110649190612bce565b116110a85760405162461bcd60e51b81526020600482015260146024820152733cb7ba9030b932903737ba1030903437b63232b960611b6044820152606401610a04565b600e546110b58483612ede565b11156111035760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a04565b82600b546111119190612f0a565b3410156111305760405162461bcd60e51b8152600401610a0490612e86565b336000908152601160205260408120805485929061114f908490612ede565b90915550610b3c90503384611cd7565b6000805482106111bd5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a04565b5090565b6007546001600160a01b031633146111eb5760405162461bcd60e51b8152600401610a0490612d99565b8051610c1090600a906020840190612810565b600061120982612038565b5192915050565b6007546001600160a01b0316331461123a5760405162461bcd60e51b8152600401610a0490612d99565b600c55565b60006001600160a01b0382166112ab5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a04565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146112fa5760405162461bcd60e51b8152600401610a0490612d99565b61130460006121e2565b565b6007546001600160a01b031633146113305760405162461bcd60e51b8152600401610a0490612d99565b8051610c10906008906020840190612810565b6007546001600160a01b0316331461136d5760405162461bcd60e51b8152600401610a0490612d99565b600b55565b60606002805461091690612f83565b806000811180156113945750600d548111155b6113b05760405162461bcd60e51b8152600401610a0490612d6b565b600c54816000546113c19190612ede565b11156113df5760405162461bcd60e51b8152600401610a0490612e05565b600f5460ff16156114025760405162461bcd60e51b8152600401610a0490612dce565b600f5462010000900460ff161561144b5760405162461bcd60e51b815260206004820152600d60248201526c283932b9b0b6329034b99037b760991b6044820152606401610a04565b81600b546114599190612f0a565b3410156114785760405162461bcd60e51b8152600401610a0490612e86565b610c103383611cd7565b6001600160a01b0382163314156114db5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a04565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a805461155490612f83565b80601f016020809104026020016040519081016040528092919081815260200182805461158090612f83565b80156115cd5780601f106115a2576101008083540402835291602001916115cd565b820191906000526020600020905b8154815290600101906020018083116115b057829003601f168201915b505050505081565b828260105461164c838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152859250603401905060405160208183030381529060405280519060200120612234565b6116985760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610a04565b33600090815260116020526040902054600f5460ff16156116cb5760405162461bcd60e51b8152600401610a0490612dce565b600f5462010000900460ff166117175760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b6044820152606401610a04565b600e546117248683612ede565b11156117725760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a04565b84600b546117809190612f0a565b34101561179f5760405162461bcd60e51b8152600401610a0490612e86565b33600090815260116020526040812080548792906117be908490612ede565b909155506117ce90503386611cd7565b50505050505050565b6007546001600160a01b031633146118015760405162461bcd60e51b8152600401610a0490612d99565b600d55565b611811848484611cf1565b61181d8484848461224a565b6118395760405162461bcd60e51b8152600401610a0490612e33565b50505050565b6007546001600160a01b031633146118695760405162461bcd60e51b8152600401610a0490612d99565b601055565b606061187b826000541190565b6118df5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a04565b600f54610100900460ff1661198057600a80546118fb90612f83565b80601f016020809104026020016040519081016040528092919081815260200182805461192790612f83565b80156119745780601f1061194957610100808354040283529160200191611974565b820191906000526020600020905b81548152906001019060200180831161195757829003601f168201915b50505050509050919050565b600061198a612358565b905060008151116119aa57604051806020016040528060008152506119d8565b806119b484612367565b60096040516020016119c893929190612c13565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314611a095760405162461bcd60e51b8152600401610a0490612d99565b600f80549115156101000261ff0019909216919091179055565b6007546001600160a01b03163314611a4d5760405162461bcd60e51b8152600401610a0490612d99565b600e55565b6007546001600160a01b03163314611a7c5760405162461bcd60e51b8152600401610a0490612d99565b6001600160a01b038116611ae15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a04565b611aea816121e2565b50565b6007546001600160a01b03163314611b175760405162461bcd60e51b8152600401610a0490612d99565b60135447906001600160a01b03166108fc6064611b35846014612f0a565b611b3f9190612ef6565b6040518115909202916000818181858888f19350505050611b5f57600080fd5b601480546001600160a01b0316906108fc90606490611b7f908590612f0a565b611b899190612ef6565b6040518115909202916000818181858888f19350505050611ba957600080fd5b6015546001600160a01b03166108fc6064611bc5846014612f0a565b611bcf9190612ef6565b6040518115909202916000818181858888f19350505050611bef57600080fd5b6016546001600160a01b03166108fc6064611c0b846014612f0a565b611c159190612ef6565b6040518115909202916000818181858888f19350505050611c3557600080fd5b6017546001600160a01b03166108fc6064611c51846014612f0a565b611c5b9190612ef6565b6040518115909202916000818181858888f19350505050611aea57600080fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610c10828260405180602001604052806000815250612465565b6000611cfc82612038565b80519091506000906001600160a01b0316336001600160a01b03161480611d33575033611d2884610999565b6001600160a01b0316145b80611d4557508151611d459033610837565b905080611daf5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a04565b846001600160a01b031682600001516001600160a01b031614611e235760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a04565b6001600160a01b038416611e875760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a04565b611e976000848460000151611c7b565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611f5c908590612ede565b6000818152600360205260409020549091506001600160a01b0316611fee57611f86816000541190565b15611fee5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152612057826000541190565b6120b65760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a04565b60007f000000000000000000000000000000000000000000000000000000000000000a8310612117576121097f000000000000000000000000000000000000000000000000000000000000000a84612f29565b612114906001612ede565b90505b825b818110612181576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561216e57949350505050565b508061217981612f6c565b915050612119565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a04565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082612241858461279c565b14949350505050565b60006001600160a01b0384163b1561234c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061228e903390899088908890600401612cd7565b602060405180830381600087803b1580156122a857600080fd5b505af19250505080156122d8575060408051601f3d908101601f191682019092526122d591810190612b68565b60015b612332573d808015612306576040519150601f19603f3d011682016040523d82523d6000602084013e61230b565b606091505b50805161232a5760405162461bcd60e51b8152600401610a0490612e33565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612350565b5060015b949350505050565b60606008805461091690612f83565b60608161238b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123b5578061239f81612fbe565b91506123ae9050600a83612ef6565b915061238f565b60008167ffffffffffffffff8111156123d0576123d061302f565b6040519080825280601f01601f1916602001820160405280156123fa576020820181803683370190505b5090505b84156123505761240f600183612f29565b915061241c600a86612fd9565b612427906030612ede565b60f81b81838151811061243c5761243c613019565b60200101906001600160f81b031916908160001a90535061245e600a86612ef6565b94506123fe565b6000546001600160a01b0384166124c85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a04565b6124d3816000541190565b156125205760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a04565b7f000000000000000000000000000000000000000000000000000000000000000a83111561259b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a04565b600083116125f75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610a04565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612653908790612eb3565b6001600160801b031681526020018583602001516126719190612eb3565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156127915760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612755600088848861224a565b6127715760405162461bcd60e51b8152600401610a0490612e33565b8161277b81612fbe565b925050808061278990612fbe565b915050612708565b506000819055612030565b600081815b84518110156128085760008582815181106127be576127be613019565b602002602001015190508083116127e457600083815260208290526040902092506127f5565b600081815260208490526040902092505b508061280081612fbe565b9150506127a1565b509392505050565b82805461281c90612f83565b90600052602060002090601f01602090048101928261283e5760008555612884565b82601f1061285757805160ff1916838001178555612884565b82800160010185558215612884579182015b82811115612884578251825591602001919060010190612869565b506111bd9291505b808211156111bd576000815560010161288c565b600067ffffffffffffffff808411156128bb576128bb61302f565b604051601f8501601f19908116603f011681019082821181831017156128e3576128e361302f565b816040528093508581528686860111156128fc57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461292d57600080fd5b919050565b8035801515811461292d57600080fd5b60006020828403121561295457600080fd5b6119d882612916565b6000806040838503121561297057600080fd5b61297983612916565b915061298760208401612916565b90509250929050565b6000806000606084860312156129a557600080fd5b6129ae84612916565b92506129bc60208501612916565b9150604084013590509250925092565b600080600080608085870312156129e257600080fd5b6129eb85612916565b93506129f960208601612916565b925060408501359150606085013567ffffffffffffffff811115612a1c57600080fd5b8501601f81018713612a2d57600080fd5b612a3c878235602084016128a0565b91505092959194509250565b60008060408385031215612a5b57600080fd5b612a6483612916565b915061298760208401612932565b60008060408385031215612a8557600080fd5b612a8e83612916565b946020939093013593505050565b600080600060408486031215612ab157600080fd5b833567ffffffffffffffff80821115612ac957600080fd5b818601915086601f830112612add57600080fd5b813581811115612aec57600080fd5b8760208260051b8501011115612b0157600080fd5b6020928301989097509590910135949350505050565b600060208284031215612b2957600080fd5b6119d882612932565b600060208284031215612b4457600080fd5b5035919050565b600060208284031215612b5d57600080fd5b81356119d881613045565b600060208284031215612b7a57600080fd5b81516119d881613045565b600060208284031215612b9757600080fd5b813567ffffffffffffffff811115612bae57600080fd5b8201601f81018413612bbf57600080fd5b612350848235602084016128a0565b600060208284031215612be057600080fd5b5051919050565b60008151808452612bff816020860160208601612f40565b601f01601f19169290920160200192915050565b600084516020612c268285838a01612f40565b855191840191612c398184848a01612f40565b8554920191600090600181811c9080831680612c5657607f831692505b858310811415612c7457634e487b7160e01b85526022600452602485fd5b808015612c885760018114612c9957612cc6565b60ff19851688528388019550612cc6565b60008b81526020902060005b85811015612cbe5781548a820152908401908801612ca5565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d0a90830184612be7565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d4c57835183529284019291840191600101612d30565b50909695505050505050565b6020815260006119d86020830184612be7565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b60006001600160801b03808316818516808303821115612ed557612ed5612fed565b01949350505050565b60008219821115612ef157612ef1612fed565b500190565b600082612f0557612f05613003565b500490565b6000816000190483118215151615612f2457612f24612fed565b500290565b600082821015612f3b57612f3b612fed565b500390565b60005b83811015612f5b578181015183820152602001612f43565b838111156118395750506000910152565b600081612f7b57612f7b612fed565b506000190190565b600181811c90821680612f9757607f821691505b60208210811415612fb857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fd257612fd2612fed565b5060010190565b600082612fe857612fe8613003565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611aea57600080fdfea2646970667358221220bd9dd0271d65941520ebd7e67b8e5a2fcc6ee9f9ce8d140d9fd416274c035db664736f6c63430008070033
Deployed Bytecode Sourcemap
43742:6431:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31355:372;;;;;;;;;;-1:-1:-1;31355:372:0;;;;;:::i;:::-;;:::i;:::-;;;8899:14:1;;8892:22;8874:41;;8862:2;8847:18;31355:372:0;;;;;;;;33160:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34721:214::-;;;;;;;;;;-1:-1:-1;34721:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7560:32:1;;;7542:51;;7530:2;7515:18;34721:214:0;7396:203:1;34242:413:0;;;;;;;;;;-1:-1:-1;34242:413:0;;;;;:::i;:::-;;:::i;:::-;;46615:141;;;;;;;;;;-1:-1:-1;46615:141:0;;;;;:::i;:::-;;:::i;48751:100::-;;;;;;;;;;-1:-1:-1;48751:100:0;;;;;:::i;:::-;;:::i;48857:77::-;;;;;;;;;;-1:-1:-1;48857:77:0;;;;;:::i;:::-;;:::i;29796:100::-;;;;;;;;;;-1:-1:-1;29849:7:0;29876:12;29796:100;;;9072:25:1;;;9060:2;9045:18;29796:100:0;8926:177:1;44254:55:0;;;;;;;;;;-1:-1:-1;44254:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;44058:40;;;;;;;;;;;;;;;;35597:162;;;;;;;;;;-1:-1:-1;35597:162:0;;;;;:::i;:::-;;:::i;44316:22::-;;;;;;;;;;-1:-1:-1;44316:22:0;;;;-1:-1:-1;;;;;44316:22:0;;;30460:823;;;;;;;;;;-1:-1:-1;30460:823:0;;;;;:::i;:::-;;:::i;48302:85::-;;;;;;;;;;-1:-1:-1;48302:85:0;;;;;:::i;:::-;48354:7;:27;;-1:-1:-1;;;;;;48354:27:0;-1:-1:-1;;;;;48354:27:0;;;;;;;;;;48302:85;48115:95;;;;;;;;;;-1:-1:-1;48115:95:0;;;;;:::i;:::-;;:::i;35830:177::-;;;;;;;;;;-1:-1:-1;35830:177:0;;;;;:::i;:::-;;:::i;46765:635::-;;;;;;;;;;-1:-1:-1;46765:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45400:600::-;;;;;;:::i;:::-;;:::i;29973:187::-;;;;;;;;;;-1:-1:-1;29973:187:0;;;;;:::i;:::-;;:::i;48393:132::-;;;;;;;;;;-1:-1:-1;48393:132:0;;;;;:::i;:::-;;:::i;44140:28::-;;;;;;;;;;-1:-1:-1;44140:28:0;;;;;;;;;;;44110:25;;;;;;;;;;-1:-1:-1;44110:25:0;;;;;;;;32969:124;;;;;;;;;;-1:-1:-1;32969:124:0;;;;;:::i;:::-;;:::i;49320:96::-;;;;;;;;;;-1:-1:-1;49320:96:0;;;;;:::i;:::-;;:::i;31791:221::-;;;;;;;;;;-1:-1:-1;31791:221:0;;;;;:::i;:::-;;:::i;6731:103::-;;;;;;;;;;;;;:::i;48645:100::-;;;;;;;;;;-1:-1:-1;48645:100:0;;;;;:::i;:::-;;:::i;6080:87::-;;;;;;;;;;-1:-1:-1;6153:6:0;;-1:-1:-1;;;;;6153:6:0;6080:87;;48216:80;;;;;;;;;;-1:-1:-1;48216:80:0;;;;;:::i;:::-;;:::i;44014:38::-;;;;;;;;;;;;;;;;33329:104;;;;;;;;;;;;;:::i;44173:35::-;;;;;;;;;;-1:-1:-1;44173:35:0;;;;;;;;;;;43937:34;;;;;;;;;;;;;;;;45093:301;;;;;;:::i;:::-;;:::i;35007:288::-;;;;;;;;;;-1:-1:-1;35007:288:0;;;;;:::i;:::-;;:::i;43897:31::-;;;;;;;;;;;;;:::i;46006:601::-;;;;;;:::i;:::-;;:::i;44215:34::-;;;;;;;;;;;;;;;;49180:132;;;;;;;;;;-1:-1:-1;49180:132:0;;;;;:::i;:::-;;:::i;36078:355::-;;;;;;;;;;-1:-1:-1;36078:355:0;;;;;:::i;:::-;;:::i;47993:116::-;;;;;;;;;;-1:-1:-1;47993:116:0;;;;;:::i;:::-;;:::i;47406:494::-;;;;;;;;;;-1:-1:-1;47406:494:0;;;;;:::i;:::-;;:::i;43977:31::-;;;;;;;;;;;;;;;;47906:81;;;;;;;;;;-1:-1:-1;47906:81:0;;;;;:::i;:::-;;:::i;48531:108::-;;;;;;;;;;-1:-1:-1;48531:108:0;;;;;:::i;:::-;;:::i;35366:164::-;;;;;;;;;;-1:-1:-1;35366:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35487:25:0;;;35463:4;35487:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35366:164;6989:201;;;;;;;;;;-1:-1:-1;6989:201:0;;;;;:::i;:::-;;:::i;49761:409::-;;;;;;;;;;;;;:::i;31355:372::-;31457:4;-1:-1:-1;;;;;;31494:40:0;;-1:-1:-1;;;31494:40:0;;:105;;-1:-1:-1;;;;;;;31551:48:0;;-1:-1:-1;;;31551:48:0;31494:105;:172;;;-1:-1:-1;;;;;;;31616:50:0;;-1:-1:-1;;;31616:50:0;31494:172;:225;;;-1:-1:-1;;;;;;;;;;18621:40:0;;;31683:36;31474:245;31355:372;-1:-1:-1;;31355:372:0:o;33160:100::-;33214:13;33247:5;33240:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33160:100;:::o;34721:214::-;34789:7;34817:16;34825:7;36745:4;36779:12;-1:-1:-1;36769:22:0;36688:111;34817:16;34809:74;;;;-1:-1:-1;;;34809:74:0;;20206:2:1;34809:74:0;;;20188:21:1;20245:2;20225:18;;;20218:30;20284:34;20264:18;;;20257:62;-1:-1:-1;;;20335:18:1;;;20328:43;20388:19;;34809:74:0;;;;;;;;;-1:-1:-1;34903:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34903:24:0;;34721:214::o;34242:413::-;34315:13;34331:24;34347:7;34331:15;:24::i;:::-;34315:40;;34380:5;-1:-1:-1;;;;;34374:11:0;:2;-1:-1:-1;;;;;34374:11:0;;;34366:58;;;;-1:-1:-1;;;34366:58:0;;17039:2:1;34366:58:0;;;17021:21:1;17078:2;17058:18;;;17051:30;17117:34;17097:18;;;17090:62;-1:-1:-1;;;17168:18:1;;;17161:32;17210:19;;34366:58:0;16837:398:1;34366:58:0;4884:10;-1:-1:-1;;;;;34459:21:0;;;;:62;;-1:-1:-1;34484:37:0;34501:5;4884:10;35366:164;:::i;34484:37::-;34437:169;;;;-1:-1:-1;;;34437:169:0;;13200:2:1;34437:169:0;;;13182:21:1;13239:2;13219:18;;;13212:30;13278:34;13258:18;;;13251:62;13349:27;13329:18;;;13322:55;13394:19;;34437:169:0;12998:421:1;34437:169:0;34619:28;34628:2;34632:7;34641:5;34619:8;:28::i;:::-;34304:351;34242:413;;:::o;46615:141::-;46693:11;44929:1;44915:11;:15;:52;;;;;44949:18;;44934:11;:33;;44915:52;44907:85;;;;-1:-1:-1;;;44907:85:0;;;;;;;:::i;:::-;45037:9;;45022:11;45007:12;;:26;;;;:::i;:::-;:39;;44999:72;;;;-1:-1:-1;;;44999:72:0;;;;;;;:::i;:::-;6153:6;;-1:-1:-1;;;;;6153:6:0;4884:10;6300:23:::1;6292:68;;;;-1:-1:-1::0;;;6292:68:0::1;;;;;;;:::i;:::-;46723:27:::2;46733:3;46738:11;46723:9;:27::i;48751:100::-:0;6153:6;;-1:-1:-1;;;;;6153:6:0;4884:10;6300:23;6292:68;;;;-1:-1:-1;;;6292:68:0;;;;;;;:::i;:::-;48823:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48751:100:::0;:::o;48857:77::-;6153:6;;-1:-1:-1;;;;;6153:6:0;4884:10;6300:23;6292:68;;;;-1:-1:-1;;;6292:68:0;;;;;;;:::i;:::-;48913:6:::1;:15:::0;;-1:-1:-1;;48913:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48857:77::o;35597:162::-;35723:28;35733:4;35739:2;35743:7;35723:9;:28::i;30460:823::-;30549:7;30585:16;30595:5;30585:9;:16::i;:::-;30577:5;:24;30569:71;;;;-1:-1:-1;;;30569:71:0;;10104:2:1;30569:71:0;;;10086:21:1;10143:2;10123:18;;;10116:30;10182:34;10162:18;;;10155:62;-1:-1:-1;;;10233:18:1;;;10226:32;10275:19;;30569:71:0;9902:398:1;30569:71:0;30651:22;29876:12;;;30651:22;;30783:426;30807:14;30803:1;:18;30783:426;;;30843:31;30877:14;;;:11;:14;;;;;;;;;30843:48;;;;;;;;;-1:-1:-1;;;;;30843:48:0;;;;;-1:-1:-1;;;30843:48:0;;;;;;;;;;;;30910:28;30906:103;;30979:14;;;-1:-1:-1;30906:103:0;31048:5;-1:-1:-1;;;;;31027:26:0;:17;-1:-1:-1;;;;;31027:26:0;;31023:175;;;31093:5;31078:11;:20;31074:77;;;-1:-1:-1;31130:1:0;-1:-1:-1;31123:8:0;;-1:-1:-1;;;31123:8:0;31074:77;31169:13;;;;:::i;:::-;;;;31023:175;-1:-1:-1;30823:3:0;;;;:::i;:::-;;;;30783:426;;;-1:-1:-1;31219:56:0;;-1:-1:-1;;;31219:56:0;;19375:2:1;31219:56:0;;;19357:21:1;19414:2;19394:18;;;19387:30;19453:34;19433:18;;;19426:62;-1:-1:-1;;;19504:18:1;;;19497:44;19558:19;;31219:56:0;19173:410:1;48115:95:0;6153:6;;-1:-1:-1;;;;;6153:6:0;4884:10;6300:23;6292:68;;;;-1:-1:-1;;;6292:68:0;;;;;;;:::i;:::-;48180:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;48180:24:0;;::::1;::::0;;;::::1;::::0;;48115:95::o;35830:177::-;35960:39;35977:4;35983:2;35987:7;35960:39;;;;;;;;;;;;:16;:39::i;46765:635::-;46840:16;46868:23;46894:17;46904:6;46894:9;:17::i;:::-;46868:43;;46918:30;46965:15;46951:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46951:30:0;;46918:63;;46988:22;47021:23;47057:309;47082:15;47064;:33;:64;;;;;47119:9;;47101:14;:27;;47064:64;47057:309;;;47139:25;47167:23;47175:14;47167:7;:23::i;:::-;47139:51;;47226:6;-1:-1:-1;;;;;47205:27:0;:17;-1:-1:-1;;;;;47205:27:0;;47201:131;;;47278:14;47245:13;47259:15;47245:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;47305:17;;;;:::i;:::-;;;;47201:131;47342:16;;;;:::i;:::-;;;;47130:236;47057:309;;;-1:-1:-1;47381:13:0;;46765:635;-1:-1:-1;;;;46765:635:0:o;45400:600::-;45471:11;44929:1;44915:11;:15;:52;;;;;44949:18;;44934:11;:33;;44915:52;44907:85;;;;-1:-1:-1;;;44907:85:0;;;;;;;:::i;:::-;45037:9;;45022:11;45007:12;;:26;;;;:::i;:::-;:39;;44999:72;;;;-1:-1:-1;;;44999:72:0;;;;;;;:::i;:::-;45539:10:::1;45491:24;45518:32:::0;;;:20:::1;:32;::::0;;;;;45566:6:::1;::::0;::::1;;45565:7;45557:43;;;;-1:-1:-1::0;;;45557:43:0::1;;;;;;;:::i;:::-;45615:15;::::0;;;::::1;;;45607:45;;;::::0;-1:-1:-1;;;45607:45:0;;9758:2:1;45607:45:0::1;::::0;::::1;9740:21:1::0;9797:2;9777:18;;;9770:30;-1:-1:-1;;;9816:18:1;;;9809:47;9873:18;;45607:45:0::1;9556:341:1::0;45607:45:0::1;45667:7;::::0;:29:::1;::::0;-1:-1:-1;;;45667:29:0;;45685:10:::1;45667:29;::::0;::::1;7542:51:1::0;45699:1:0::1;::::0;-1:-1:-1;;;;;45667:7:0::1;::::0;:17:::1;::::0;7515:18:1;;45667:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;45659:67;;;::::0;-1:-1:-1;;;45659:67:0;;14787:2:1;45659:67:0::1;::::0;::::1;14769:21:1::0;14826:2;14806:18;;;14799:30;-1:-1:-1;;;14845:18:1;;;14838:50;14905:18;;45659:67:0::1;14585:344:1::0;45659:67:0::1;45775:20;::::0;45741:30:::1;45760:11:::0;45741:16;:30:::1;:::i;:::-;:54;;45733:95;;;::::0;-1:-1:-1;;;45733:95:0;;11674:2:1;45733:95:0::1;::::0;::::1;11656:21:1::0;11713:2;11693:18;;;11686:30;11752;11732:18;;;11725:58;11800:18;;45733:95:0::1;11472:352:1::0;45733:95:0::1;45864:11;45856:5;;:19;;;;:::i;:::-;45843:9;:32;;45835:64;;;;-1:-1:-1::0;;;45835:64:0::1;;;;;;;:::i;:::-;45929:10;45908:32;::::0;;;:20:::1;:32;::::0;;;;:45;;45942:11;;45908:32;:45:::1;::::0;45942:11;;45908:45:::1;:::i;:::-;::::0;;;-1:-1:-1;45960:34:0::1;::::0;-1:-1:-1;45970:10:0::1;45982:11:::0;45960:9:::1;:34::i;29973:187::-:0;30040:7;29876:12;;30068:5;:21;30060:69;;;;-1:-1:-1;;;30060:69:0;;12031:2:1;30060:69:0;;;12013:21:1;12070:2;12050:18;;;12043:30;12109:34;12089:18;;;12082:62;-1:-1:-1;;;12160:18:1;;;12153:33;12203:19;;30060:69:0;11829:399:1;30060:69:0;-1:-1:-1;30147:5:0;29973:187::o;48393:132::-;6153:6;;-1:-1:-1;;;;;6153:6:0;4884:10;6300:23;6292:68;;;;-1:-1:-1;;;6292:68:0;;;;;;;:::i;:::-;48481:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;32969:124::-:0;33033:7;33060:20;33072:7;33060:11;:20::i;:::-;:25;;32969:124;-1:-1:-1;;32969:124:0:o;49320:96::-;6153:6;;-1:-1:-1;;;;;6153:6:0;4884:10;6300:23;6292:68;;;;-1:-1:-1;;;6292:68:0;;;;;;;:::i;:::-;49386:9:::1;:22:::0;49320:96::o;31791:221::-;31855:7;-1:-1:-1;;;;;31883:19:0;;31875:75;;;;-1:-1:-1;;;31875:75:0;;13968:2:1;31875:75:0;;;13950:21:1;14007:2;13987:18;;;13980:30;14046:34;14026:18;;;14019:62;-1:-1:-1;;;14097:18:1;;;14090:41;14148:19;;31875:75:0;13766:407:1;31875:75:0;-1:-1:-1;;;;;;31976:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31976:27:0;;31791:221::o;6731:103::-;6153:6;;-1:-1:-1;;;;;6153:6:0;4884:10;6300:23;6292:68;;;;-1:-1:-1;;;6292:68:0;;;;;;;:::i;:::-;6796:30:::1;6823:1;6796:18;:30::i;:::-;6731:103::o:0;48645:100::-;6153:6;;-1:-1:-1;;;;;6153:6:0;4884:10;6300:23;6292:68;;;;-1:-1:-1;;;6292:68:0;;;;;;;:::i;:::-;48717:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;48216:80::-:0;6153:6;;-1:-1:-1;;;;;6153:6:0;4884:10;6300:23;6292:68;;;;-1:-1:-1;;;6292:68:0;;;;;;;:::i;:::-;48274:5:::1;:14:::0;48216:80::o;33329:104::-;33385:13;33418:7;33411:14;;;;;:::i;45093:301::-;45158:11;44929:1;44915:11;:15;:52;;;;;44949:18;;44934:11;:33;;44915:52;44907:85;;;;-1:-1:-1;;;44907:85:0;;;;;;;:::i;:::-;45037:9;;45022:11;45007:12;;:26;;;;:::i;:::-;:39;;44999:72;;;;-1:-1:-1;;;44999:72:0;;;;;;;:::i;:::-;45191:6:::1;::::0;::::1;;45190:7;45182:43;;;;-1:-1:-1::0;;;45182:43:0::1;;;;;;;:::i;:::-;45241:15;::::0;;;::::1;;;45240:16;45232:42;;;::::0;-1:-1:-1;;;45232:42:0;;13626:2:1;45232:42:0::1;::::0;::::1;13608:21:1::0;13665:2;13645:18;;;13638:30;-1:-1:-1;;;13684:18:1;;;13677:43;13737:18;;45232:42:0::1;13424:337:1::0;45232:42:0::1;45310:11;45302:5;;:19;;;;:::i;:::-;45289:9;:32;;45281:64;;;;-1:-1:-1::0;;;45281:64:0::1;;;;;;;:::i;:::-;45354:34;45364:10;45376:11;45354:9;:34::i;35007:288::-:0;-1:-1:-1;;;;;35102:24:0;;4884:10;35102:24;;35094:63;;;;-1:-1:-1;;;35094:63:0;;16265:2:1;35094:63:0;;;16247:21:1;16304:2;16284:18;;;16277:30;16343:28;16323:18;;;16316:56;16389:18;;35094:63:0;16063:350:1;35094:63:0;4884:10;35170:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35170:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35170:53:0;;;;;;;;;;35239:48;;8874:41:1;;;35170:42:0;;4884:10;35239:48;;8847:18:1;35239:48:0;;;;;;;35007:288;;:::o;43897:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46006:601::-;46116:11;;46129:19;;44657:128;44690:11;;44657:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44745:28:0;;-1:-1:-1;;44762:10:0;5779:2:1;5775:15;5771:53;44745:28:0;;;5759:66:1;44716:4:0;;-1:-1:-1;5841:12:1;;;-1:-1:-1;44745:28:0;;;;;;;;;;;;44735:39;;;;;;44657:18;:128::i;:::-;44639:196;;;;-1:-1:-1;;;44639:196:0;;12841:2:1;44639:196:0;;;12823:21:1;12880:2;12860:18;;;12853:30;12919:32;12899:18;;;12892:60;12969:18;;44639:196:0;12639:354:1;44639:196:0;46204:10:::1;46156:24;46183:32:::0;;;:20:::1;:32;::::0;;;;;46237:6:::1;::::0;::::1;;46236:7;46228:43;;;;-1:-1:-1::0;;;46228:43:0::1;;;;;;;:::i;:::-;46286:15;::::0;;;::::1;;;46278:45;;;::::0;-1:-1:-1;;;46278:45:0;;9758:2:1;46278:45:0::1;::::0;::::1;9740:21:1::0;9797:2;9777:18;;;9770:30;-1:-1:-1;;;9816:18:1;;;9809:47;9873:18;;46278:45:0::1;9556:341:1::0;46278:45:0::1;46372:20;::::0;46338:30:::1;46357:11:::0;46338:16;:30:::1;:::i;:::-;:54;;46330:95;;;::::0;-1:-1:-1;;;46330:95:0;;11674:2:1;46330:95:0::1;::::0;::::1;11656:21:1::0;11713:2;11693:18;;;11686:30;11752;11732:18;;;11725:58;11800:18;;46330:95:0::1;11472:352:1::0;46330:95:0::1;46461:11;46453:5;;:19;;;;:::i;:::-;46440:9;:32;;46432:64;;;;-1:-1:-1::0;;;46432:64:0::1;;;;;;;:::i;:::-;46530:10;46509:32;::::0;;;:20:::1;:32;::::0;;;;:45;;46543:11;;46509:32;:45:::1;::::0;46543:11;;46509:45:::1;:::i;:::-;::::0;;;-1:-1:-1;46567:34:0::1;::::0;-1:-1:-1;46577:10:0::1;46589:11:::0;46567:9:::1;:34::i;:::-;46149:458;46006:601:::0;;;;;;:::o;49180:132::-;6153:6;;-1:-1:-1;;;;;6153:6:0;4884:10;6300:23;6292:68;;;;-1:-1:-1;;;6292:68:0;;;;;;;:::i;:::-;49264:18:::1;:40:::0;49180:132::o;36078:355::-;36237:28;36247:4;36253:2;36257:7;36237:9;:28::i;:::-;36298:48;36321:4;36327:2;36331:7;36340:5;36298:22;:48::i;:::-;36276:149;;;;-1:-1:-1;;;36276:149:0;;;;;;;:::i;:::-;36078:355;;;;:::o;47993:116::-;6153:6;;-1:-1:-1;;;;;6153:6:0;4884:10;6300:23;6292:68;;;;-1:-1:-1;;;6292:68:0;;;;;;;:::i;:::-;48071:19:::1;:32:::0;47993:116::o;47406:494::-;47505:13;47546:17;47554:8;36745:4;36779:12;-1:-1:-1;36769:22:0;36688:111;47546:17;47530:98;;;;-1:-1:-1;;;47530:98:0;;15849:2:1;47530:98:0;;;15831:21:1;15888:2;15868:18;;;15861:30;15927:34;15907:18;;;15900:62;-1:-1:-1;;;15978:18:1;;;15971:45;16033:19;;47530:98:0;15647:411:1;47530:98:0;47641:8;;;;;;;47637:64;;47676:17;47669:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47406:494;;;:::o;47637:64::-;47709:28;47740:10;:8;:10::i;:::-;47709:41;;47795:1;47770:14;47764:28;:32;:130;;;;;;;;;;;;;;;;;47832:14;47848:19;:8;:17;:19::i;:::-;47869:9;47815:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47764:130;47757:137;47406:494;-1:-1:-1;;;47406:494:0:o;47906:81::-;6153:6;;-1:-1:-1;;;;;6153:6:0;4884:10;6300:23;6292:68;;;;-1:-1:-1;;;6292:68:0;;;;;;;:::i;:::-;47964:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;47964:17:0;;::::1;::::0;;;::::1;::::0;;47906:81::o;48531:108::-;6153:6;;-1:-1:-1;;;;;6153:6:0;4884:10;6300:23;6292:68;;;;-1:-1:-1;;;6292:68:0;;;;;;;:::i;:::-;48604:20:::1;:29:::0;48531:108::o;6989:201::-;6153:6;;-1:-1:-1;;;;;6153:6:0;4884:10;6300:23;6292:68;;;;-1:-1:-1;;;6292:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7078:22:0;::::1;7070:73;;;::::0;-1:-1:-1;;;7070:73:0;;10507:2:1;7070:73:0::1;::::0;::::1;10489:21:1::0;10546:2;10526:18;;;10519:30;10585:34;10565:18;;;10558:62;-1:-1:-1;;;10636:18:1;;;10629:36;10682:19;;7070:73:0::1;10305:402:1::0;7070:73:0::1;7154:28;7173:8;7154:18;:28::i;:::-;6989:201:::0;:::o;49761:409::-;6153:6;;-1:-1:-1;;;;;6153:6:0;4884:10;6300:23;6292:68;;;;-1:-1:-1;;;6292:68:0;;;;;;;:::i;:::-;49891:2:::1;::::0;49831:21:::1;::::0;-1:-1:-1;;;;;49891:2:0::1;49883:38;49916:3;49900:13;49831:21:::0;49911:2:::1;49900:13;:::i;:::-;:19;;;;:::i;:::-;49883:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;49875:47;;;::::0;::::1;;49949:2;::::0;;-1:-1:-1;;;;;49949:2:0::1;::::0;49941:38:::1;::::0;49974:3:::1;::::0;49958:13:::1;::::0;:8;;:13:::1;:::i;:::-;:19;;;;:::i;:::-;49941:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;49933:47;;;::::0;::::1;;50007:2;::::0;-1:-1:-1;;;;;50007:2:0::1;49999:38;50032:3;50016:13;:8:::0;50027:2:::1;50016:13;:::i;:::-;:19;;;;:::i;:::-;49999:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;49991:47;;;::::0;::::1;;50065:2;::::0;-1:-1:-1;;;;;50065:2:0::1;50057:38;50090:3;50074:13;:8:::0;50085:2:::1;50074:13;:::i;:::-;:19;;;;:::i;:::-;50057:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;50049:47;;;::::0;::::1;;50123:2;::::0;-1:-1:-1;;;;;50123:2:0::1;50115:38;50148:3;50132:13;:8:::0;50143:2:::1;50132:13;:::i;:::-;:19;;;;:::i;:::-;50115:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;50107:47;;;::::0;::::1;40814:196:::0;40929:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40929:29:0;-1:-1:-1;;;;;40929:29:0;;;;;;;;;40974:28;;40929:24;;40974:28;;;;;;;40814:196;;;:::o;36807:104::-;36876:27;36886:2;36890:8;36876:27;;;;;;;;;;;;:9;:27::i;38913:1783::-;39028:35;39066:20;39078:7;39066:11;:20::i;:::-;39141:18;;39028:58;;-1:-1:-1;39099:22:0;;-1:-1:-1;;;;;39125:34:0;4884:10;-1:-1:-1;;;;;39125:34:0;;:87;;;-1:-1:-1;4884:10:0;39176:20;39188:7;39176:11;:20::i;:::-;-1:-1:-1;;;;;39176:36:0;;39125:87;:154;;;-1:-1:-1;39246:18:0;;39229:50;;4884:10;35366:164;:::i;39229:50::-;39099:181;;39301:17;39293:80;;;;-1:-1:-1;;;39293:80:0;;16620:2:1;39293:80:0;;;16602:21:1;16659:2;16639:18;;;16632:30;16698:34;16678:18;;;16671:62;-1:-1:-1;;;16749:18:1;;;16742:48;16807:19;;39293:80:0;16418:414:1;39293:80:0;39416:4;-1:-1:-1;;;;;39394:26:0;:13;:18;;;-1:-1:-1;;;;;39394:26:0;;39386:77;;;;-1:-1:-1;;;39386:77:0;;14380:2:1;39386:77:0;;;14362:21:1;14419:2;14399:18;;;14392:30;14458:34;14438:18;;;14431:62;-1:-1:-1;;;14509:18:1;;;14502:36;14555:19;;39386:77:0;14178:402:1;39386:77:0;-1:-1:-1;;;;;39482:16:0;;39474:66;;;;-1:-1:-1;;;39474:66:0;;12435:2:1;39474:66:0;;;12417:21:1;12474:2;12454:18;;;12447:30;12513:34;12493:18;;;12486:62;-1:-1:-1;;;12564:18:1;;;12557:35;12609:19;;39474:66:0;12233:401:1;39474:66:0;39661:49;39678:1;39682:7;39691:13;:18;;;39661:8;:49::i;:::-;-1:-1:-1;;;;;39915:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39915:31:0;;;-1:-1:-1;;;;;39915:31:0;;;-1:-1:-1;;39915:31:0;;;;;;;39961:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39961:29:0;;;;;;;;;;;;;40037:43;;;;;;;;;;40063:15;40037:43;;;;;;;;;;40014:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;40014:66:0;;;;;;;-1:-1:-1;;;40014:66:0;;;;;;;;;;;;39915:18;40342:11;;40014:20;;40342:11;:::i;:::-;40409:1;40368:24;;;:11;:24;;;;;:29;40320:33;;-1:-1:-1;;;;;;40368:29:0;40364:227;;40432:20;40440:11;36745:4;36779:12;-1:-1:-1;36769:22:0;36688:111;40432:20;40428:152;;;40500:64;;;;;;;;40515:18;;-1:-1:-1;;;;;40500:64:0;;;;;;40535:28;;;;40500:64;;;;;;;;;;-1:-1:-1;40473:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;40473:91:0;-1:-1:-1;;;;;;40473:91:0;;;;;;;;;;;;40428:152;40627:7;40623:2;-1:-1:-1;;;;;40608:27:0;40617:4;-1:-1:-1;;;;;40608:27:0;;;;;;;;;;;40646:42;39017:1679;;;38913:1783;;;:::o;32257:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;32360:16:0;32368:7;36745:4;36779:12;-1:-1:-1;36769:22:0;36688:111;32360:16;32352:71;;;;-1:-1:-1;;;32352:71:0;;10914:2:1;32352:71:0;;;10896:21:1;10953:2;10933:18;;;10926:30;10992:34;10972:18;;;10965:62;-1:-1:-1;;;11043:18:1;;;11036:40;11093:19;;32352:71:0;10712:406:1;32352:71:0;32436:26;32488:12;32477:7;:23;32473:103;;32538:22;32548:12;32538:7;:22;:::i;:::-;:26;;32563:1;32538:26;:::i;:::-;32517:47;;32473:103;32608:7;32588:242;32625:18;32617:4;:26;32588:242;;32668:31;32702:17;;;:11;:17;;;;;;;;;32668:51;;;;;;;;;-1:-1:-1;;;;;32668:51:0;;;;;-1:-1:-1;;;32668:51:0;;;;;;;;;;;;32738:28;32734:85;;32794:9;32257:650;-1:-1:-1;;;;32257:650:0:o;32734:85::-;-1:-1:-1;32645:6:0;;;;:::i;:::-;;;;32588:242;;;-1:-1:-1;32842:57:0;;-1:-1:-1;;;32842:57:0;;19790:2:1;32842:57:0;;;19772:21:1;19829:2;19809:18;;;19802:30;19868:34;19848:18;;;19841:62;-1:-1:-1;;;19919:18:1;;;19912:45;19974:19;;32842:57:0;19588:411:1;7350:191:0;7443:6;;;-1:-1:-1;;;;;7460:17:0;;;-1:-1:-1;;;;;;7460:17:0;;;;;;;7493:40;;7443:6;;;7460:17;7443:6;;7493:40;;7424:16;;7493:40;7413:128;7350:191;:::o;26251:190::-;26376:4;26429;26400:25;26413:5;26420:4;26400:12;:25::i;:::-;:33;;26251:190;-1:-1:-1;;;;26251:190:0:o;41575:804::-;41730:4;-1:-1:-1;;;;;41751:13:0;;8691:20;8739:8;41747:625;;41787:72;;-1:-1:-1;;;41787:72:0;;-1:-1:-1;;;;;41787:36:0;;;;;:72;;4884:10;;41838:4;;41844:7;;41853:5;;41787:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41787:72:0;;;;;;;;-1:-1:-1;;41787:72:0;;;;;;;;;;;;:::i;:::-;;;41783:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42033:13:0;;42029:273;;42076:61;;-1:-1:-1;;;42076:61:0;;;;;;;:::i;42029:273::-;42252:6;42246:13;42237:6;42233:2;42229:15;42222:38;41783:534;-1:-1:-1;;;;;;41910:55:0;-1:-1:-1;;;41910:55:0;;-1:-1:-1;41903:62:0;;41747:625;-1:-1:-1;42356:4:0;41747:625;41575:804;;;;;;:::o;49062:110::-;49122:13;49151:9;49144:16;;;;;:::i;2366:723::-;2422:13;2643:10;2639:53;;-1:-1:-1;;2670:10:0;;;;;;;;;;;;-1:-1:-1;;;2670:10:0;;;;;2366:723::o;2639:53::-;2717:5;2702:12;2758:78;2765:9;;2758:78;;2791:8;;;;:::i;:::-;;-1:-1:-1;2814:10:0;;-1:-1:-1;2822:2:0;2814:10;;:::i;:::-;;;2758:78;;;2846:19;2878:6;2868:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2868:17:0;;2846:39;;2896:154;2903:10;;2896:154;;2930:11;2940:1;2930:11;;:::i;:::-;;-1:-1:-1;2999:10:0;3007:2;2999:5;:10;:::i;:::-;2986:24;;:2;:24;:::i;:::-;2973:39;;2956:6;2963;2956:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2956:56:0;;;;;;;;-1:-1:-1;3027:11:0;3036:2;3027:11;;:::i;:::-;;;2896:154;;37188:1471;37311:20;37334:12;-1:-1:-1;;;;;37365:16:0;;37357:62;;;;-1:-1:-1;;;37357:62:0;;18973:2:1;37357:62:0;;;18955:21:1;19012:2;18992:18;;;18985:30;19051:34;19031:18;;;19024:62;-1:-1:-1;;;19102:18:1;;;19095:31;19143:19;;37357:62:0;18771:397:1;37357:62:0;37564:21;37572:12;36745:4;36779:12;-1:-1:-1;36769:22:0;36688:111;37564:21;37563:22;37555:64;;;;-1:-1:-1;;;37555:64:0;;18615:2:1;37555:64:0;;;18597:21:1;18654:2;18634:18;;;18627:30;18693:31;18673:18;;;18666:59;18742:18;;37555:64:0;18413:353:1;37555:64:0;37650:12;37638:8;:24;;37630:71;;;;-1:-1:-1;;;37630:71:0;;20620:2:1;37630:71:0;;;20602:21:1;20659:2;20639:18;;;20632:30;20698:34;20678:18;;;20671:62;-1:-1:-1;;;20749:18:1;;;20742:32;20791:19;;37630:71:0;20418:398:1;37630:71:0;37731:1;37720:8;:12;37712:60;;;;-1:-1:-1;;;37712:60:0;;17791:2:1;37712:60:0;;;17773:21:1;17830:2;17810:18;;;17803:30;17869:34;17849:18;;;17842:62;-1:-1:-1;;;17920:18:1;;;17913:33;17963:19;;37712:60:0;17589:399:1;37712:60:0;-1:-1:-1;;;;;37892:16:0;;37859:30;37892:16;;;:12;:16;;;;;;;;;37859:49;;;;;;;;;-1:-1:-1;;;;;37859:49:0;;;;;-1:-1:-1;;;37859:49:0;;;;;;;;;;;37938:135;;;;;;;;37964:19;;37859:49;;37938:135;;;37964:39;;37994:8;;37964:39;:::i;:::-;-1:-1:-1;;;;;37938:135:0;;;;;38053:8;38018:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;37938:135:0;;;;;;-1:-1:-1;;;;;37919:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;37919:154:0;;;;;;;;;;;;38112:43;;;;;;;;;;;38138:15;38112:43;;;;;;;;38084:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;38084:71:0;-1:-1:-1;;;;;;38084:71:0;;;;;;;;;;;;;;;;;;38096:12;;38216:325;38240:8;38236:1;:12;38216:325;;;38275:38;;38300:12;;-1:-1:-1;;;;;38275:38:0;;;38292:1;;38275:38;;38292:1;;38275:38;38354:59;38385:1;38389:2;38393:12;38407:5;38354:22;:59::i;:::-;38328:172;;;;-1:-1:-1;;;38328:172:0;;;;;;;:::i;:::-;38515:14;;;;:::i;:::-;;;;38250:3;;;;;:::i;:::-;;;;38216:325;;;-1:-1:-1;38553:12:0;:27;;;38591:60;36078:355;26803:675;26886:7;26929:4;26886:7;26944:497;26968:5;:12;26964:1;:16;26944:497;;;27002:20;27025:5;27031:1;27025:8;;;;;;;;:::i;:::-;;;;;;;27002:31;;27068:12;27052;:28;27048:382;;27554:13;27604:15;;;27640:4;27633:15;;;27687:4;27671:21;;27180:57;;27048:382;;;27554:13;27604:15;;;27640:4;27633:15;;;27687:4;27671:21;;27357:57;;27048:382;-1:-1:-1;26982:3:0;;;;:::i;:::-;;;;26944:497;;;-1:-1:-1;27458:12:0;26803:675;-1:-1:-1;;;26803:675:0:o;-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:689::-;3066:6;3074;3082;3135:2;3123:9;3114:7;3110:23;3106:32;3103:52;;;3151:1;3148;3141:12;3103:52;3191:9;3178:23;3220:18;3261:2;3253:6;3250:14;3247:34;;;3277:1;3274;3267:12;3247:34;3315:6;3304:9;3300:22;3290:32;;3360:7;3353:4;3349:2;3345:13;3341:27;3331:55;;3382:1;3379;3372:12;3331:55;3422:2;3409:16;3448:2;3440:6;3437:14;3434:34;;;3464:1;3461;3454:12;3434:34;3519:7;3512:4;3502:6;3499:1;3495:14;3491:2;3487:23;3483:34;3480:47;3477:67;;;3540:1;3537;3530:12;3477:67;3571:4;3563:13;;;;3595:6;;-1:-1:-1;3633:20:1;;;;3620:34;;2971:689;-1:-1:-1;;;;2971:689:1:o;3665:180::-;3721:6;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:26;3829:9;3813:26;:::i;3850:180::-;3909:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:52;;;3978:1;3975;3968:12;3930:52;-1:-1:-1;4001:23:1;;3850:180;-1:-1:-1;3850:180:1:o;4035:245::-;4093:6;4146:2;4134:9;4125:7;4121:23;4117:32;4114:52;;;4162:1;4159;4152:12;4114:52;4201:9;4188:23;4220:30;4244:5;4220:30;:::i;4285:249::-;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4455:9;4449:16;4474:30;4498:5;4474:30;:::i;4539:450::-;4608:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:52;;;4677:1;4674;4667:12;4629:52;4717:9;4704:23;4750:18;4742:6;4739:30;4736:50;;;4782:1;4779;4772:12;4736:50;4805:22;;4858:4;4850:13;;4846:27;-1:-1:-1;4836:55:1;;4887:1;4884;4877:12;4836:55;4910:73;4975:7;4970:2;4957:16;4952:2;4948;4944:11;4910:73;:::i;5179:184::-;5249:6;5302:2;5290:9;5281:7;5277:23;5273:32;5270:52;;;5318:1;5315;5308:12;5270:52;-1:-1:-1;5341:16:1;;5179:184;-1:-1:-1;5179:184:1:o;5368:257::-;5409:3;5447:5;5441:12;5474:6;5469:3;5462:19;5490:63;5546:6;5539:4;5534:3;5530:14;5523:4;5516:5;5512:16;5490:63;:::i;:::-;5607:2;5586:15;-1:-1:-1;;5582:29:1;5573:39;;;;5614:4;5569:50;;5368:257;-1:-1:-1;;5368:257:1:o;5864:1527::-;6088:3;6126:6;6120:13;6152:4;6165:51;6209:6;6204:3;6199:2;6191:6;6187:15;6165:51;:::i;:::-;6279:13;;6238:16;;;;6301:55;6279:13;6238:16;6323:15;;;6301:55;:::i;:::-;6445:13;;6378:20;;;6418:1;;6505;6527:18;;;;6580;;;;6607:93;;6685:4;6675:8;6671:19;6659:31;;6607:93;6748:2;6738:8;6735:16;6715:18;6712:40;6709:167;;;-1:-1:-1;;;6775:33:1;;6831:4;6828:1;6821:15;6861:4;6782:3;6849:17;6709:167;6892:18;6919:110;;;;7043:1;7038:328;;;;6885:481;;6919:110;-1:-1:-1;;6954:24:1;;6940:39;;6999:20;;;;-1:-1:-1;6919:110:1;;7038:328;21424:1;21417:14;;;21461:4;21448:18;;7133:1;7147:169;7161:8;7158:1;7155:15;7147:169;;;7243:14;;7228:13;;;7221:37;7286:16;;;;7178:10;;7147:169;;;7151:3;;7347:8;7340:5;7336:20;7329:27;;6885:481;-1:-1:-1;7382:3:1;;5864:1527;-1:-1:-1;;;;;;;;;;;5864:1527:1:o;7604:488::-;-1:-1:-1;;;;;7873:15:1;;;7855:34;;7925:15;;7920:2;7905:18;;7898:43;7972:2;7957:18;;7950:34;;;8020:3;8015:2;8000:18;;7993:31;;;7798:4;;8041:45;;8066:19;;8058:6;8041:45;:::i;:::-;8033:53;7604:488;-1:-1:-1;;;;;;7604:488:1:o;8097:632::-;8268:2;8320:21;;;8390:13;;8293:18;;;8412:22;;;8239:4;;8268:2;8491:15;;;;8465:2;8450:18;;;8239:4;8534:169;8548:6;8545:1;8542:13;8534:169;;;8609:13;;8597:26;;8678:15;;;;8643:12;;;;8570:1;8563:9;8534:169;;;-1:-1:-1;8720:3:1;;8097:632;-1:-1:-1;;;;;;8097:632:1:o;9332:219::-;9481:2;9470:9;9463:21;9444:4;9501:44;9541:2;9530:9;9526:18;9518:6;9501:44;:::i;11123:344::-;11325:2;11307:21;;;11364:2;11344:18;;;11337:30;-1:-1:-1;;;11398:2:1;11383:18;;11376:50;11458:2;11443:18;;11123:344::o;14934:356::-;15136:2;15118:21;;;15155:18;;;15148:30;15214:34;15209:2;15194:18;;15187:62;15281:2;15266:18;;14934:356::o;15295:347::-;15497:2;15479:21;;;15536:2;15516:18;;;15509:30;15575:25;15570:2;15555:18;;15548:53;15633:2;15618:18;;15295:347::o;17240:344::-;17442:2;17424:21;;;17481:2;17461:18;;;17454:30;-1:-1:-1;;;17515:2:1;17500:18;;17493:50;17575:2;17560:18;;17240:344::o;17993:415::-;18195:2;18177:21;;;18234:2;18214:18;;;18207:30;18273:34;18268:2;18253:18;;18246:62;-1:-1:-1;;;18339:2:1;18324:18;;18317:49;18398:3;18383:19;;17993:415::o;20821:343::-;21023:2;21005:21;;;21062:2;21042:18;;;21035:30;-1:-1:-1;;;21096:2:1;21081:18;;21074:49;21155:2;21140:18;;20821:343::o;21477:253::-;21517:3;-1:-1:-1;;;;;21606:2:1;21603:1;21599:10;21636:2;21633:1;21629:10;21667:3;21663:2;21659:12;21654:3;21651:21;21648:47;;;21675:18;;:::i;:::-;21711:13;;21477:253;-1:-1:-1;;;;21477:253:1:o;21735:128::-;21775:3;21806:1;21802:6;21799:1;21796:13;21793:39;;;21812:18;;:::i;:::-;-1:-1:-1;21848:9:1;;21735:128::o;21868:120::-;21908:1;21934;21924:35;;21939:18;;:::i;:::-;-1:-1:-1;21973:9:1;;21868:120::o;21993:168::-;22033:7;22099:1;22095;22091:6;22087:14;22084:1;22081:21;22076:1;22069:9;22062:17;22058:45;22055:71;;;22106:18;;:::i;:::-;-1:-1:-1;22146:9:1;;21993:168::o;22166:125::-;22206:4;22234:1;22231;22228:8;22225:34;;;22239:18;;:::i;:::-;-1:-1:-1;22276:9:1;;22166:125::o;22296:258::-;22368:1;22378:113;22392:6;22389:1;22386:13;22378:113;;;22468:11;;;22462:18;22449:11;;;22442:39;22414:2;22407:10;22378:113;;;22509:6;22506:1;22503:13;22500:48;;;-1:-1:-1;;22544:1:1;22526:16;;22519:27;22296:258::o;22559:136::-;22598:3;22626:5;22616:39;;22635:18;;:::i;:::-;-1:-1:-1;;;22671:18:1;;22559:136::o;22700:380::-;22779:1;22775:12;;;;22822;;;22843:61;;22897:4;22889:6;22885:17;22875:27;;22843:61;22950:2;22942:6;22939:14;22919:18;22916:38;22913:161;;;22996:10;22991:3;22987:20;22984:1;22977:31;23031:4;23028:1;23021:15;23059:4;23056:1;23049:15;22913:161;;22700:380;;;:::o;23085:135::-;23124:3;-1:-1:-1;;23145:17:1;;23142:43;;;23165:18;;:::i;:::-;-1:-1:-1;23212:1:1;23201:13;;23085:135::o;23225:112::-;23257:1;23283;23273:35;;23288:18;;:::i;:::-;-1:-1:-1;23322:9:1;;23225:112::o;23342:127::-;23403:10;23398:3;23394:20;23391:1;23384:31;23434:4;23431:1;23424:15;23458:4;23455:1;23448:15;23474:127;23535:10;23530:3;23526:20;23523:1;23516:31;23566:4;23563:1;23556:15;23590:4;23587:1;23580:15;23606:127;23667:10;23662:3;23658:20;23655:1;23648:31;23698:4;23695:1;23688:15;23722:4;23719:1;23712:15;23738:127;23799:10;23794:3;23790:20;23787:1;23780:31;23830:4;23827:1;23820:15;23854:4;23851:1;23844:15;23870:131;-1:-1:-1;;;;;;23944:32:1;;23934:43;;23924:71;;23991:1;23988;23981:12
Swarm Source
ipfs://bd9dd0271d65941520ebd7e67b8e5a2fcc6ee9f9ce8d140d9fd416274c035db6
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.