ERC-721
Overview
Max Total Supply
1,111 SommerDAO
Holders
479
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 SommerDAOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SommerRayDAO
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-18 */ // SPDX-License-Identifier: MIT 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); } } /** * @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); } } } } /** * @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); } /** * @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); } /** * @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; } } /** * @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; } /** * @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); } /** * @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); } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @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; } } /** * @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..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ 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 private currentIndex = 0; uint256 internal collectionSize; uint256 internal 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) private _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. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See maxBatchSize Functionality.. */ function changeMaxBatchSize(uint256 newBatch) public{ maxBatchSize = newBatch; } function changeCollectionSize(uint256 newCollectionSize) public{ collectionSize = newCollectionSize; } /** * @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(collectionSize). 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: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `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"); _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); _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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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 {} } /** * @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); } } contract SommerRayDAO is Ownable, ERC721A, ReentrancyGuard { constructor( uint256 maxBatchSize_, uint256 collectionSize_, uint256 amountForAuctionAndDev_ ) ERC721A("SommerRayDAO", "SommerDAO", maxBatchSize_, collectionSize_) { require(amountForAuctionAndDev_ <= collectionSize_, "larger collection size needed" ); } uint256 pricePer = 0.01 ether; uint256 totalCost; address private constant MIKE = 0xc5376f2831D28CB20707A0F015146a9D219bEfDA; address private constant FUEGO = 0x9E862Ce07c0e47f7a7601aaC69b74aeE87699f53; address private constant CHICK = 0x11f0F466B52762E30f2456b4985208AE9296D2C9; function mintGiveaway(uint quantity) external onlyOwner { require(totalSupply() + quantity <= 1111, 'sold out'); _safeMint(msg.sender, quantity); } function mint(uint256 quantity) external payable { require(quantity <= 10, 'Cant mint more than 10'); if (totalSupply() > 300){ totalCost = quantity * pricePer; } if (totalSupply() <= 300){ totalCost = 0; } require(totalSupply() + quantity <= 1111, 'sold out'); require(msg.value >= totalCost, 'Not enough Eth sent'); _safeMint(msg.sender, quantity); } // // metadata URI string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawAll() public onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "Insufficent balance"); _withdraw(MIKE, ((balance * 33) / 100)); _withdraw(FUEGO, ((balance * 33) / 100)); _withdraw(CHICK, ((balance * 33) / 100)); _withdraw(MIKE, address(this).balance); } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{ value: _amount }(""); require(success, "Failed to widthdraw Ether"); } function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant { _setOwnersExplicit(quantity); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForAuctionAndDev_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCollectionSize","type":"uint256"}],"name":"changeCollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBatch","type":"uint256"}],"name":"changeMaxBatchSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","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":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006001556000600a55662386f26fc10000600c553480156200002657600080fd5b5060405162002b6238038062002b6283398101604081905262000049916200025d565b6040518060400160405280600c81526020016b536f6d6d657252617944414f60a01b81525060405180604001604052806009815260200168536f6d6d657244414f60b81b8152508484620000ac620000a66200016360201b60201c565b62000167565b60008111620000d85760405162461bcd60e51b8152600401620000cf9062000309565b60405180910390fd5b60008211620000fb5760405162461bcd60e51b8152600401620000cf906200028b565b835162000110906004906020870190620001b7565b50825162000126906005906020860190620001b7565b5060039190915560025550506001600b55818111156200015a5760405162461bcd60e51b8152600401620000cf90620002d2565b50505062000394565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001c59062000357565b90600052602060002090601f016020900481019282620001e9576000855562000234565b82601f106200020457805160ff191683800117855562000234565b8280016001018555821562000234579182015b828111156200023457825182559160200191906001019062000217565b506200024292915062000246565b5090565b5b8082111562000242576000815560010162000247565b60008060006060848603121562000272578283fd5b8351925060208401519150604084015190509250925092565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252601d908201527f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000604082015260600190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b6002810460018216806200036c57607f821691505b602082108114156200038e57634e487b7160e01b600052602260045260246000fd5b50919050565b6127be80620003a46000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063a0712d6811610095578063d7224ba011610064578063d7224ba0146104e4578063dc33e681146104f9578063e985e9c514610519578063f2fde38b14610539576101c2565b8063a0712d6814610471578063a22cb46514610484578063b88d4fde146104a4578063c87b56dd146104c4576101c2565b80638da5cb5b116100d15780638da5cb5b146103fa5780639231ab2a1461040f57806395d89b411461043c5780639801b11c14610451576101c2565b8063715018a6146103b05780637af66cec146103c5578063853828b6146103e5576101c2565b80632f745c591161016457806355f804b31161013e57806355f804b3146103305780636352211e146103505780636ebfd34d1461037057806370a0823114610390576101c2565b80632f745c59146102d057806342842e0e146102f05780634f6ccce714610310576101c2565b8063095ea7b3116101a0578063095ea7b31461024c57806318160ddd1461026e57806323b872dd146102905780632d20fb60146102b0576101c2565b806301ffc9a7146101c757806306fdde03146101fd578063081812fc1461021f575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611ca4565b610559565b6040516101f49190611e10565b60405180910390f35b34801561020957600080fd5b506102126105bc565b6040516101f49190611e1b565b34801561022b57600080fd5b5061023f61023a366004611d49565b61064e565b6040516101f49190611dbf565b34801561025857600080fd5b5061026c610267366004611c7b565b61069a565b005b34801561027a57600080fd5b50610283610733565b6040516101f491906125ce565b34801561029c57600080fd5b5061026c6102ab366004611b3a565b610739565b3480156102bc57600080fd5b5061026c6102cb366004611d49565b610744565b3480156102dc57600080fd5b506102836102eb366004611c7b565b6107bc565b3480156102fc57600080fd5b5061026c61030b366004611b3a565b6108b8565b34801561031c57600080fd5b5061028361032b366004611d49565b6108d3565b34801561033c57600080fd5b5061026c61034b366004611cdc565b6108ff565b34801561035c57600080fd5b5061023f61036b366004611d49565b61094a565b34801561037c57600080fd5b5061026c61038b366004611d49565b61095c565b34801561039c57600080fd5b506102836103ab366004611aee565b610961565b3480156103bc57600080fd5b5061026c6109ae565b3480156103d157600080fd5b5061026c6103e0366004611d49565b6109f9565b3480156103f157600080fd5b5061026c610a79565b34801561040657600080fd5b5061023f610b72565b34801561041b57600080fd5b5061042f61042a366004611d49565b610b81565b6040516101f491906125a4565b34801561044857600080fd5b50610212610b92565b34801561045d57600080fd5b5061026c61046c366004611d49565b610ba1565b61026c61047f366004611d49565b610ba6565b34801561049057600080fd5b5061026c61049f366004611c41565b610c55565b3480156104b057600080fd5b5061026c6104bf366004611b75565b610d23565b3480156104d057600080fd5b506102126104df366004611d49565b610d5c565b3480156104f057600080fd5b50610283610ddf565b34801561050557600080fd5b50610283610514366004611aee565b610de5565b34801561052557600080fd5b506101e7610534366004611b08565b610df0565b34801561054557600080fd5b5061026c610554366004611aee565b610e1e565b60006001600160e01b031982166380ac58cd60e01b148061058a57506001600160e01b03198216635b5e139f60e01b145b806105a557506001600160e01b0319821663780e9d6360e01b145b806105b457506105b482610e8c565b90505b919050565b6060600480546105cb906126c6565b80601f01602080910402602001604051908101604052809291908181526020018280546105f7906126c6565b80156106445780601f1061061957610100808354040283529160200191610644565b820191906000526020600020905b81548152906001019060200180831161062757829003601f168201915b5050505050905090565b600061065982610ea5565b61067e5760405162461bcd60e51b8152600401610675906124e8565b60405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006106a58261094a565b9050806001600160a01b0316836001600160a01b031614156106d95760405162461bcd60e51b8152600401610675906122c1565b806001600160a01b03166106eb610eac565b6001600160a01b03161480610707575061070781610534610eac565b6107235760405162461bcd60e51b81526004016106759061202b565b61072e838383610eb0565b505050565b60015490565b61072e838383610f0c565b61074c610eac565b6001600160a01b031661075d610b72565b6001600160a01b0316146107835760405162461bcd60e51b81526004016106759061217d565b6002600b5414156107a65760405162461bcd60e51b815260040161067590612462565b6002600b556107b481611220565b506001600b55565b60006107c783610961565b82106107e55760405162461bcd60e51b815260040161067590611e2e565b60006107ef610733565b905060008060005b83811015610899576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561084a57805192505b876001600160a01b0316836001600160a01b031614156108865786841415610878575093506108b292505050565b8361088281612701565b9450505b508061089181612701565b9150506107f7565b5060405162461bcd60e51b8152600401610675906123ce565b92915050565b61072e83838360405180602001604052806000815250610d23565b60006108dd610733565b82106108fb5760405162461bcd60e51b815260040161067590611f30565b5090565b610907610eac565b6001600160a01b0316610918610b72565b6001600160a01b03161461093e5760405162461bcd60e51b81526004016106759061217d565b61072e600e8383611a2b565b600061095582611373565b5192915050565b600355565b60006001600160a01b0382166109895760405162461bcd60e51b8152600401610675906120bf565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6109b6610eac565b6001600160a01b03166109c7610b72565b6001600160a01b0316146109ed5760405162461bcd60e51b81526004016106759061217d565b6109f7600061144b565b565b610a01610eac565b6001600160a01b0316610a12610b72565b6001600160a01b031614610a385760405162461bcd60e51b81526004016106759061217d565b61045781610a44610733565b610a4e91906125f9565b1115610a6c5760405162461bcd60e51b815260040161067590612009565b610a76338261149b565b50565b610a81610eac565b6001600160a01b0316610a92610b72565b6001600160a01b031614610ab85760405162461bcd60e51b81526004016106759061217d565b4780610ad65760405162461bcd60e51b815260040161067590612150565b610b0a73c5376f2831d28cb20707a0f015146a9d219befda6064610afb846021612625565b610b059190612611565b6114b9565b610b2f739e862ce07c0e47f7a7601aac69b74aee87699f536064610afb846021612625565b610b547311f0f466b52762e30f2456b4985208ae9296d2c96064610afb846021612625565b610a7673c5376f2831d28cb20707a0f015146a9d219befda476114b9565b6000546001600160a01b031690565b610b89611aab565b6105b482611373565b6060600580546105cb906126c6565b600255565b600a811115610bc75760405162461bcd60e51b815260040161067590611eb6565b61012c610bd2610733565b1115610be957600c54610be59082612625565b600d555b61012c610bf4610733565b11610bff576000600d555b61045781610c0b610733565b610c1591906125f9565b1115610c335760405162461bcd60e51b815260040161067590612009565b600d54341015610a6c5760405162461bcd60e51b815260040161067590612535565b610c5d610eac565b6001600160a01b0316826001600160a01b03161415610c8e5760405162461bcd60e51b815260040161067590612201565b8060096000610c9b610eac565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610cdf610eac565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d179190611e10565b60405180910390a35050565b610d2e848484610f0c565b610d3a84848484611535565b610d565760405162461bcd60e51b815260040161067590612303565b50505050565b6060610d6782610ea5565b610d835760405162461bcd60e51b8152600401610675906121b2565b6000610d8d611651565b90506000815111610dad5760405180602001604052806000815250610dd8565b80610db784611660565b604051602001610dc8929190611d8d565b6040516020818303038152906040525b9392505050565b600a5481565b60006105b48261177b565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b610e26610eac565b6001600160a01b0316610e37610b72565b6001600160a01b031614610e5d5760405162461bcd60e51b81526004016106759061217d565b6001600160a01b038116610e835760405162461bcd60e51b815260040161067590611e70565b610a768161144b565b6001600160e01b031981166301ffc9a760e01b14919050565b6001541190565b3390565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f1782611373565b9050600081600001516001600160a01b0316610f31610eac565b6001600160a01b03161480610f665750610f49610eac565b6001600160a01b0316610f5b8461064e565b6001600160a01b0316145b80610f7a57508151610f7a90610534610eac565b905080610f995760405162461bcd60e51b815260040161067590612238565b846001600160a01b031682600001516001600160a01b031614610fce5760405162461bcd60e51b81526004016106759061210a565b6001600160a01b038416610ff45760405162461bcd60e51b815260040161067590611f73565b6110018585856001610d56565b6110116000848460000151610eb0565b6001600160a01b03851660009081526007602052604081208054600192906110439084906001600160801b0316612644565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600760205260408120805460019450909261108f918591166125d7565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526006909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b031990911617161790556111258460016125f9565b6000818152600660205260409020549091506001600160a01b03166111ca5761114d81610ea5565b156111ca5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526006909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112188686866001610d56565b505050505050565b600a54816112405760405162461bcd60e51b815260040161067590612088565b6000600161124e84846125f9565b611258919061266c565b90506001600254611269919061266c565b81111561128257600160025461127f919061266c565b90505b61128b81610ea5565b6112a75760405162461bcd60e51b81526004016106759061241c565b815b81811161135f576000818152600660205260409020546001600160a01b031661134d5760006112d782611373565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff90811685840190815260008881526006909652939094209151825493516001600160a01b031990941691161767ffffffffffffffff60a01b1916600160a01b9290931691909102919091179055505b8061135781612701565b9150506112a9565b5061136b8160016125f9565b600a55505050565b61137b611aab565b61138482610ea5565b6113a05760405162461bcd60e51b815260040161067590611ee6565b600060035483106113c6576003546113b8908461266c565b6113c39060016125f9565b90505b825b818110611432576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561141f5792506105b7915050565b508061142a816126af565b9150506113c8565b5060405162461bcd60e51b815260040161067590612499565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6114b58282604051806020016040528060008152506117cf565b5050565b6000826001600160a01b0316826040516114d290611dbc565b60006040518083038185875af1925050503d806000811461150f576040519150601f19603f3d011682016040523d82523d6000602084013e611514565b606091505b505090508061072e5760405162461bcd60e51b81526004016106759061228a565b6000611549846001600160a01b0316611a25565b1561164557836001600160a01b031663150b7a02611565610eac565b8786866040518563ffffffff1660e01b81526004016115879493929190611dd3565b602060405180830381600087803b1580156115a157600080fd5b505af19250505080156115d1575060408051601f3d908101601f191682019092526115ce91810190611cc0565b60015b61162b573d8080156115ff576040519150601f19603f3d011682016040523d82523d6000602084013e611604565b606091505b5080516116235760405162461bcd60e51b815260040161067590612303565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611649565b5060015b949350505050565b6060600e80546105cb906126c6565b60608161168557506040805180820190915260018152600360fc1b60208201526105b7565b8160005b81156116af578061169981612701565b91506116a89050600a83612611565b9150611689565b60008167ffffffffffffffff8111156116d857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611702576020820181803683370190505b5090505b84156116495761171760018361266c565b9150611724600a8661271c565b61172f9060306125f9565b60f81b81838151811061175257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611774600a86612611565b9450611706565b60006001600160a01b0382166117a35760405162461bcd60e51b815260040161067590611fb8565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166117f85760405162461bcd60e51b81526004016106759061238d565b61180181610ea5565b1561181e5760405162461bcd60e51b815260040161067590612356565b6003548311156118405760405162461bcd60e51b815260040161067590612562565b61184d6000858386610d56565b6001600160a01b0384166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906118a99087906125d7565b6001600160801b031681526020018583602001516118c791906125d7565b6001600160801b039081169091526001600160a01b03808816600081815260076020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526006909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611a125760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119d66000888488611535565b6119f25760405162461bcd60e51b815260040161067590612303565b816119fc81612701565b9250508080611a0a90612701565b915050611989565b5060018190556112186000878588610d56565b3b151590565b828054611a37906126c6565b90600052602060002090601f016020900481019282611a595760008555611a9f565b82601f10611a725782800160ff19823516178555611a9f565b82800160010185558215611a9f579182015b82811115611a9f578235825591602001919060010190611a84565b506108fb929150611ac2565b604080518082019091526000808252602082015290565b5b808211156108fb5760008155600101611ac3565b80356001600160a01b03811681146105b757600080fd5b600060208284031215611aff578081fd5b610dd882611ad7565b60008060408385031215611b1a578081fd5b611b2383611ad7565b9150611b3160208401611ad7565b90509250929050565b600080600060608486031215611b4e578081fd5b611b5784611ad7565b9250611b6560208501611ad7565b9150604084013590509250925092565b60008060008060808587031215611b8a578081fd5b611b9385611ad7565b93506020611ba2818701611ad7565b935060408601359250606086013567ffffffffffffffff80821115611bc5578384fd5b818801915088601f830112611bd8578384fd5b813581811115611bea57611bea61275c565b604051601f8201601f1916810185018381118282101715611c0d57611c0d61275c565b60405281815283820185018b1015611c23578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215611c53578182fd5b611c5c83611ad7565b915060208301358015158114611c70578182fd5b809150509250929050565b60008060408385031215611c8d578182fd5b611c9683611ad7565b946020939093013593505050565b600060208284031215611cb5578081fd5b8135610dd881612772565b600060208284031215611cd1578081fd5b8151610dd881612772565b60008060208385031215611cee578182fd5b823567ffffffffffffffff80821115611d05578384fd5b818501915085601f830112611d18578384fd5b813581811115611d26578485fd5b866020828501011115611d37578485fd5b60209290920196919550909350505050565b600060208284031215611d5a578081fd5b5035919050565b60008151808452611d79816020860160208601612683565b601f01601f19169290920160200192915050565b60008351611d9f818460208801612683565b835190830190611db3818360208801612683565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e0690830184611d61565b9695505050505050565b901515815260200190565b600060208252610dd86020830184611d61565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b602080825260169082015275043616e74206d696e74206d6f7265207468616e2031360541b604082015260600190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252600890820152671cdbdb19081bdd5d60c21b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b602080825260139082015272496e737566666963656e742062616c616e636560681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526019908201527f4661696c656420746f2077696474686472617720457468657200000000000000604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526026908201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360408201526506c65616e75760d41b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b602080825260139082015272139bdd08195b9bdd59da08115d1a081cd95b9d606a1b604082015260600190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b90815260200190565b60006001600160801b03808316818516808303821115611db357611db3612730565b6000821982111561260c5761260c612730565b500190565b60008261262057612620612746565b500490565b600081600019048311821515161561263f5761263f612730565b500290565b60006001600160801b038381169083168181101561266457612664612730565b039392505050565b60008282101561267e5761267e612730565b500390565b60005b8381101561269e578181015183820152602001612686565b83811115610d565750506000910152565b6000816126be576126be612730565b506000190190565b6002810460018216806126da57607f821691505b602082108114156126fb57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561271557612715612730565b5060010190565b60008261272b5761272b612746565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a7657600080fdfea2646970667358221220d4a8c4ed2f6b935aea785eedb29a1e261ada220b95685cb5b4553cc60af9d51a64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000004570000000000000000000000000000000000000000000000000000000000000457
Deployed Bytecode
0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063a0712d6811610095578063d7224ba011610064578063d7224ba0146104e4578063dc33e681146104f9578063e985e9c514610519578063f2fde38b14610539576101c2565b8063a0712d6814610471578063a22cb46514610484578063b88d4fde146104a4578063c87b56dd146104c4576101c2565b80638da5cb5b116100d15780638da5cb5b146103fa5780639231ab2a1461040f57806395d89b411461043c5780639801b11c14610451576101c2565b8063715018a6146103b05780637af66cec146103c5578063853828b6146103e5576101c2565b80632f745c591161016457806355f804b31161013e57806355f804b3146103305780636352211e146103505780636ebfd34d1461037057806370a0823114610390576101c2565b80632f745c59146102d057806342842e0e146102f05780634f6ccce714610310576101c2565b8063095ea7b3116101a0578063095ea7b31461024c57806318160ddd1461026e57806323b872dd146102905780632d20fb60146102b0576101c2565b806301ffc9a7146101c757806306fdde03146101fd578063081812fc1461021f575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611ca4565b610559565b6040516101f49190611e10565b60405180910390f35b34801561020957600080fd5b506102126105bc565b6040516101f49190611e1b565b34801561022b57600080fd5b5061023f61023a366004611d49565b61064e565b6040516101f49190611dbf565b34801561025857600080fd5b5061026c610267366004611c7b565b61069a565b005b34801561027a57600080fd5b50610283610733565b6040516101f491906125ce565b34801561029c57600080fd5b5061026c6102ab366004611b3a565b610739565b3480156102bc57600080fd5b5061026c6102cb366004611d49565b610744565b3480156102dc57600080fd5b506102836102eb366004611c7b565b6107bc565b3480156102fc57600080fd5b5061026c61030b366004611b3a565b6108b8565b34801561031c57600080fd5b5061028361032b366004611d49565b6108d3565b34801561033c57600080fd5b5061026c61034b366004611cdc565b6108ff565b34801561035c57600080fd5b5061023f61036b366004611d49565b61094a565b34801561037c57600080fd5b5061026c61038b366004611d49565b61095c565b34801561039c57600080fd5b506102836103ab366004611aee565b610961565b3480156103bc57600080fd5b5061026c6109ae565b3480156103d157600080fd5b5061026c6103e0366004611d49565b6109f9565b3480156103f157600080fd5b5061026c610a79565b34801561040657600080fd5b5061023f610b72565b34801561041b57600080fd5b5061042f61042a366004611d49565b610b81565b6040516101f491906125a4565b34801561044857600080fd5b50610212610b92565b34801561045d57600080fd5b5061026c61046c366004611d49565b610ba1565b61026c61047f366004611d49565b610ba6565b34801561049057600080fd5b5061026c61049f366004611c41565b610c55565b3480156104b057600080fd5b5061026c6104bf366004611b75565b610d23565b3480156104d057600080fd5b506102126104df366004611d49565b610d5c565b3480156104f057600080fd5b50610283610ddf565b34801561050557600080fd5b50610283610514366004611aee565b610de5565b34801561052557600080fd5b506101e7610534366004611b08565b610df0565b34801561054557600080fd5b5061026c610554366004611aee565b610e1e565b60006001600160e01b031982166380ac58cd60e01b148061058a57506001600160e01b03198216635b5e139f60e01b145b806105a557506001600160e01b0319821663780e9d6360e01b145b806105b457506105b482610e8c565b90505b919050565b6060600480546105cb906126c6565b80601f01602080910402602001604051908101604052809291908181526020018280546105f7906126c6565b80156106445780601f1061061957610100808354040283529160200191610644565b820191906000526020600020905b81548152906001019060200180831161062757829003601f168201915b5050505050905090565b600061065982610ea5565b61067e5760405162461bcd60e51b8152600401610675906124e8565b60405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006106a58261094a565b9050806001600160a01b0316836001600160a01b031614156106d95760405162461bcd60e51b8152600401610675906122c1565b806001600160a01b03166106eb610eac565b6001600160a01b03161480610707575061070781610534610eac565b6107235760405162461bcd60e51b81526004016106759061202b565b61072e838383610eb0565b505050565b60015490565b61072e838383610f0c565b61074c610eac565b6001600160a01b031661075d610b72565b6001600160a01b0316146107835760405162461bcd60e51b81526004016106759061217d565b6002600b5414156107a65760405162461bcd60e51b815260040161067590612462565b6002600b556107b481611220565b506001600b55565b60006107c783610961565b82106107e55760405162461bcd60e51b815260040161067590611e2e565b60006107ef610733565b905060008060005b83811015610899576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561084a57805192505b876001600160a01b0316836001600160a01b031614156108865786841415610878575093506108b292505050565b8361088281612701565b9450505b508061089181612701565b9150506107f7565b5060405162461bcd60e51b8152600401610675906123ce565b92915050565b61072e83838360405180602001604052806000815250610d23565b60006108dd610733565b82106108fb5760405162461bcd60e51b815260040161067590611f30565b5090565b610907610eac565b6001600160a01b0316610918610b72565b6001600160a01b03161461093e5760405162461bcd60e51b81526004016106759061217d565b61072e600e8383611a2b565b600061095582611373565b5192915050565b600355565b60006001600160a01b0382166109895760405162461bcd60e51b8152600401610675906120bf565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6109b6610eac565b6001600160a01b03166109c7610b72565b6001600160a01b0316146109ed5760405162461bcd60e51b81526004016106759061217d565b6109f7600061144b565b565b610a01610eac565b6001600160a01b0316610a12610b72565b6001600160a01b031614610a385760405162461bcd60e51b81526004016106759061217d565b61045781610a44610733565b610a4e91906125f9565b1115610a6c5760405162461bcd60e51b815260040161067590612009565b610a76338261149b565b50565b610a81610eac565b6001600160a01b0316610a92610b72565b6001600160a01b031614610ab85760405162461bcd60e51b81526004016106759061217d565b4780610ad65760405162461bcd60e51b815260040161067590612150565b610b0a73c5376f2831d28cb20707a0f015146a9d219befda6064610afb846021612625565b610b059190612611565b6114b9565b610b2f739e862ce07c0e47f7a7601aac69b74aee87699f536064610afb846021612625565b610b547311f0f466b52762e30f2456b4985208ae9296d2c96064610afb846021612625565b610a7673c5376f2831d28cb20707a0f015146a9d219befda476114b9565b6000546001600160a01b031690565b610b89611aab565b6105b482611373565b6060600580546105cb906126c6565b600255565b600a811115610bc75760405162461bcd60e51b815260040161067590611eb6565b61012c610bd2610733565b1115610be957600c54610be59082612625565b600d555b61012c610bf4610733565b11610bff576000600d555b61045781610c0b610733565b610c1591906125f9565b1115610c335760405162461bcd60e51b815260040161067590612009565b600d54341015610a6c5760405162461bcd60e51b815260040161067590612535565b610c5d610eac565b6001600160a01b0316826001600160a01b03161415610c8e5760405162461bcd60e51b815260040161067590612201565b8060096000610c9b610eac565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610cdf610eac565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d179190611e10565b60405180910390a35050565b610d2e848484610f0c565b610d3a84848484611535565b610d565760405162461bcd60e51b815260040161067590612303565b50505050565b6060610d6782610ea5565b610d835760405162461bcd60e51b8152600401610675906121b2565b6000610d8d611651565b90506000815111610dad5760405180602001604052806000815250610dd8565b80610db784611660565b604051602001610dc8929190611d8d565b6040516020818303038152906040525b9392505050565b600a5481565b60006105b48261177b565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b610e26610eac565b6001600160a01b0316610e37610b72565b6001600160a01b031614610e5d5760405162461bcd60e51b81526004016106759061217d565b6001600160a01b038116610e835760405162461bcd60e51b815260040161067590611e70565b610a768161144b565b6001600160e01b031981166301ffc9a760e01b14919050565b6001541190565b3390565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f1782611373565b9050600081600001516001600160a01b0316610f31610eac565b6001600160a01b03161480610f665750610f49610eac565b6001600160a01b0316610f5b8461064e565b6001600160a01b0316145b80610f7a57508151610f7a90610534610eac565b905080610f995760405162461bcd60e51b815260040161067590612238565b846001600160a01b031682600001516001600160a01b031614610fce5760405162461bcd60e51b81526004016106759061210a565b6001600160a01b038416610ff45760405162461bcd60e51b815260040161067590611f73565b6110018585856001610d56565b6110116000848460000151610eb0565b6001600160a01b03851660009081526007602052604081208054600192906110439084906001600160801b0316612644565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600760205260408120805460019450909261108f918591166125d7565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526006909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b031990911617161790556111258460016125f9565b6000818152600660205260409020549091506001600160a01b03166111ca5761114d81610ea5565b156111ca5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526006909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112188686866001610d56565b505050505050565b600a54816112405760405162461bcd60e51b815260040161067590612088565b6000600161124e84846125f9565b611258919061266c565b90506001600254611269919061266c565b81111561128257600160025461127f919061266c565b90505b61128b81610ea5565b6112a75760405162461bcd60e51b81526004016106759061241c565b815b81811161135f576000818152600660205260409020546001600160a01b031661134d5760006112d782611373565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff90811685840190815260008881526006909652939094209151825493516001600160a01b031990941691161767ffffffffffffffff60a01b1916600160a01b9290931691909102919091179055505b8061135781612701565b9150506112a9565b5061136b8160016125f9565b600a55505050565b61137b611aab565b61138482610ea5565b6113a05760405162461bcd60e51b815260040161067590611ee6565b600060035483106113c6576003546113b8908461266c565b6113c39060016125f9565b90505b825b818110611432576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561141f5792506105b7915050565b508061142a816126af565b9150506113c8565b5060405162461bcd60e51b815260040161067590612499565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6114b58282604051806020016040528060008152506117cf565b5050565b6000826001600160a01b0316826040516114d290611dbc565b60006040518083038185875af1925050503d806000811461150f576040519150601f19603f3d011682016040523d82523d6000602084013e611514565b606091505b505090508061072e5760405162461bcd60e51b81526004016106759061228a565b6000611549846001600160a01b0316611a25565b1561164557836001600160a01b031663150b7a02611565610eac565b8786866040518563ffffffff1660e01b81526004016115879493929190611dd3565b602060405180830381600087803b1580156115a157600080fd5b505af19250505080156115d1575060408051601f3d908101601f191682019092526115ce91810190611cc0565b60015b61162b573d8080156115ff576040519150601f19603f3d011682016040523d82523d6000602084013e611604565b606091505b5080516116235760405162461bcd60e51b815260040161067590612303565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611649565b5060015b949350505050565b6060600e80546105cb906126c6565b60608161168557506040805180820190915260018152600360fc1b60208201526105b7565b8160005b81156116af578061169981612701565b91506116a89050600a83612611565b9150611689565b60008167ffffffffffffffff8111156116d857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611702576020820181803683370190505b5090505b84156116495761171760018361266c565b9150611724600a8661271c565b61172f9060306125f9565b60f81b81838151811061175257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611774600a86612611565b9450611706565b60006001600160a01b0382166117a35760405162461bcd60e51b815260040161067590611fb8565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166117f85760405162461bcd60e51b81526004016106759061238d565b61180181610ea5565b1561181e5760405162461bcd60e51b815260040161067590612356565b6003548311156118405760405162461bcd60e51b815260040161067590612562565b61184d6000858386610d56565b6001600160a01b0384166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906118a99087906125d7565b6001600160801b031681526020018583602001516118c791906125d7565b6001600160801b039081169091526001600160a01b03808816600081815260076020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526006909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611a125760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119d66000888488611535565b6119f25760405162461bcd60e51b815260040161067590612303565b816119fc81612701565b9250508080611a0a90612701565b915050611989565b5060018190556112186000878588610d56565b3b151590565b828054611a37906126c6565b90600052602060002090601f016020900481019282611a595760008555611a9f565b82601f10611a725782800160ff19823516178555611a9f565b82800160010185558215611a9f579182015b82811115611a9f578235825591602001919060010190611a84565b506108fb929150611ac2565b604080518082019091526000808252602082015290565b5b808211156108fb5760008155600101611ac3565b80356001600160a01b03811681146105b757600080fd5b600060208284031215611aff578081fd5b610dd882611ad7565b60008060408385031215611b1a578081fd5b611b2383611ad7565b9150611b3160208401611ad7565b90509250929050565b600080600060608486031215611b4e578081fd5b611b5784611ad7565b9250611b6560208501611ad7565b9150604084013590509250925092565b60008060008060808587031215611b8a578081fd5b611b9385611ad7565b93506020611ba2818701611ad7565b935060408601359250606086013567ffffffffffffffff80821115611bc5578384fd5b818801915088601f830112611bd8578384fd5b813581811115611bea57611bea61275c565b604051601f8201601f1916810185018381118282101715611c0d57611c0d61275c565b60405281815283820185018b1015611c23578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215611c53578182fd5b611c5c83611ad7565b915060208301358015158114611c70578182fd5b809150509250929050565b60008060408385031215611c8d578182fd5b611c9683611ad7565b946020939093013593505050565b600060208284031215611cb5578081fd5b8135610dd881612772565b600060208284031215611cd1578081fd5b8151610dd881612772565b60008060208385031215611cee578182fd5b823567ffffffffffffffff80821115611d05578384fd5b818501915085601f830112611d18578384fd5b813581811115611d26578485fd5b866020828501011115611d37578485fd5b60209290920196919550909350505050565b600060208284031215611d5a578081fd5b5035919050565b60008151808452611d79816020860160208601612683565b601f01601f19169290920160200192915050565b60008351611d9f818460208801612683565b835190830190611db3818360208801612683565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e0690830184611d61565b9695505050505050565b901515815260200190565b600060208252610dd86020830184611d61565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b602080825260169082015275043616e74206d696e74206d6f7265207468616e2031360541b604082015260600190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252600890820152671cdbdb19081bdd5d60c21b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b602080825260139082015272496e737566666963656e742062616c616e636560681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526019908201527f4661696c656420746f2077696474686472617720457468657200000000000000604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526026908201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360408201526506c65616e75760d41b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b602080825260139082015272139bdd08195b9bdd59da08115d1a081cd95b9d606a1b604082015260600190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b90815260200190565b60006001600160801b03808316818516808303821115611db357611db3612730565b6000821982111561260c5761260c612730565b500190565b60008261262057612620612746565b500490565b600081600019048311821515161561263f5761263f612730565b500290565b60006001600160801b038381169083168181101561266457612664612730565b039392505050565b60008282101561267e5761267e612730565b500390565b60005b8381101561269e578181015183820152602001612686565b83811115610d565750506000910152565b6000816126be576126be612730565b506000190190565b6002810460018216806126da57607f821691505b602082108114156126fb57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561271557612715612730565b5060010190565b60008261272b5761272b612746565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a7657600080fdfea2646970667358221220d4a8c4ed2f6b935aea785eedb29a1e261ada220b95685cb5b4553cc60af9d51a64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000004570000000000000000000000000000000000000000000000000000000000000457
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10
Arg [1] : collectionSize_ (uint256): 1111
Arg [2] : amountForAuctionAndDev_ (uint256): 1111
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000457
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000457
Deployed Bytecode Sourcemap
40700:2447:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26009:370;;;;;;;;;;-1:-1:-1;26009:370:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27735:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29260:204::-;;;;;;;;;;-1:-1:-1;29260:204:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28823:379::-;;;;;;;;;;-1:-1:-1;28823:379:0;;;;;:::i;:::-;;:::i;:::-;;24570:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30110:142::-;;;;;;;;;;-1:-1:-1;30110:142:0;;;;;:::i;:::-;;:::i;42760:118::-;;;;;;;;;;-1:-1:-1;42760:118:0;;;;;:::i;:::-;;:::i;25201:744::-;;;;;;;;;;-1:-1:-1;25201:744:0;;;;;:::i;:::-;;:::i;30315:157::-;;;;;;;;;;-1:-1:-1;30315:157:0;;;;;:::i;:::-;;:::i;24733:177::-;;;;;;;;;;-1:-1:-1;24733:177:0;;;;;:::i;:::-;;:::i;42118:100::-;;;;;;;;;;-1:-1:-1;42118:100:0;;;;;:::i;:::-;;:::i;27558:118::-;;;;;;;;;;-1:-1:-1;27558:118:0;;;;;:::i;:::-;;:::i;24298:88::-;;;;;;;;;;-1:-1:-1;24298:88:0;;;;;:::i;:::-;;:::i;26435:211::-;;;;;;;;;;-1:-1:-1;26435:211:0;;;;;:::i;:::-;;:::i;39883:103::-;;;;;;;;;;;;;:::i;41358:164::-;;;;;;;;;;-1:-1:-1;41358:164:0;;;;;:::i;:::-;;:::i;42224:339::-;;;;;;;;;;;;;:::i;39232:87::-;;;;;;;;;;;;;:::i;42997:147::-;;;;;;;;;;-1:-1:-1;42997:147:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27890:98::-;;;;;;;;;;;;;:::i;24392:110::-;;;;;;;;;;-1:-1:-1;24392:110:0;;;;;:::i;:::-;;:::i;41528:413::-;;;;;;:::i;:::-;;:::i;29528:274::-;;;;;;;;;;-1:-1:-1;29528:274:0;;;;;:::i;:::-;;:::i;30535:311::-;;;;;;;;;;-1:-1:-1;30535:311:0;;;;;:::i;:::-;;:::i;28051:394::-;;;;;;;;;;-1:-1:-1;28051:394:0;;;;;:::i;:::-;;:::i;34950:43::-;;;;;;;;;;;;;:::i;42884:107::-;;;;;;;;;;-1:-1:-1;42884:107:0;;;;;:::i;:::-;;:::i;29865:186::-;;;;;;;;;;-1:-1:-1;29865:186:0;;;;;:::i;:::-;;:::i;40141:201::-;;;;;;;;;;-1:-1:-1;40141:201:0;;;;;:::i;:::-;;:::i;26009:370::-;26136:4;-1:-1:-1;;;;;;26166:40:0;;-1:-1:-1;;;26166:40:0;;:99;;-1:-1:-1;;;;;;;26217:48:0;;-1:-1:-1;;;26217:48:0;26166:99;:160;;;-1:-1:-1;;;;;;;26276:50:0;;-1:-1:-1;;;26276:50:0;26166:160;:207;;;;26337:36;26361:11;26337:23;:36::i;:::-;26152:221;;26009:370;;;;:::o;27735:94::-;27789:13;27818:5;27811:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27735:94;:::o;29260:204::-;29328:7;29352:16;29360:7;29352;:16::i;:::-;29344:74;;;;-1:-1:-1;;;29344:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;29434:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29434:24:0;;29260:204::o;28823:379::-;28892:13;28908:24;28924:7;28908:15;:24::i;:::-;28892:40;;28953:5;-1:-1:-1;;;;;28947:11:0;:2;-1:-1:-1;;;;;28947:11:0;;;28939:58;;;;-1:-1:-1;;;28939:58:0;;;;;;;:::i;:::-;29038:5;-1:-1:-1;;;;;29022:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;29022:21:0;;:62;;;;29047:37;29064:5;29071:12;:10;:12::i;29047:37::-;29006:153;;;;-1:-1:-1;;;29006:153:0;;;;;;;:::i;:::-;29168:28;29177:2;29181:7;29190:5;29168:8;:28::i;:::-;28823:379;;;:::o;24570:94::-;24646:12;;24570:94;:::o;30110:142::-;30218:28;30228:4;30234:2;30238:7;30218:9;:28::i;42760:118::-;39463:12;:10;:12::i;:::-;-1:-1:-1;;;;;39452:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39452:23:0;;39444:68;;;;-1:-1:-1;;;39444:68:0;;;;;;;:::i;:::-;20385:1:::1;20983:7;;:19;;20975:63;;;;-1:-1:-1::0;;;20975:63:0::1;;;;;;;:::i;:::-;20385:1;21116:7;:18:::0;42844:28:::2;42863:8:::0;42844:18:::2;:28::i;:::-;-1:-1:-1::0;20341:1:0::1;21295:7;:22:::0;42760:118::o;25201:744::-;25310:7;25345:16;25355:5;25345:9;:16::i;:::-;25337:5;:24;25329:71;;;;-1:-1:-1;;;25329:71:0;;;;;;;:::i;:::-;25407:22;25432:13;:11;:13::i;:::-;25407:38;;25452:19;25482:25;25532:9;25527:350;25551:14;25547:1;:18;25527:350;;;25581:31;25615:14;;;:11;:14;;;;;;;;;25581:48;;;;;;;;;-1:-1:-1;;;;;25581:48:0;;;;;-1:-1:-1;;;25581:48:0;;;;;;;;;;;;25642:28;25638:89;;25703:14;;;-1:-1:-1;25638:89:0;25760:5;-1:-1:-1;;;;;25739:26:0;:17;-1:-1:-1;;;;;25739:26:0;;25735:135;;;25797:5;25782:11;:20;25778:59;;;-1:-1:-1;25824:1:0;-1:-1:-1;25817:8:0;;-1:-1:-1;;;25817:8:0;25778:59;25847:13;;;;:::i;:::-;;;;25735:135;-1:-1:-1;25567:3:0;;;;:::i;:::-;;;;25527:350;;;;25883:56;;-1:-1:-1;;;25883:56:0;;;;;;;:::i;25201:744::-;;;;;:::o;30315:157::-;30427:39;30444:4;30450:2;30454:7;30427:39;;;;;;;;;;;;:16;:39::i;24733:177::-;24800:7;24832:13;:11;:13::i;:::-;24824:5;:21;24816:69;;;;-1:-1:-1;;;24816:69:0;;;;;;;:::i;:::-;-1:-1:-1;24899:5:0;24733:177::o;42118:100::-;39463:12;:10;:12::i;:::-;-1:-1:-1;;;;;39452:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39452:23:0;;39444:68;;;;-1:-1:-1;;;39444:68:0;;;;;;;:::i;:::-;42189:23:::1;:13;42205:7:::0;;42189:23:::1;:::i;27558:118::-:0;27622:7;27645:20;27657:7;27645:11;:20::i;:::-;:25;;27558:118;-1:-1:-1;;27558:118:0:o;24298:88::-;24357:12;:23;24298:88::o;26435:211::-;26499:7;-1:-1:-1;;;;;26523:19:0;;26515:75;;;;-1:-1:-1;;;26515:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;26612:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26612:27:0;;26435:211::o;39883:103::-;39463:12;:10;:12::i;:::-;-1:-1:-1;;;;;39452:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39452:23:0;;39444:68;;;;-1:-1:-1;;;39444:68:0;;;;;;;:::i;:::-;39948:30:::1;39975:1;39948:18;:30::i;:::-;39883:103::o:0;41358:164::-;39463:12;:10;:12::i;:::-;-1:-1:-1;;;;;39452:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39452:23:0;;39444:68;;;;-1:-1:-1;;;39444:68:0;;;;;;;:::i;:::-;41459:4:::1;41447:8;41431:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:32;;41423:53;;;;-1:-1:-1::0;;;41423:53:0::1;;;;;;;:::i;:::-;41485:31;41495:10;41507:8;41485:9;:31::i;:::-;41358:164:::0;:::o;42224:339::-;39463:12;:10;:12::i;:::-;-1:-1:-1;;;;;39452:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39452:23:0;;39444:68;;;;-1:-1:-1;;;39444:68:0;;;;;;;:::i;:::-;42291:21:::1;42329:11:::0;42321:43:::1;;;;-1:-1:-1::0;;;42321:43:0::1;;;;;;;:::i;:::-;42373:39;41147:42;42407:3;42391:12;:7:::0;42401:2:::1;42391:12;:::i;:::-;42390:20;;;;:::i;:::-;42373:9;:39::i;:::-;42421:40;41228:42;42456:3;42440:12;:7:::0;42450:2:::1;42440:12;:::i;42421:40::-;42470;41309:42;42505:3;42489:12;:7:::0;42499:2:::1;42489:12;:::i;42470:40::-;42519:38;41147:42;42535:21;42519:9;:38::i;39232:87::-:0;39278:7;39305:6;-1:-1:-1;;;;;39305:6:0;39232:87;:::o;42997:147::-;43078:21;;:::i;:::-;43118:20;43130:7;43118:11;:20::i;27890:98::-;27946:13;27975:7;27968:14;;;;;:::i;24392:110::-;24462:14;:34;24392:110::o;41528:413::-;41604:2;41592:8;:14;;41584:49;;;;-1:-1:-1;;;41584:49:0;;;;;;;:::i;:::-;41660:3;41644:13;:11;:13::i;:::-;:19;41640:74;;;41698:8;;41687:19;;:8;:19;:::i;:::-;41675:9;:31;41640:74;41741:3;41724:13;:11;:13::i;:::-;:20;41720:57;;41768:1;41756:9;:13;41720:57;41819:4;41807:8;41791:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:32;;41783:53;;;;-1:-1:-1;;;41783:53:0;;;;;;;:::i;:::-;41864:9;;41851;:22;;41843:54;;;;-1:-1:-1;;;41843:54:0;;;;;;;:::i;29528:274::-;29631:12;:10;:12::i;:::-;-1:-1:-1;;;;;29619:24:0;:8;-1:-1:-1;;;;;29619:24:0;;;29611:63;;;;-1:-1:-1;;;29611:63:0;;;;;;;:::i;:::-;29728:8;29683:18;:32;29702:12;:10;:12::i;:::-;-1:-1:-1;;;;;29683:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;29683:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;29683:53:0;;;;;;;;;;;29763:12;:10;:12::i;:::-;-1:-1:-1;;;;;29748:48:0;;29787:8;29748:48;;;;;;:::i;:::-;;;;;;;;29528:274;;:::o;30535:311::-;30672:28;30682:4;30688:2;30692:7;30672:9;:28::i;:::-;30723:48;30746:4;30752:2;30756:7;30765:5;30723:22;:48::i;:::-;30707:133;;;;-1:-1:-1;;;30707:133:0;;;;;;;:::i;:::-;30535:311;;;;:::o;28051:394::-;28149:13;28190:16;28198:7;28190;:16::i;:::-;28174:97;;;;-1:-1:-1;;;28174:97:0;;;;;;;:::i;:::-;28280:21;28304:10;:8;:10::i;:::-;28280:34;;28359:1;28341:7;28335:21;:25;:104;;;;;;;;;;;;;;;;;28396:7;28405:18;:7;:16;:18::i;:::-;28379:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28335:104;28321:118;28051:394;-1:-1:-1;;;28051:394:0:o;34950:43::-;;;;:::o;42884:107::-;42942:7;42965:20;42979:5;42965:13;:20::i;29865:186::-;-1:-1:-1;;;;;30010:25:0;;;29987:4;30010:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29865:186::o;40141:201::-;39463:12;:10;:12::i;:::-;-1:-1:-1;;;;;39452:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39452:23:0;;39444:68;;;;-1:-1:-1;;;39444:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40230:22:0;::::1;40222:73;;;;-1:-1:-1::0;;;40222:73:0::1;;;;;;;:::i;:::-;40306:28;40325:8;40306:18;:28::i;12367:157::-:0;-1:-1:-1;;;;;;12476:40:0;;-1:-1:-1;;;12476:40:0;12367:157;;;:::o;31085:105::-;31172:12;;-1:-1:-1;31162:22:0;31085:105::o;21872:98::-;21952:10;21872:98;:::o;34772:172::-;34869:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;34869:29:0;-1:-1:-1;;;;;34869:29:0;;;;;;;;;34910:28;;34869:24;;34910:28;;;;;;;34772:172;;;:::o;33137:1529::-;33234:35;33272:20;33284:7;33272:11;:20::i;:::-;33234:58;;33301:22;33343:13;:18;;;-1:-1:-1;;;;;33327:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;33327:34:0;;:81;;;;33396:12;:10;:12::i;:::-;-1:-1:-1;;;;;33372:36:0;:20;33384:7;33372:11;:20::i;:::-;-1:-1:-1;;;;;33372:36:0;;33327:81;:142;;;-1:-1:-1;33436:18:0;;33419:50;;33456:12;:10;:12::i;33419:50::-;33301:169;;33495:17;33479:101;;;;-1:-1:-1;;;33479:101:0;;;;;;;:::i;:::-;33627:4;-1:-1:-1;;;;;33605:26:0;:13;:18;;;-1:-1:-1;;;;;33605:26:0;;33589:98;;;;-1:-1:-1;;;33589:98:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33702:16:0;;33694:66;;;;-1:-1:-1;;;33694:66:0;;;;;;;:::i;:::-;33769:43;33791:4;33797:2;33801:7;33810:1;33769:21;:43::i;:::-;33869:49;33886:1;33890:7;33899:13;:18;;;33869:8;:49::i;:::-;-1:-1:-1;;;;;33927:18:0;;;;;;:12;:18;;;;;:31;;33957:1;;33927:18;:31;;33957:1;;-1:-1:-1;;;;;33927:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;33927:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33965:16:0;;-1:-1:-1;33965:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;33965:16:0;;:29;;-1:-1:-1;;33965:29:0;;:::i;:::-;;;-1:-1:-1;;;;;33965:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34024:43:0;;;;;;;;-1:-1:-1;;;;;34024:43:0;;;;;;34050:15;34024:43;;;;;;;;;-1:-1:-1;34001:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;34001:66:0;-1:-1:-1;;;;34001:66:0;;;;-1:-1:-1;;;;;;34001:66:0;;;;;;;;34317:11;34013:7;-1:-1:-1;34317:11:0;:::i;:::-;34380:1;34339:24;;;:11;:24;;;;;:29;34295:33;;-1:-1:-1;;;;;;34339:29:0;34335:236;;34397:20;34405:11;34397:7;:20::i;:::-;34393:171;;;34457:97;;;;;;;;34484:18;;-1:-1:-1;;;;;34457:97:0;;;;;;34515:28;;;;34457:97;;;;;;;;;;-1:-1:-1;34430:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;34430:124:0;;;;;;;;;-1:-1:-1;;;;34430:124:0;-1:-1:-1;;;34430:124:0;;;;;;;;;;;;;;34393:171;34603:7;34599:2;-1:-1:-1;;;;;34584:27:0;34593:4;-1:-1:-1;;;;;34584:27:0;;;;;;;;;;;34618:42;34639:4;34645:2;34649:7;34658:1;34618:20;:42::i;:::-;33137:1529;;;;;;:::o;35098:846::-;35188:24;;35227:12;35219:49;;;;-1:-1:-1;;;35219:49:0;;;;;;;:::i;:::-;35275:16;35325:1;35294:28;35314:8;35294:17;:28;:::i;:::-;:32;;;;:::i;:::-;35275:51;;35365:1;35348:14;;:18;;;;:::i;:::-;35337:8;:29;35333:81;;;35405:1;35388:14;;:18;;;;:::i;:::-;35377:29;;35333:81;35529:17;35537:8;35529:7;:17::i;:::-;35521:68;;;;-1:-1:-1;;;35521:68:0;;;;;;;:::i;:::-;35613:17;35596:297;35637:8;35632:1;:13;35596:297;;35696:1;35665:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;35665:19:0;35661:225;;35711:31;35745:14;35757:1;35745:11;:14::i;:::-;35787:89;;;;;;;;35814:14;;-1:-1:-1;;;;;35787:89:0;;;;;;35841:24;;;;35787:89;;;;;;;;;;-1:-1:-1;35770:14:0;;;:11;:14;;;;;;;:106;;;;;;-1:-1:-1;;;;;;35770:106:0;;;;;;-1:-1:-1;;;;35770:106:0;-1:-1:-1;;;35770:106:0;;;;;;;;;;;;;;-1:-1:-1;35661:225:0;35647:3;;;;:::i;:::-;;;;35596:297;;;-1:-1:-1;35926:12:0;:8;35937:1;35926:12;:::i;:::-;35899:24;:39;-1:-1:-1;;;35098:846:0:o;26898:606::-;26974:21;;:::i;:::-;27015:16;27023:7;27015;:16::i;:::-;27007:71;;;;-1:-1:-1;;;27007:71:0;;;;;;;:::i;:::-;27087:26;27135:12;;27124:7;:23;27120:93;;27189:12;;27179:22;;:7;:22;:::i;:::-;:26;;27204:1;27179:26;:::i;:::-;27158:47;;27120:93;27241:7;27221:212;27258:18;27250:4;:26;27221:212;;27295:31;27329:17;;;:11;:17;;;;;;;;;27295:51;;;;;;;;;-1:-1:-1;;;;;27295:51:0;;;;;-1:-1:-1;;;27295:51:0;;;;;;;;;;;;27359:28;27355:71;;27407:9;-1:-1:-1;27400:16:0;;-1:-1:-1;;27400:16:0;27355:71;-1:-1:-1;27278:6:0;;;;:::i;:::-;;;;27221:212;;;;27441:57;;-1:-1:-1;;;27441:57:0;;;;;;;:::i;40502:191::-;40576:16;40595:6;;-1:-1:-1;;;;;40612:17:0;;;-1:-1:-1;;;;;;40612:17:0;;;;;;40645:40;;40595:6;;;;;;;40645:40;;40576:16;40645:40;40502:191;;:::o;31196:98::-;31261:27;31271:2;31275:8;31261:27;;;;;;;;;;;;:9;:27::i;:::-;31196:98;;:::o;42569:185::-;42641:12;42659:8;-1:-1:-1;;;;;42659:13:0;42681:7;42659:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42640:54;;;42711:7;42703:45;;;;-1:-1:-1;;;42703:45:0;;;;;;;:::i;36487:690::-;36624:4;36641:15;:2;-1:-1:-1;;;;;36641:13:0;;:15::i;:::-;36637:535;;;36696:2;-1:-1:-1;;;;;36680:36:0;;36717:12;:10;:12::i;:::-;36731:4;36737:7;36746:5;36680:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36680:72:0;;;;;;;;-1:-1:-1;;36680:72:0;;;;;;;;;;;;:::i;:::-;;;36667:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36911:13:0;;36907:215;;36944:61;;-1:-1:-1;;;36944:61:0;;;;;;;:::i;36907:215::-;37090:6;37084:13;37075:6;37071:2;37067:15;37060:38;36667:464;-1:-1:-1;;;;;;36802:55:0;-1:-1:-1;;;36802:55:0;;-1:-1:-1;36795:62:0;;36637:535;-1:-1:-1;37160:4:0;36637:535;36487:690;;;;;;:::o;42004:108::-;42064:13;42093;42086:20;;;;;:::i;286:723::-;342:13;563:10;559:53;;-1:-1:-1;590:10:0;;;;;;;;;;;;-1:-1:-1;;;590:10:0;;;;;;559:53;637:5;622:12;678:78;685:9;;678:78;;711:8;;;;:::i;:::-;;-1:-1:-1;734:10:0;;-1:-1:-1;742:2:0;734:10;;:::i;:::-;;;678:78;;;766:19;798:6;788:17;;;;;;-1:-1:-1;;;788:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;788:17:0;;766:39;;816:154;823:10;;816:154;;850:11;860:1;850:11;;:::i;:::-;;-1:-1:-1;919:10:0;927:2;919:5;:10;:::i;:::-;906:24;;:2;:24;:::i;:::-;893:39;;876:6;883;876:14;;;;;;-1:-1:-1;;;876:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;876:56:0;;;;;;;;-1:-1:-1;947:11:0;956:2;947:11;;:::i;:::-;;;816:154;;26652:240;26713:7;-1:-1:-1;;;;;26745:19:0;;26729:102;;;;-1:-1:-1;;;26729:102:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;26853:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;26853:32:0;;-1:-1:-1;;;;;26853:32:0;;26652:240::o;31633:1272::-;31761:12;;-1:-1:-1;;;;;31788:16:0;;31780:62;;;;-1:-1:-1;;;31780:62:0;;;;;;;:::i;:::-;31979:21;31987:12;31979:7;:21::i;:::-;31978:22;31970:64;;;;-1:-1:-1;;;31970:64:0;;;;;;;:::i;:::-;32061:12;;32049:8;:24;;32041:71;;;;-1:-1:-1;;;32041:71:0;;;;;;;:::i;:::-;32121:61;32151:1;32155:2;32159:12;32173:8;32121:21;:61::i;:::-;-1:-1:-1;;;;;32224:16:0;;32191:30;32224:16;;;:12;:16;;;;;;;;;32191:49;;;;;;;;;-1:-1:-1;;;;;32191:49:0;;;;;-1:-1:-1;;;32191:49:0;;;;;;;;;;;32266:119;;;;;;;;32286:19;;32191:49;;32266:119;;;32286:39;;32316:8;;32286:39;:::i;:::-;-1:-1:-1;;;;;32266:119:0;;;;;32369:8;32334:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;32266:119:0;;;;;;-1:-1:-1;;;;;32247:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;32247:138:0;;;;-1:-1:-1;;32247:138:0;;;;;;;;;;;;;;;;;32420:43;;;;;;;;;;;32446:15;32420:43;;;;;;;;32392:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;32392:71:0;-1:-1:-1;;;;32392:71:0;;;;-1:-1:-1;;;;;;32392:71:0;;;;;;;;;;;;;;;32404:12;;32516:281;32540:8;32536:1;:12;32516:281;;;32569:38;;32594:12;;-1:-1:-1;;;;;32569:38:0;;;32586:1;;32569:38;;32586:1;;32569:38;32634:59;32665:1;32669:2;32673:12;32687:5;32634:22;:59::i;:::-;32616:150;;;;-1:-1:-1;;;32616:150:0;;;;;;;:::i;:::-;32775:14;;;;:::i;:::-;;;;32550:3;;;;;:::i;:::-;;;;32516:281;;;-1:-1:-1;32805:12:0;:27;;;32839:60;32868:1;32872:2;32876:12;32890:8;32839:20;:60::i;2726:387::-;3049:20;3097:8;;;2726:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:175:1;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:1178::-;;;;;1195:3;1183:9;1174:7;1170:23;1166:33;1163:2;;;1217:6;1209;1202:22;1163:2;1245:31;1266:9;1245:31;:::i;:::-;1235:41;;1295:2;1316:40;1352:2;1341:9;1337:18;1316:40;:::i;:::-;1306:50;;1403:2;1392:9;1388:18;1375:32;1365:42;;1458:2;1447:9;1443:18;1430:32;1481:18;1522:2;1514:6;1511:14;1508:2;;;1543:6;1535;1528:22;1508:2;1586:6;1575:9;1571:22;1561:32;;1631:7;1624:4;1620:2;1616:13;1612:27;1602:2;;1658:6;1650;1643:22;1602:2;1699;1686:16;1721:2;1717;1714:10;1711:2;;;1727:18;;:::i;:::-;1776:2;1770:9;1845:2;1826:13;;-1:-1:-1;;1822:27:1;1810:40;;1806:49;;1870:18;;;1890:22;;;1867:46;1864:2;;;1916:18;;:::i;:::-;1952:2;1945:22;1976:18;;;2013:11;;;2009:20;;2006:33;-1:-1:-1;2003:2:1;;;2057:6;2049;2042:22;2003:2;2118;2113;2109;2105:11;2100:2;2092:6;2088:15;2075:46;2141:15;;;2137:24;;;2130:40;;;;-1:-1:-1;1153:1048:1;;;;-1:-1:-1;1153:1048:1;;-1:-1:-1;;1153:1048:1:o;2206:369::-;;;2332:2;2320:9;2311:7;2307:23;2303:32;2300:2;;;2353:6;2345;2338:22;2300:2;2381:31;2402:9;2381:31;:::i;:::-;2371:41;;2462:2;2451:9;2447:18;2434:32;2509:5;2502:13;2495:21;2488:5;2485:32;2475:2;;2536:6;2528;2521:22;2475:2;2564:5;2554:15;;;2290:285;;;;;:::o;2580:266::-;;;2709:2;2697:9;2688:7;2684:23;2680:32;2677:2;;;2730:6;2722;2715:22;2677:2;2758:31;2779:9;2758:31;:::i;:::-;2748:41;2836:2;2821:18;;;;2808:32;;-1:-1:-1;;;2667:179:1:o;2851:257::-;;2962:2;2950:9;2941:7;2937:23;2933:32;2930:2;;;2983:6;2975;2968:22;2930:2;3027:9;3014:23;3046:32;3072:5;3046:32;:::i;3113:261::-;;3235:2;3223:9;3214:7;3210:23;3206:32;3203:2;;;3256:6;3248;3241:22;3203:2;3293:9;3287:16;3312:32;3338:5;3312:32;:::i;3379:642::-;;;3511:2;3499:9;3490:7;3486:23;3482:32;3479:2;;;3532:6;3524;3517:22;3479:2;3577:9;3564:23;3606:18;3647:2;3639:6;3636:14;3633:2;;;3668:6;3660;3653:22;3633:2;3711:6;3700:9;3696:22;3686:32;;3756:7;3749:4;3745:2;3741:13;3737:27;3727:2;;3783:6;3775;3768:22;3727:2;3828;3815:16;3854:2;3846:6;3843:14;3840:2;;;3875:6;3867;3860:22;3840:2;3925:7;3920:2;3911:6;3907:2;3903:15;3899:24;3896:37;3893:2;;;3951:6;3943;3936:22;3893:2;3987;3979:11;;;;;4009:6;;-1:-1:-1;3469:552:1;;-1:-1:-1;;;;3469:552:1:o;4026:190::-;;4138:2;4126:9;4117:7;4113:23;4109:32;4106:2;;;4159:6;4151;4144:22;4106:2;-1:-1:-1;4187:23:1;;4096:120;-1:-1:-1;4096:120:1:o;4221:259::-;;4302:5;4296:12;4329:6;4324:3;4317:19;4345:63;4401:6;4394:4;4389:3;4385:14;4378:4;4371:5;4367:16;4345:63;:::i;:::-;4462:2;4441:15;-1:-1:-1;;4437:29:1;4428:39;;;;4469:4;4424:50;;4272:208;-1:-1:-1;;4272:208:1:o;4485:470::-;;4702:6;4696:13;4718:53;4764:6;4759:3;4752:4;4744:6;4740:17;4718:53;:::i;:::-;4834:13;;4793:16;;;;4856:57;4834:13;4793:16;4890:4;4878:17;;4856:57;:::i;:::-;4929:20;;4672:283;-1:-1:-1;;;;4672:283:1:o;4960:205::-;5160:3;5151:14::o;5170:203::-;-1:-1:-1;;;;;5334:32:1;;;;5316:51;;5304:2;5289:18;;5271:102::o;5378:490::-;-1:-1:-1;;;;;5647:15:1;;;5629:34;;5699:15;;5694:2;5679:18;;5672:43;5746:2;5731:18;;5724:34;;;5794:3;5789:2;5774:18;;5767:31;;;5378:490;;5815:47;;5842:19;;5834:6;5815:47;:::i;:::-;5807:55;5581:287;-1:-1:-1;;;;;;5581:287:1:o;5873:187::-;6038:14;;6031:22;6013:41;;6001:2;5986:18;;5968:92::o;6065:221::-;;6214:2;6203:9;6196:21;6234:46;6276:2;6265:9;6261:18;6253:6;6234:46;:::i;6291:398::-;6493:2;6475:21;;;6532:2;6512:18;;;6505:30;6571:34;6566:2;6551:18;;6544:62;-1:-1:-1;;;6637:2:1;6622:18;;6615:32;6679:3;6664:19;;6465:224::o;6694:402::-;6896:2;6878:21;;;6935:2;6915:18;;;6908:30;6974:34;6969:2;6954:18;;6947:62;-1:-1:-1;;;7040:2:1;7025:18;;7018:36;7086:3;7071:19;;6868:228::o;7101:346::-;7303:2;7285:21;;;7342:2;7322:18;;;7315:30;-1:-1:-1;;;7376:2:1;7361:18;;7354:52;7438:2;7423:18;;7275:172::o;7452:406::-;7654:2;7636:21;;;7693:2;7673:18;;;7666:30;7732:34;7727:2;7712:18;;7705:62;-1:-1:-1;;;7798:2:1;7783:18;;7776:40;7848:3;7833:19;;7626:232::o;7863:399::-;8065:2;8047:21;;;8104:2;8084:18;;;8077:30;8143:34;8138:2;8123:18;;8116:62;-1:-1:-1;;;8209:2:1;8194:18;;8187:33;8252:3;8237:19;;8037:225::o;8267:401::-;8469:2;8451:21;;;8508:2;8488:18;;;8481:30;8547:34;8542:2;8527:18;;8520:62;-1:-1:-1;;;8613:2:1;8598:18;;8591:35;8658:3;8643:19;;8441:227::o;8673:413::-;8875:2;8857:21;;;8914:2;8894:18;;;8887:30;8953:34;8948:2;8933:18;;8926:62;-1:-1:-1;;;9019:2:1;9004:18;;8997:47;9076:3;9061:19;;8847:239::o;9091:331::-;9293:2;9275:21;;;9332:1;9312:18;;;9305:29;-1:-1:-1;;;9365:2:1;9350:18;;9343:38;9413:2;9398:18;;9265:157::o;9427:421::-;9629:2;9611:21;;;9668:2;9648:18;;;9641:30;9707:34;9702:2;9687:18;;9680:62;9778:27;9773:2;9758:18;;9751:55;9838:3;9823:19;;9601:247::o;9853:348::-;10055:2;10037:21;;;10094:2;10074:18;;;10067:30;10133:26;10128:2;10113:18;;10106:54;10192:2;10177:18;;10027:174::o;10206:407::-;10408:2;10390:21;;;10447:2;10427:18;;;10420:30;10486:34;10481:2;10466:18;;10459:62;-1:-1:-1;;;10552:2:1;10537:18;;10530:41;10603:3;10588:19;;10380:233::o;10618:402::-;10820:2;10802:21;;;10859:2;10839:18;;;10832:30;10898:34;10893:2;10878:18;;10871:62;-1:-1:-1;;;10964:2:1;10949:18;;10942:36;11010:3;10995:19;;10792:228::o;11025:343::-;11227:2;11209:21;;;11266:2;11246:18;;;11239:30;-1:-1:-1;;;11300:2:1;11285:18;;11278:49;11359:2;11344:18;;11199:169::o;11373:356::-;11575:2;11557:21;;;11594:18;;;11587:30;11653:34;11648:2;11633:18;;11626:62;11720:2;11705:18;;11547:182::o;11734:411::-;11936:2;11918:21;;;11975:2;11955:18;;;11948:30;12014:34;12009:2;11994:18;;11987:62;-1:-1:-1;;;12080:2:1;12065:18;;12058:45;12135:3;12120:19;;11908:237::o;12150:350::-;12352:2;12334:21;;;12391:2;12371:18;;;12364:30;12430:28;12425:2;12410:18;;12403:56;12491:2;12476:18;;12324:176::o;12505:414::-;12707:2;12689:21;;;12746:2;12726:18;;;12719:30;12785:34;12780:2;12765:18;;12758:62;-1:-1:-1;;;12851:2:1;12836:18;;12829:48;12909:3;12894:19;;12679:240::o;12924:349::-;13126:2;13108:21;;;13165:2;13145:18;;;13138:30;13204:27;13199:2;13184:18;;13177:55;13264:2;13249:18;;13098:175::o;13278:398::-;13480:2;13462:21;;;13519:2;13499:18;;;13492:30;13558:34;13553:2;13538:18;;13531:62;-1:-1:-1;;;13624:2:1;13609:18;;13602:32;13666:3;13651:19;;13452:224::o;13681:415::-;13883:2;13865:21;;;13922:2;13902:18;;;13895:30;13961:34;13956:2;13941:18;;13934:62;-1:-1:-1;;;14027:2:1;14012:18;;14005:49;14086:3;14071:19;;13855:241::o;14101:353::-;14303:2;14285:21;;;14342:2;14322:18;;;14315:30;14381:31;14376:2;14361:18;;14354:59;14445:2;14430:18;;14275:179::o;14459:397::-;14661:2;14643:21;;;14700:2;14680:18;;;14673:30;14739:34;14734:2;14719:18;;14712:62;-1:-1:-1;;;14805:2:1;14790:18;;14783:31;14846:3;14831:19;;14633:223::o;14861:410::-;15063:2;15045:21;;;15102:2;15082:18;;;15075:30;15141:34;15136:2;15121:18;;15114:62;-1:-1:-1;;;15207:2:1;15192:18;;15185:44;15261:3;15246:19;;15035:236::o;15276:402::-;15478:2;15460:21;;;15517:2;15497:18;;;15490:30;15556:34;15551:2;15536:18;;15529:62;-1:-1:-1;;;15622:2:1;15607:18;;15600:36;15668:3;15653:19;;15450:228::o;15683:355::-;15885:2;15867:21;;;15924:2;15904:18;;;15897:30;15963:33;15958:2;15943:18;;15936:61;16029:2;16014:18;;15857:181::o;16043:411::-;16245:2;16227:21;;;16284:2;16264:18;;;16257:30;16323:34;16318:2;16303:18;;16296:62;-1:-1:-1;;;16389:2:1;16374:18;;16367:45;16444:3;16429:19;;16217:237::o;16459:409::-;16661:2;16643:21;;;16700:2;16680:18;;;16673:30;16739:34;16734:2;16719:18;;16712:62;-1:-1:-1;;;16805:2:1;16790:18;;16783:43;16858:3;16843:19;;16633:235::o;16873:343::-;17075:2;17057:21;;;17114:2;17094:18;;;17087:30;-1:-1:-1;;;17148:2:1;17133:18;;17126:49;17207:2;17192:18;;17047:169::o;17221:398::-;17423:2;17405:21;;;17462:2;17442:18;;;17435:30;17501:34;17496:2;17481:18;;17474:62;-1:-1:-1;;;17567:2:1;17552:18;;17545:32;17609:3;17594:19;;17395:224::o;17624:360::-;17854:13;;-1:-1:-1;;;;;17850:39:1;17832:58;;17950:4;17938:17;;;17932:24;17958:18;17928:49;17906:20;;;17899:79;;;;17820:2;17805:18;;17787:197::o;17989:177::-;18135:25;;;18123:2;18108:18;;18090:76::o;18171:253::-;;-1:-1:-1;;;;;18300:2:1;18297:1;18293:10;18330:2;18327:1;18323:10;18361:3;18357:2;18353:12;18348:3;18345:21;18342:2;;;18369:18;;:::i;18429:128::-;;18500:1;18496:6;18493:1;18490:13;18487:2;;;18506:18;;:::i;:::-;-1:-1:-1;18542:9:1;;18477:80::o;18562:120::-;;18628:1;18618:2;;18633:18;;:::i;:::-;-1:-1:-1;18667:9:1;;18608:74::o;18687:168::-;;18793:1;18789;18785:6;18781:14;18778:1;18775:21;18770:1;18763:9;18756:17;18752:45;18749:2;;;18800:18;;:::i;:::-;-1:-1:-1;18840:9:1;;18739:116::o;18860:246::-;;-1:-1:-1;;;;;19013:10:1;;;;18983;;19035:12;;;19032:2;;;19050:18;;:::i;:::-;19087:13;;18909:197;-1:-1:-1;;;18909:197:1:o;19111:125::-;;19179:1;19176;19173:8;19170:2;;;19184:18;;:::i;:::-;-1:-1:-1;19221:9:1;;19160:76::o;19241:258::-;19313:1;19323:113;19337:6;19334:1;19331:13;19323:113;;;19413:11;;;19407:18;19394:11;;;19387:39;19359:2;19352:10;19323:113;;;19454:6;19451:1;19448:13;19445:2;;;-1:-1:-1;;19489:1:1;19471:16;;19464:27;19294:205::o;19504:136::-;;19571:5;19561:2;;19580:18;;:::i;:::-;-1:-1:-1;;;19616:18:1;;19551:89::o;19645:380::-;19730:1;19720:12;;19777:1;19767:12;;;19788:2;;19842:4;19834:6;19830:17;19820:27;;19788:2;19895;19887:6;19884:14;19864:18;19861:38;19858:2;;;19941:10;19936:3;19932:20;19929:1;19922:31;19976:4;19973:1;19966:15;20004:4;20001:1;19994:15;19858:2;;19700:325;;;:::o;20030:135::-;;-1:-1:-1;;20090:17:1;;20087:2;;;20110:18;;:::i;:::-;-1:-1:-1;20157:1:1;20146:13;;20077:88::o;20170:112::-;;20228:1;20218:2;;20233:18;;:::i;:::-;-1:-1:-1;20267:9:1;;20208:74::o;20287:127::-;20348:10;20343:3;20339:20;20336:1;20329:31;20379:4;20376:1;20369:15;20403:4;20400:1;20393:15;20419:127;20480:10;20475:3;20471:20;20468:1;20461:31;20511:4;20508:1;20501:15;20535:4;20532:1;20525:15;20551:127;20612:10;20607:3;20603:20;20600:1;20593:31;20643:4;20640:1;20633:15;20667:4;20664:1;20657:15;20683:133;-1:-1:-1;;;;;;20759:32:1;;20749:43;;20739:2;;20806:1;20803;20796:12
Swarm Source
ipfs://d4a8c4ed2f6b935aea785eedb29a1e261ada220b95685cb5b4553cc60af9d51a
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.