ERC-721
Overview
Max Total Supply
554 PLAPE
Holders
419
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PLAPELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PlastiApes
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-08 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.12; /** * @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 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 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @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 Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct StakingInfo { bool staked; bool usedForMint; uint duration; } struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex = 1; // Token name string private _name; // Token symbol string private _symbol; string internal uri; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; mapping(uint => StakingInfo) public _stakedTokens; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex - 1; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; 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); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; 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(), ".json")) : ''; } /** * @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 uri; } /** * @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 { require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!"); safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!"); _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 && tokenId > 0; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract PlastiApes is ERC721A, Ownable { constructor() ERC721A("PlastiApes", "PLAPE") {} // --------------------------------------------------------------------------------------------- // CONSTANTS // --------------------------------------------------------------------------------------------- uint256 private constant MAX_SUPPLY = 555; bool public saleStatus; uint256 public price; uint256 public maxPerTx; uint256 public maxPerWallet; // --------------------------------------------------------------------------------------------- // MAPPINGS // --------------------------------------------------------------------------------------------- mapping(address => uint) public _minted; // --------------------------------------------------------------------------------------------- // OWNER SETTERS // --------------------------------------------------------------------------------------------- function withdraw() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } function setSaleStatus() external onlyOwner { saleStatus = !saleStatus; } function setPrice(uint amount) external onlyOwner { price = amount; } function setMaxPerTx(uint amount) external onlyOwner { maxPerTx = amount; } function setMaxPerWallet(uint amount) external onlyOwner { maxPerWallet = amount; } function setBaseURI(string calldata _uri) external onlyOwner { uri = _uri; } // --------------------------------------------------------------------------------------------- // PUBLIC SETTERS // --------------------------------------------------------------------------------------------- function ownerMint(uint256 amount) external onlyOwner { require(currentIndex <= MAX_SUPPLY + 1, "NOT_ALLOWED!"); _safeMint(msg.sender, amount); } function mint(uint amount) external payable { require(saleStatus, "SALE_NOT_ACTIVE!"); require(amount * price == msg.value, "EXCEEDS_MAX_PER_TX!"); require(amount <= maxPerTx, "EXCEEDS_MAX_PER_TX!"); require(totalSupply() + 1 < MAX_SUPPLY, "NOT_ENOUGH_SUPPLY_TO_MINT_DESIRED_AMOUNT"); require(_minted[msg.sender] + amount <= maxPerWallet, "EXCEEDS_MAX_PER_WALLET!"); _safeMint(msg.sender, amount); _minted[msg.sender] += amount; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_stakedTokens","outputs":[{"internalType":"bool","name":"staked","type":"bool"},{"internalType":"bool","name":"usedForMint","type":"bool"},{"internalType":"uint256","name":"duration","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleStatus","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260016000553480156200001657600080fd5b50604080518082018252600a815269506c617374694170657360b01b602080830191825283518085019094526005845264504c41504560d81b9084015281519192916200006691600191620000f5565b5080516200007c906002906020840190620000f5565b50505062000099620000936200009f60201b60201c565b620000a3565b620001d8565b3390565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000103906200019b565b90600052602060002090601f01602090048101928262000127576000855562000172565b82601f106200014257805160ff191683800117855562000172565b8280016001018555821562000172579182015b828111156200017257825182559160200191906001019062000155565b506200018092915062000184565b5090565b5b8082111562000180576000815560010162000185565b600181811c90821680620001b057607f821691505b60208210811415620001d257634e487b7160e01b600052602260045260246000fd5b50919050565b61217a80620001e86000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c5146105a3578063f19e75d4146105ec578063f2fde38b1461060c578063f9020e331461062c578063f968adbe1461064d57600080fd5b8063b88d4fde14610523578063c6f6f21614610543578063c87b56dd14610563578063e268e4d31461058357600080fd5b806395d89b41116100dc57806395d89b41146104c5578063a035b1fe146104da578063a0712d68146104f0578063a22cb4651461050357600080fd5b8063715018a6146104455780637de77ecc1461045a5780638da5cb5b1461048757806391b7f5ed146104a557600080fd5b80633ccfd60b11610185578063502b33af11610154578063502b33af146103d057806355f804b3146103e55780636352211e1461040557806370a082311461042557600080fd5b80633ccfd60b1461036557806342842e0e1461037a578063453c23101461039a5780634f6ccce7146103b057600080fd5b806318160ddd116101c157806318160ddd146102a4578063204f490c146102c757806323b872dd146103255780632f745c591461034557600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611bdd565b610663565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d6106d0565b60405161021f9190611c52565b34801561025657600080fd5b5061026a610265366004611c65565b610762565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611c9a565b6107f0565b005b3480156102b057600080fd5b506102b9610908565b60405190815260200161021f565b3480156102d357600080fd5b506103086102e2366004611c65565b6008602052600090815260409020805460019091015460ff808316926101009004169083565b60408051931515845291151560208401529082015260600161021f565b34801561033157600080fd5b506102a2610340366004611cc4565b61091e565b34801561035157600080fd5b506102b9610360366004611c9a565b610958565b34801561037157600080fd5b506102a2610abf565b34801561038657600080fd5b506102a2610395366004611cc4565b610b18565b3480156103a657600080fd5b506102b9600c5481565b3480156103bc57600080fd5b506102b96103cb366004611c65565b610b62565b3480156103dc57600080fd5b506102a2610bca565b3480156103f157600080fd5b506102a2610400366004611d00565b610c15565b34801561041157600080fd5b5061026a610420366004611c65565b610c4b565b34801561043157600080fd5b506102b9610440366004611d72565b610c5d565b34801561045157600080fd5b506102a2610cee565b34801561046657600080fd5b506102b9610475366004611d72565b600d6020526000908152604090205481565b34801561049357600080fd5b506009546001600160a01b031661026a565b3480156104b157600080fd5b506102a26104c0366004611c65565b610d24565b3480156104d157600080fd5b5061023d610d53565b3480156104e657600080fd5b506102b9600a5481565b6102a26104fe366004611c65565b610d62565b34801561050f57600080fd5b506102a261051e366004611d8d565b610f59565b34801561052f57600080fd5b506102a261053e366004611ddf565b61101e565b34801561054f57600080fd5b506102a261055e366004611c65565b611086565b34801561056f57600080fd5b5061023d61057e366004611c65565b6110b5565b34801561058f57600080fd5b506102a261059e366004611c65565b611181565b3480156105af57600080fd5b506102136105be366004611ebb565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105f857600080fd5b506102a2610607366004611c65565b6111b0565b34801561061857600080fd5b506102a2610627366004611d72565b611231565b34801561063857600080fd5b5060095461021390600160a01b900460ff1681565b34801561065957600080fd5b506102b9600b5481565b60006001600160e01b031982166380ac58cd60e01b148061069457506001600160e01b03198216635b5e139f60e01b145b806106af57506001600160e01b0319821663780e9d6360e01b145b806106ca57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106df90611eee565b80601f016020809104026020016040519081016040528092919081815260200182805461070b90611eee565b80156107585780601f1061072d57610100808354040283529160200191610758565b820191906000526020600020905b81548152906001019060200180831161073b57829003601f168201915b5050505050905090565b600061076d826112c9565b6107d45760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107fb82610c4b565b9050806001600160a01b0316836001600160a01b0316141561086a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107cb565b336001600160a01b0382161480610886575061088681336105be565b6108f85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107cb565b6109038383836112dc565b505050565b600060016000546109199190611f3f565b905090565b60008181526008602052604090205460ff161561094d5760405162461bcd60e51b81526004016107cb90611f56565b610903838383611338565b600061096383610c5d565b82106109bc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107cb565b60006109c6610908565b905060008060005b83811015610a5f576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a2157805192505b876001600160a01b0316836001600160a01b03161415610a565786841415610a4f575093506106ca92505050565b6001909301925b506001016109ce565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107cb565b6009546001600160a01b03163314610ae95760405162461bcd60e51b81526004016107cb90611f7d565b60405133904780156108fc02916000818181858888f19350505050158015610b15573d6000803e3d6000fd5b50565b60008181526008602052604090205460ff1615610b475760405162461bcd60e51b81526004016107cb90611f56565b6109038383836040518060200160405280600081525061101e565b6000610b6c610908565b8210610bc65760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107cb565b5090565b6009546001600160a01b03163314610bf45760405162461bcd60e51b81526004016107cb90611f7d565b6009805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6009546001600160a01b03163314610c3f5760405162461bcd60e51b81526004016107cb90611f7d565b61090360038383611b37565b6000610c568261161b565b5192915050565b60006001600160a01b038216610cc95760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107cb565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6009546001600160a01b03163314610d185760405162461bcd60e51b81526004016107cb90611f7d565b610d2260006116f0565b565b6009546001600160a01b03163314610d4e5760405162461bcd60e51b81526004016107cb90611f7d565b600a55565b6060600280546106df90611eee565b600954600160a01b900460ff16610dae5760405162461bcd60e51b815260206004820152601060248201526f53414c455f4e4f545f4143544956452160801b60448201526064016107cb565b34600a5482610dbd9190611fb2565b14610e005760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b60448201526064016107cb565b600b54811115610e485760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b60448201526064016107cb565b61022b610e53610908565b610e5e906001611fd1565b10610ebc5760405162461bcd60e51b815260206004820152602860248201527f4e4f545f454e4f5547485f535550504c595f544f5f4d494e545f4445534952456044820152671117d05353d5539560c21b60648201526084016107cb565b600c54336000908152600d6020526040902054610eda908390611fd1565b1115610f285760405162461bcd60e51b815260206004820152601760248201527f455843454544535f4d41585f5045525f57414c4c45542100000000000000000060448201526064016107cb565b610f323382611742565b336000908152600d602052604081208054839290610f51908490611fd1565b909155505050565b6001600160a01b038216331415610fb25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107cb565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60008281526008602052604090205460ff161561104d5760405162461bcd60e51b81526004016107cb90611f56565b611058848484611338565b61106484848484611760565b6110805760405162461bcd60e51b81526004016107cb90611fe9565b50505050565b6009546001600160a01b031633146110b05760405162461bcd60e51b81526004016107cb90611f7d565b600b55565b60606110c0826112c9565b6111245760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107cb565b600061112e61185f565b905080516000141561114f576040518060200160405280600081525061117a565b806111598461186e565b60405160200161116a92919061203c565b6040516020818303038152906040525b9392505050565b6009546001600160a01b031633146111ab5760405162461bcd60e51b81526004016107cb90611f7d565b600c55565b6009546001600160a01b031633146111da5760405162461bcd60e51b81526004016107cb90611f7d565b6111e761022b6001611fd1565b60005411156112275760405162461bcd60e51b815260206004820152600c60248201526b4e4f545f414c4c4f5745442160a01b60448201526064016107cb565b610b153382611742565b6009546001600160a01b0316331461125b5760405162461bcd60e51b81526004016107cb90611f7d565b6001600160a01b0381166112c05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cb565b610b15816116f0565b60008054821080156106ca575050151590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113438261161b565b80519091506000906001600160a01b0316336001600160a01b0316148061137a57503361136f84610762565b6001600160a01b0316145b8061138c5750815161138c90336105be565b9050806113f65760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107cb565b846001600160a01b031682600001516001600160a01b03161461146a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107cb565b6001600160a01b0384166114ce5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107cb565b6114de60008484600001516112dc565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166115d157611584816112c9565b156115d1578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611638826112c9565b6116975760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107cb565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116e6579392505050565b5060001901611699565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61175c82826040518060200160405280600081525061196c565b5050565b60006001600160a01b0384163b1561185357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117a490339089908890889060040161207b565b6020604051808303816000875af19250505080156117df575060408051601f3d908101601f191682019092526117dc918101906120b8565b60015b611839573d80801561180d576040519150601f19603f3d011682016040523d82523d6000602084013e611812565b606091505b5080516118315760405162461bcd60e51b81526004016107cb90611fe9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611857565b5060015b949350505050565b6060600380546106df90611eee565b6060816118925750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118bc57806118a6816120d5565b91506118b59050600a83612106565b9150611896565b60008167ffffffffffffffff8111156118d7576118d7611dc9565b6040519080825280601f01601f191660200182016040528015611901576020820181803683370190505b5090505b841561185757611916600183611f3f565b9150611923600a8661211a565b61192e906030611fd1565b60f81b8183815181106119435761194361212e565b60200101906001600160f81b031916908160001a905350611965600a86612106565b9450611905565b61090383838360016000546001600160a01b0385166119d75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107cb565b83611a355760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016107cb565b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611b2e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611b2257611b066000888488611760565b611b225760405162461bcd60e51b81526004016107cb90611fe9565b60019182019101611ab3565b50600055611614565b828054611b4390611eee565b90600052602060002090601f016020900481019282611b655760008555611bab565b82601f10611b7e5782800160ff19823516178555611bab565b82800160010185558215611bab579182015b82811115611bab578235825591602001919060010190611b90565b50610bc69291505b80821115610bc65760008155600101611bb3565b6001600160e01b031981168114610b1557600080fd5b600060208284031215611bef57600080fd5b813561117a81611bc7565b60005b83811015611c15578181015183820152602001611bfd565b838111156110805750506000910152565b60008151808452611c3e816020860160208601611bfa565b601f01601f19169290920160200192915050565b60208152600061117a6020830184611c26565b600060208284031215611c7757600080fd5b5035919050565b80356001600160a01b0381168114611c9557600080fd5b919050565b60008060408385031215611cad57600080fd5b611cb683611c7e565b946020939093013593505050565b600080600060608486031215611cd957600080fd5b611ce284611c7e565b9250611cf060208501611c7e565b9150604084013590509250925092565b60008060208385031215611d1357600080fd5b823567ffffffffffffffff80821115611d2b57600080fd5b818501915085601f830112611d3f57600080fd5b813581811115611d4e57600080fd5b866020828501011115611d6057600080fd5b60209290920196919550909350505050565b600060208284031215611d8457600080fd5b61117a82611c7e565b60008060408385031215611da057600080fd5b611da983611c7e565b915060208301358015158114611dbe57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611df557600080fd5b611dfe85611c7e565b9350611e0c60208601611c7e565b925060408501359150606085013567ffffffffffffffff80821115611e3057600080fd5b818701915087601f830112611e4457600080fd5b813581811115611e5657611e56611dc9565b604051601f8201601f19908116603f01168101908382118183101715611e7e57611e7e611dc9565b816040528281528a6020848701011115611e9757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611ece57600080fd5b611ed783611c7e565b9150611ee560208401611c7e565b90509250929050565b600181811c90821680611f0257607f821691505b60208210811415611f2357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611f5157611f51611f29565b500390565b6020808252600d908201526c544f4b454e5f5354414b45442160981b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615611fcc57611fcc611f29565b500290565b60008219821115611fe457611fe4611f29565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000835161204e818460208801611bfa565b835190830190612062818360208801611bfa565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120ae90830184611c26565b9695505050505050565b6000602082840312156120ca57600080fd5b815161117a81611bc7565b60006000198214156120e9576120e9611f29565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612115576121156120f0565b500490565b600082612129576121296120f0565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220fcfde19bcf39eff8e95d1dc7c8fd6be71aad6a230595b734f3911aa04d065d8f64736f6c634300080c0033
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c5146105a3578063f19e75d4146105ec578063f2fde38b1461060c578063f9020e331461062c578063f968adbe1461064d57600080fd5b8063b88d4fde14610523578063c6f6f21614610543578063c87b56dd14610563578063e268e4d31461058357600080fd5b806395d89b41116100dc57806395d89b41146104c5578063a035b1fe146104da578063a0712d68146104f0578063a22cb4651461050357600080fd5b8063715018a6146104455780637de77ecc1461045a5780638da5cb5b1461048757806391b7f5ed146104a557600080fd5b80633ccfd60b11610185578063502b33af11610154578063502b33af146103d057806355f804b3146103e55780636352211e1461040557806370a082311461042557600080fd5b80633ccfd60b1461036557806342842e0e1461037a578063453c23101461039a5780634f6ccce7146103b057600080fd5b806318160ddd116101c157806318160ddd146102a4578063204f490c146102c757806323b872dd146103255780632f745c591461034557600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611bdd565b610663565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d6106d0565b60405161021f9190611c52565b34801561025657600080fd5b5061026a610265366004611c65565b610762565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611c9a565b6107f0565b005b3480156102b057600080fd5b506102b9610908565b60405190815260200161021f565b3480156102d357600080fd5b506103086102e2366004611c65565b6008602052600090815260409020805460019091015460ff808316926101009004169083565b60408051931515845291151560208401529082015260600161021f565b34801561033157600080fd5b506102a2610340366004611cc4565b61091e565b34801561035157600080fd5b506102b9610360366004611c9a565b610958565b34801561037157600080fd5b506102a2610abf565b34801561038657600080fd5b506102a2610395366004611cc4565b610b18565b3480156103a657600080fd5b506102b9600c5481565b3480156103bc57600080fd5b506102b96103cb366004611c65565b610b62565b3480156103dc57600080fd5b506102a2610bca565b3480156103f157600080fd5b506102a2610400366004611d00565b610c15565b34801561041157600080fd5b5061026a610420366004611c65565b610c4b565b34801561043157600080fd5b506102b9610440366004611d72565b610c5d565b34801561045157600080fd5b506102a2610cee565b34801561046657600080fd5b506102b9610475366004611d72565b600d6020526000908152604090205481565b34801561049357600080fd5b506009546001600160a01b031661026a565b3480156104b157600080fd5b506102a26104c0366004611c65565b610d24565b3480156104d157600080fd5b5061023d610d53565b3480156104e657600080fd5b506102b9600a5481565b6102a26104fe366004611c65565b610d62565b34801561050f57600080fd5b506102a261051e366004611d8d565b610f59565b34801561052f57600080fd5b506102a261053e366004611ddf565b61101e565b34801561054f57600080fd5b506102a261055e366004611c65565b611086565b34801561056f57600080fd5b5061023d61057e366004611c65565b6110b5565b34801561058f57600080fd5b506102a261059e366004611c65565b611181565b3480156105af57600080fd5b506102136105be366004611ebb565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105f857600080fd5b506102a2610607366004611c65565b6111b0565b34801561061857600080fd5b506102a2610627366004611d72565b611231565b34801561063857600080fd5b5060095461021390600160a01b900460ff1681565b34801561065957600080fd5b506102b9600b5481565b60006001600160e01b031982166380ac58cd60e01b148061069457506001600160e01b03198216635b5e139f60e01b145b806106af57506001600160e01b0319821663780e9d6360e01b145b806106ca57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106df90611eee565b80601f016020809104026020016040519081016040528092919081815260200182805461070b90611eee565b80156107585780601f1061072d57610100808354040283529160200191610758565b820191906000526020600020905b81548152906001019060200180831161073b57829003601f168201915b5050505050905090565b600061076d826112c9565b6107d45760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107fb82610c4b565b9050806001600160a01b0316836001600160a01b0316141561086a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107cb565b336001600160a01b0382161480610886575061088681336105be565b6108f85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107cb565b6109038383836112dc565b505050565b600060016000546109199190611f3f565b905090565b60008181526008602052604090205460ff161561094d5760405162461bcd60e51b81526004016107cb90611f56565b610903838383611338565b600061096383610c5d565b82106109bc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107cb565b60006109c6610908565b905060008060005b83811015610a5f576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a2157805192505b876001600160a01b0316836001600160a01b03161415610a565786841415610a4f575093506106ca92505050565b6001909301925b506001016109ce565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107cb565b6009546001600160a01b03163314610ae95760405162461bcd60e51b81526004016107cb90611f7d565b60405133904780156108fc02916000818181858888f19350505050158015610b15573d6000803e3d6000fd5b50565b60008181526008602052604090205460ff1615610b475760405162461bcd60e51b81526004016107cb90611f56565b6109038383836040518060200160405280600081525061101e565b6000610b6c610908565b8210610bc65760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107cb565b5090565b6009546001600160a01b03163314610bf45760405162461bcd60e51b81526004016107cb90611f7d565b6009805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6009546001600160a01b03163314610c3f5760405162461bcd60e51b81526004016107cb90611f7d565b61090360038383611b37565b6000610c568261161b565b5192915050565b60006001600160a01b038216610cc95760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107cb565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6009546001600160a01b03163314610d185760405162461bcd60e51b81526004016107cb90611f7d565b610d2260006116f0565b565b6009546001600160a01b03163314610d4e5760405162461bcd60e51b81526004016107cb90611f7d565b600a55565b6060600280546106df90611eee565b600954600160a01b900460ff16610dae5760405162461bcd60e51b815260206004820152601060248201526f53414c455f4e4f545f4143544956452160801b60448201526064016107cb565b34600a5482610dbd9190611fb2565b14610e005760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b60448201526064016107cb565b600b54811115610e485760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b60448201526064016107cb565b61022b610e53610908565b610e5e906001611fd1565b10610ebc5760405162461bcd60e51b815260206004820152602860248201527f4e4f545f454e4f5547485f535550504c595f544f5f4d494e545f4445534952456044820152671117d05353d5539560c21b60648201526084016107cb565b600c54336000908152600d6020526040902054610eda908390611fd1565b1115610f285760405162461bcd60e51b815260206004820152601760248201527f455843454544535f4d41585f5045525f57414c4c45542100000000000000000060448201526064016107cb565b610f323382611742565b336000908152600d602052604081208054839290610f51908490611fd1565b909155505050565b6001600160a01b038216331415610fb25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107cb565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60008281526008602052604090205460ff161561104d5760405162461bcd60e51b81526004016107cb90611f56565b611058848484611338565b61106484848484611760565b6110805760405162461bcd60e51b81526004016107cb90611fe9565b50505050565b6009546001600160a01b031633146110b05760405162461bcd60e51b81526004016107cb90611f7d565b600b55565b60606110c0826112c9565b6111245760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107cb565b600061112e61185f565b905080516000141561114f576040518060200160405280600081525061117a565b806111598461186e565b60405160200161116a92919061203c565b6040516020818303038152906040525b9392505050565b6009546001600160a01b031633146111ab5760405162461bcd60e51b81526004016107cb90611f7d565b600c55565b6009546001600160a01b031633146111da5760405162461bcd60e51b81526004016107cb90611f7d565b6111e761022b6001611fd1565b60005411156112275760405162461bcd60e51b815260206004820152600c60248201526b4e4f545f414c4c4f5745442160a01b60448201526064016107cb565b610b153382611742565b6009546001600160a01b0316331461125b5760405162461bcd60e51b81526004016107cb90611f7d565b6001600160a01b0381166112c05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cb565b610b15816116f0565b60008054821080156106ca575050151590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113438261161b565b80519091506000906001600160a01b0316336001600160a01b0316148061137a57503361136f84610762565b6001600160a01b0316145b8061138c5750815161138c90336105be565b9050806113f65760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107cb565b846001600160a01b031682600001516001600160a01b03161461146a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107cb565b6001600160a01b0384166114ce5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107cb565b6114de60008484600001516112dc565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166115d157611584816112c9565b156115d1578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611638826112c9565b6116975760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107cb565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116e6579392505050565b5060001901611699565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61175c82826040518060200160405280600081525061196c565b5050565b60006001600160a01b0384163b1561185357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117a490339089908890889060040161207b565b6020604051808303816000875af19250505080156117df575060408051601f3d908101601f191682019092526117dc918101906120b8565b60015b611839573d80801561180d576040519150601f19603f3d011682016040523d82523d6000602084013e611812565b606091505b5080516118315760405162461bcd60e51b81526004016107cb90611fe9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611857565b5060015b949350505050565b6060600380546106df90611eee565b6060816118925750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118bc57806118a6816120d5565b91506118b59050600a83612106565b9150611896565b60008167ffffffffffffffff8111156118d7576118d7611dc9565b6040519080825280601f01601f191660200182016040528015611901576020820181803683370190505b5090505b841561185757611916600183611f3f565b9150611923600a8661211a565b61192e906030611fd1565b60f81b8183815181106119435761194361212e565b60200101906001600160f81b031916908160001a905350611965600a86612106565b9450611905565b61090383838360016000546001600160a01b0385166119d75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107cb565b83611a355760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016107cb565b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611b2e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611b2257611b066000888488611760565b611b225760405162461bcd60e51b81526004016107cb90611fe9565b60019182019101611ab3565b50600055611614565b828054611b4390611eee565b90600052602060002090601f016020900481019282611b655760008555611bab565b82601f10611b7e5782800160ff19823516178555611bab565b82800160010185558215611bab579182015b82811115611bab578235825591602001919060010190611b90565b50610bc69291505b80821115610bc65760008155600101611bb3565b6001600160e01b031981168114610b1557600080fd5b600060208284031215611bef57600080fd5b813561117a81611bc7565b60005b83811015611c15578181015183820152602001611bfd565b838111156110805750506000910152565b60008151808452611c3e816020860160208601611bfa565b601f01601f19169290920160200192915050565b60208152600061117a6020830184611c26565b600060208284031215611c7757600080fd5b5035919050565b80356001600160a01b0381168114611c9557600080fd5b919050565b60008060408385031215611cad57600080fd5b611cb683611c7e565b946020939093013593505050565b600080600060608486031215611cd957600080fd5b611ce284611c7e565b9250611cf060208501611c7e565b9150604084013590509250925092565b60008060208385031215611d1357600080fd5b823567ffffffffffffffff80821115611d2b57600080fd5b818501915085601f830112611d3f57600080fd5b813581811115611d4e57600080fd5b866020828501011115611d6057600080fd5b60209290920196919550909350505050565b600060208284031215611d8457600080fd5b61117a82611c7e565b60008060408385031215611da057600080fd5b611da983611c7e565b915060208301358015158114611dbe57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611df557600080fd5b611dfe85611c7e565b9350611e0c60208601611c7e565b925060408501359150606085013567ffffffffffffffff80821115611e3057600080fd5b818701915087601f830112611e4457600080fd5b813581811115611e5657611e56611dc9565b604051601f8201601f19908116603f01168101908382118183101715611e7e57611e7e611dc9565b816040528281528a6020848701011115611e9757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611ece57600080fd5b611ed783611c7e565b9150611ee560208401611c7e565b90509250929050565b600181811c90821680611f0257607f821691505b60208210811415611f2357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611f5157611f51611f29565b500390565b6020808252600d908201526c544f4b454e5f5354414b45442160981b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615611fcc57611fcc611f29565b500290565b60008219821115611fe457611fe4611f29565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000835161204e818460208801611bfa565b835190830190612062818360208801611bfa565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120ae90830184611c26565b9695505050505050565b6000602082840312156120ca57600080fd5b815161117a81611bc7565b60006000198214156120e9576120e9611f29565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612115576121156120f0565b500490565b600082612129576121296120f0565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220fcfde19bcf39eff8e95d1dc7c8fd6be71aad6a230595b734f3911aa04d065d8f64736f6c634300080c0033
Deployed Bytecode Sourcemap
38688:2533:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25338:372;;;;;;;;;;-1:-1:-1;25338:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25338:372:0;;;;;;;;27224:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28796:214::-;;;;;;;;;;-1:-1:-1;28796:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28796:214:0;1528:203:1;28317:413:0;;;;;;;;;;-1:-1:-1;28317:413:0;;;;;:::i;:::-;;:::i;:::-;;23591:104;;;;;;;;;;;;;:::i;:::-;;;2319:25:1;;;2307:2;2292:18;23591:104:0;2173:177:1;23341:49:0;;;;;;;;;;-1:-1:-1;23341:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2570:14:1;;2563:22;2545:41;;2629:14;;2622:22;2617:2;2602:18;;2595:50;2661:18;;;2654:34;2533:2;2518:18;23341:49:0;2355:339:1;29672:229:0;;;;;;;;;;-1:-1:-1;29672:229:0;;;;;:::i;:::-;;:::i;24259:1007::-;;;;;;;;;;-1:-1:-1;24259:1007:0;;;;;:::i;:::-;;:::i;39704:109::-;;;;;;;;;;;;;:::i;29972:244::-;;;;;;;;;;-1:-1:-1;29972:244:0;;;;;:::i;:::-;;:::i;39163:27::-;;;;;;;;;;;;;;;;23772:187;;;;;;;;;;-1:-1:-1;23772:187:0;;;;;:::i;:::-;;:::i;39821:87::-;;;;;;;;;;;;;:::i;40217:90::-;;;;;;;;;;-1:-1:-1;40217:90:0;;;;;:::i;:::-;;:::i;27033:124::-;;;;;;;;;;-1:-1:-1;27033:124:0;;;;;:::i;:::-;;:::i;25774:221::-;;;;;;;;;;-1:-1:-1;25774:221:0;;;;;:::i;:::-;;:::i;4365:94::-;;;;;;;;;;;;;:::i;39427:39::-;;;;;;;;;;-1:-1:-1;39427:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;3714:87;;;;;;;;;;-1:-1:-1;3787:6:0;;-1:-1:-1;;;;;3787:6:0;3714:87;;39916:83;;;;;;;;;;-1:-1:-1;39916:83:0;;;;;:::i;:::-;;:::i;27393:104::-;;;;;;;;;;;;;:::i;39100:20::-;;;;;;;;;;;;;;;;40720:498;;;;;;:::i;:::-;;:::i;29082:288::-;;;;;;;;;;-1:-1:-1;29082:288:0;;;;;:::i;:::-;;:::i;30287:422::-;;;;;;;;;;-1:-1:-1;30287:422:0;;;;;:::i;:::-;;:::i;40011:89::-;;;;;;;;;;-1:-1:-1;40011:89:0;;;;;:::i;:::-;;:::i;27568:344::-;;;;;;;;;;-1:-1:-1;27568:344:0;;;;;:::i;:::-;;:::i;40112:97::-;;;;;;;;;;-1:-1:-1;40112:97:0;;;;;:::i;:::-;;:::i;29441:164::-;;;;;;;;;;-1:-1:-1;29441:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29562:25:0;;;29538:4;29562:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29441:164;40544:168;;;;;;;;;;-1:-1:-1;40544:168:0;;;;;:::i;:::-;;:::i;4614:192::-;;;;;;;;;;-1:-1:-1;4614:192:0;;;;;:::i;:::-;;:::i;39071:22::-;;;;;;;;;;-1:-1:-1;39071:22:0;;;;-1:-1:-1;;;39071:22:0;;;;;;39129:23;;;;;;;;;;;;;;;;25338:372;25440:4;-1:-1:-1;;;;;;25477:40:0;;-1:-1:-1;;;25477:40:0;;:105;;-1:-1:-1;;;;;;;25534:48:0;;-1:-1:-1;;;25534:48:0;25477:105;:172;;;-1:-1:-1;;;;;;;25599:50:0;;-1:-1:-1;;;25599:50:0;25477:172;:225;;;-1:-1:-1;;;;;;;;;;15425:40:0;;;25666:36;25457:245;25338:372;-1:-1:-1;;25338:372:0:o;27224:100::-;27278:13;27311:5;27304:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27224:100;:::o;28796:214::-;28864:7;28892:16;28900:7;28892;:16::i;:::-;28884:74;;;;-1:-1:-1;;;28884:74:0;;6299:2:1;28884:74:0;;;6281:21:1;6338:2;6318:18;;;6311:30;6377:34;6357:18;;;6350:62;-1:-1:-1;;;6428:18:1;;;6421:43;6481:19;;28884:74:0;;;;;;;;;-1:-1:-1;28978:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28978:24:0;;28796:214::o;28317:413::-;28390:13;28406:24;28422:7;28406:15;:24::i;:::-;28390:40;;28455:5;-1:-1:-1;;;;;28449:11:0;:2;-1:-1:-1;;;;;28449:11:0;;;28441:58;;;;-1:-1:-1;;;28441:58:0;;6713:2:1;28441:58:0;;;6695:21:1;6752:2;6732:18;;;6725:30;6791:34;6771:18;;;6764:62;-1:-1:-1;;;6842:18:1;;;6835:32;6884:19;;28441:58:0;6511:398:1;28441:58:0;2670:10;-1:-1:-1;;;;;28534:21:0;;;;:62;;-1:-1:-1;28559:37:0;28576:5;2670:10;29441:164;:::i;28559:37::-;28512:169;;;;-1:-1:-1;;;28512:169:0;;7116:2:1;28512:169:0;;;7098:21:1;7155:2;7135:18;;;7128:30;7194:34;7174:18;;;7167:62;7265:27;7245:18;;;7238:55;7310:19;;28512:169:0;6914:421:1;28512:169:0;28694:28;28703:2;28707:7;28716:5;28694:8;:28::i;:::-;28379:351;28317:413;;:::o;23591:104::-;23644:7;23686:1;23671:12;;:16;;;;:::i;:::-;23664:23;;23591:104;:::o;29672:229::-;29807:22;;;;:13;:22;;;;;:29;;;29806:30;29798:56;;;;-1:-1:-1;;;29798:56:0;;;;;;;:::i;:::-;29865:28;29875:4;29881:2;29885:7;29865:9;:28::i;24259:1007::-;24348:7;24384:16;24394:5;24384:9;:16::i;:::-;24376:5;:24;24368:71;;;;-1:-1:-1;;;24368:71:0;;8146:2:1;24368:71:0;;;8128:21:1;8185:2;8165:18;;;8158:30;8224:34;8204:18;;;8197:62;-1:-1:-1;;;8275:18:1;;;8268:32;8317:19;;24368:71:0;7944:398:1;24368:71:0;24450:22;24475:13;:11;:13::i;:::-;24450:38;;24499:19;24529:25;24718:9;24713:466;24733:14;24729:1;:18;24713:466;;;24773:31;24807:14;;;:11;:14;;;;;;;;;24773:48;;;;;;;;;-1:-1:-1;;;;;24773:48:0;;;;;-1:-1:-1;;;24773:48:0;;;;;;;;;;;;24844:28;24840:111;;24917:14;;;-1:-1:-1;24840:111:0;24994:5;-1:-1:-1;;;;;24973:26:0;:17;-1:-1:-1;;;;;24973:26:0;;24969:195;;;25043:5;25028:11;:20;25024:85;;;-1:-1:-1;25084:1:0;-1:-1:-1;25077:8:0;;-1:-1:-1;;;25077:8:0;25024:85;25131:13;;;;;24969:195;-1:-1:-1;24749:3:0;;24713:466;;;-1:-1:-1;25202:56:0;;-1:-1:-1;;;25202:56:0;;8549:2:1;25202:56:0;;;8531:21:1;8588:2;8568:18;;;8561:30;8627:34;8607:18;;;8600:62;-1:-1:-1;;;8678:18:1;;;8671:44;8732:19;;25202:56:0;8347:410:1;39704:109:0;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;39754:51:::1;::::0;39762:10:::1;::::0;39783:21:::1;39754:51:::0;::::1;;;::::0;::::1;::::0;;;39783:21;39762:10;39754:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;39704:109::o:0;29972:244::-;30111:22;;;;:13;:22;;;;;:29;;;30110:30;30102:56;;;;-1:-1:-1;;;30102:56:0;;;;;;;:::i;:::-;30169:39;30186:4;30192:2;30196:7;30169:39;;;;;;;;;;;;:16;:39::i;23772:187::-;23839:7;23875:13;:11;:13::i;:::-;23867:5;:21;23859:69;;;;-1:-1:-1;;;23859:69:0;;9325:2:1;23859:69:0;;;9307:21:1;9364:2;9344:18;;;9337:30;9403:34;9383:18;;;9376:62;-1:-1:-1;;;9454:18:1;;;9447:33;9497:19;;23859:69:0;9123:399:1;23859:69:0;-1:-1:-1;23946:5:0;23772:187::o;39821:87::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;39890:10:::1;::::0;;-1:-1:-1;;;;39876:24:0;::::1;-1:-1:-1::0;;;39890:10:0;;;::::1;;;39889:11;39876:24:::0;;::::1;;::::0;;39821:87::o;40217:90::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;40289:10:::1;:3;40295:4:::0;;40289:10:::1;:::i;27033:124::-:0;27097:7;27124:20;27136:7;27124:11;:20::i;:::-;:25;;27033:124;-1:-1:-1;;27033:124:0:o;25774:221::-;25838:7;-1:-1:-1;;;;;25866:19:0;;25858:75;;;;-1:-1:-1;;;25858:75:0;;9729:2:1;25858:75:0;;;9711:21:1;9768:2;9748:18;;;9741:30;9807:34;9787:18;;;9780:62;-1:-1:-1;;;9858:18:1;;;9851:41;9909:19;;25858:75:0;9527:407:1;25858:75:0;-1:-1:-1;;;;;;25959:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25959:27:0;;25774:221::o;4365:94::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;4430:21:::1;4448:1;4430:9;:21::i;:::-;4365:94::o:0;39916:83::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;39977:5:::1;:14:::0;39916:83::o;27393:104::-;27449:13;27482:7;27475:14;;;;;:::i;40720:498::-;40783:10;;-1:-1:-1;;;40783:10:0;;;;40775:39;;;;-1:-1:-1;;;40775:39:0;;10141:2:1;40775:39:0;;;10123:21:1;10180:2;10160:18;;;10153:30;-1:-1:-1;;;10199:18:1;;;10192:46;10255:18;;40775:39:0;9939:340:1;40775:39:0;40851:9;40842:5;;40833:6;:14;;;;:::i;:::-;:27;40825:59;;;;-1:-1:-1;;;40825:59:0;;10659:2:1;40825:59:0;;;10641:21:1;10698:2;10678:18;;;10671:30;-1:-1:-1;;;10717:18:1;;;10710:49;10776:18;;40825:59:0;10457:343:1;40825:59:0;40913:8;;40903:6;:18;;40895:50;;;;-1:-1:-1;;;40895:50:0;;10659:2:1;40895:50:0;;;10641:21:1;10698:2;10678:18;;;10671:30;-1:-1:-1;;;10717:18:1;;;10710:49;10776:18;;40895:50:0;10457:343:1;40895:50:0;39054:3;40964:13;:11;:13::i;:::-;:17;;40980:1;40964:17;:::i;:::-;:30;40956:83;;;;-1:-1:-1;;;40956:83:0;;11140:2:1;40956:83:0;;;11122:21:1;11179:2;11159:18;;;11152:30;11218:34;11198:18;;;11191:62;-1:-1:-1;;;11269:18:1;;;11262:38;11317:19;;40956:83:0;10938:404:1;40956:83:0;41090:12;;41066:10;41058:19;;;;:7;:19;;;;;;:28;;41080:6;;41058:28;:::i;:::-;:44;;41050:80;;;;-1:-1:-1;;;41050:80:0;;11549:2:1;41050:80:0;;;11531:21:1;11588:2;11568:18;;;11561:30;11627:25;11607:18;;;11600:53;11670:18;;41050:80:0;11347:347:1;41050:80:0;41141:29;41151:10;41163:6;41141:9;:29::i;:::-;41189:10;41181:19;;;;:7;:19;;;;;:29;;41204:6;;41181:19;:29;;41204:6;;41181:29;:::i;:::-;;;;-1:-1:-1;;;40720:498:0:o;29082:288::-;-1:-1:-1;;;;;29177:24:0;;2670:10;29177:24;;29169:63;;;;-1:-1:-1;;;29169:63:0;;11901:2:1;29169:63:0;;;11883:21:1;11940:2;11920:18;;;11913:30;11979:28;11959:18;;;11952:56;12025:18;;29169:63:0;11699:350:1;29169:63:0;2670:10;29245:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29245:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29245:53:0;;;;;;;;;;29314:48;;540:41:1;;;29245:42:0;;2670:10;29314:48;;513:18:1;29314:48:0;;;;;;;29082:288;;:::o;30287:422::-;30455:22;;;;:13;:22;;;;;:29;;;30454:30;30446:56;;;;-1:-1:-1;;;30446:56:0;;;;;;;:::i;:::-;30513:28;30523:4;30529:2;30533:7;30513:9;:28::i;:::-;30574:48;30597:4;30603:2;30607:7;30616:5;30574:22;:48::i;:::-;30552:149;;;;-1:-1:-1;;;30552:149:0;;;;;;;:::i;:::-;30287:422;;;;:::o;40011:89::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;40075:8:::1;:17:::0;40011:89::o;27568:344::-;27641:13;27675:16;27683:7;27675;:16::i;:::-;27667:76;;;;-1:-1:-1;;;27667:76:0;;12676:2:1;27667:76:0;;;12658:21:1;12715:2;12695:18;;;12688:30;12754:34;12734:18;;;12727:62;-1:-1:-1;;;12805:18:1;;;12798:45;12860:19;;27667:76:0;12474:411:1;27667:76:0;27756:21;27780:10;:8;:10::i;:::-;27756:34;;27814:7;27808:21;27833:1;27808:26;;:96;;;;;;;;;;;;;;;;;27861:7;27870:18;:7;:16;:18::i;:::-;27844:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27808:96;27801:103;27568:344;-1:-1:-1;;;27568:344:0:o;40112:97::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;40180:12:::1;:21:::0;40112:97::o;40544:168::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;40633:14:::1;39054:3;40646:1;40633:14;:::i;:::-;40617:12;;:30;;40609:55;;;::::0;-1:-1:-1;;;40609:55:0;;13734:2:1;40609:55:0::1;::::0;::::1;13716:21:1::0;13773:2;13753:18;;;13746:30;-1:-1:-1;;;13792:18:1;;;13785:42;13844:18;;40609:55:0::1;13532:336:1::0;40609:55:0::1;40675:29;40685:10;40697:6;40675:9;:29::i;4614:192::-:0;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4703:22:0;::::1;4695:73;;;::::0;-1:-1:-1;;;4695:73:0;;14075:2:1;4695:73:0::1;::::0;::::1;14057:21:1::0;14114:2;14094:18;;;14087:30;14153:34;14133:18;;;14126:62;-1:-1:-1;;;14204:18:1;;;14197:36;14250:19;;4695:73:0::1;13873:402:1::0;4695:73:0::1;4779:19;4789:8;4779:9;:19::i;30964:126::-:0;31021:4;31055:12;;31045:7;:22;:37;;;;-1:-1:-1;;31071:11:0;;;30964:126::o;35899:196::-;36014:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36014:29:0;-1:-1:-1;;;;;36014:29:0;;;;;;;;;36059:28;;36014:24;;36059:28;;;;;;;35899:196;;;:::o;33779:2002::-;33894:35;33932:20;33944:7;33932:11;:20::i;:::-;34007:18;;33894:58;;-1:-1:-1;33965:22:0;;-1:-1:-1;;;;;33991:34:0;2670:10;-1:-1:-1;;;;;33991:34:0;;:87;;;-1:-1:-1;2670:10:0;34042:20;34054:7;34042:11;:20::i;:::-;-1:-1:-1;;;;;34042:36:0;;33991:87;:154;;;-1:-1:-1;34112:18:0;;34095:50;;2670:10;29441:164;:::i;34095:50::-;33965:181;;34167:17;34159:80;;;;-1:-1:-1;;;34159:80:0;;14482:2:1;34159:80:0;;;14464:21:1;14521:2;14501:18;;;14494:30;14560:34;14540:18;;;14533:62;-1:-1:-1;;;14611:18:1;;;14604:48;14669:19;;34159:80:0;14280:414:1;34159:80:0;34282:4;-1:-1:-1;;;;;34260:26:0;:13;:18;;;-1:-1:-1;;;;;34260:26:0;;34252:77;;;;-1:-1:-1;;;34252:77:0;;14901:2:1;34252:77:0;;;14883:21:1;14940:2;14920:18;;;14913:30;14979:34;14959:18;;;14952:62;-1:-1:-1;;;15030:18:1;;;15023:36;15076:19;;34252:77:0;14699:402:1;34252:77:0;-1:-1:-1;;;;;34348:16:0;;34340:66;;;;-1:-1:-1;;;34340:66:0;;15308:2:1;34340:66:0;;;15290:21:1;15347:2;15327:18;;;15320:30;15386:34;15366:18;;;15359:62;-1:-1:-1;;;15437:18:1;;;15430:35;15482:19;;34340:66:0;15106:401:1;34340:66:0;34527:49;34544:1;34548:7;34557:13;:18;;;34527:8;:49::i;:::-;-1:-1:-1;;;;;34872:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;34872:31:0;;;-1:-1:-1;;;;;34872:31:0;;;-1:-1:-1;;34872:31:0;;;;;;;34918:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34918:29:0;;;;;;;;;;;;;34964:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;35009:61:0;;;;-1:-1:-1;;;35054:15:0;35009:61;;;;;;35344:11;;;35374:24;;;;;:29;35344:11;;35374:29;35370:295;;35442:20;35450:11;35442:7;:20::i;:::-;35438:212;;;35519:18;;;35487:24;;;:11;:24;;;;;;;;:50;;35602:28;;;;35560:70;;-1:-1:-1;;;35560:70:0;-1:-1:-1;;;;;;35560:70:0;;;-1:-1:-1;;;;;35487:50:0;;;35560:70;;;;;;;35438:212;34847:829;35712:7;35708:2;-1:-1:-1;;;;;35693:27:0;35702:4;-1:-1:-1;;;;;35693:27:0;;;;;;;;;;;35731:42;33883:1898;;33779:2002;;;:::o;26434:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;26537:16:0;26545:7;26537;:16::i;:::-;26529:71;;;;-1:-1:-1;;;26529:71:0;;15714:2:1;26529:71:0;;;15696:21:1;15753:2;15733:18;;;15726:30;15792:34;15772:18;;;15765:62;-1:-1:-1;;;15843:18:1;;;15836:40;15893:19;;26529:71:0;15512:406:1;26529:71:0;26658:7;26638:245;26705:31;26739:17;;;:11;:17;;;;;;;;;26705:51;;;;;;;;;-1:-1:-1;;;;;26705:51:0;;;;;-1:-1:-1;;;26705:51:0;;;;;;;;;;;;26779:28;26775:93;;26839:9;26434:537;-1:-1:-1;;;26434:537:0:o;26775:93::-;-1:-1:-1;;;26678:6:0;26638:245;;4814:173;4889:6;;;-1:-1:-1;;;;;4906:17:0;;;-1:-1:-1;;;;;;4906:17:0;;;;;;;4939:40;;4889:6;;;4906:17;4889:6;;4939:40;;4870:16;;4939:40;4859:128;4814:173;:::o;31098:104::-;31167:27;31177:2;31181:8;31167:27;;;;;;;;;;;;:9;:27::i;:::-;31098:104;;:::o;36660:804::-;36815:4;-1:-1:-1;;;;;36836:13:0;;5998:20;6046:8;36832:625;;36872:72;;-1:-1:-1;;;36872:72:0;;-1:-1:-1;;;;;36872:36:0;;;;;:72;;2670:10;;36923:4;;36929:7;;36938:5;;36872:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36872:72:0;;;;;;;;-1:-1:-1;;36872:72:0;;;;;;;;;;;;:::i;:::-;;;36868:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37118:13:0;;37114:273;;37161:61;;-1:-1:-1;;;37161:61:0;;;;;;;:::i;37114:273::-;37337:6;37331:13;37322:6;37318:2;37314:15;37307:38;36868:534;-1:-1:-1;;;;;;36995:55:0;-1:-1:-1;;;36995:55:0;;-1:-1:-1;36988:62:0;;36832:625;-1:-1:-1;37441:4:0;36832:625;36660:804;;;;;;:::o;28160:95::-;28211:13;28244:3;28237:10;;;;;:::i;289:723::-;345:13;566:10;562:53;;-1:-1:-1;;593:10:0;;;;;;;;;;;;-1:-1:-1;;;593:10:0;;;;;289:723::o;562:53::-;640:5;625:12;681:78;688:9;;681:78;;714:8;;;;:::i;:::-;;-1:-1:-1;737:10:0;;-1:-1:-1;745:2:0;737:10;;:::i;:::-;;;681:78;;;769:19;801:6;791:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;791:17:0;;769:39;;819:154;826:10;;819:154;;853:11;863:1;853:11;;:::i;:::-;;-1:-1:-1;922:10:0;930:2;922:5;:10;:::i;:::-;909:24;;:2;:24;:::i;:::-;896:39;;879:6;886;879:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;879:56:0;;;;;;;;-1:-1:-1;950:11:0;959:2;950:11;;:::i;:::-;;;819:154;;31565:163;31688:32;31694:2;31698:8;31708:5;31715:4;32126:20;32149:12;-1:-1:-1;;;;;32180:16:0;;32172:62;;;;-1:-1:-1;;;32172:62:0;;17935:2:1;32172:62:0;;;17917:21:1;17974:2;17954:18;;;17947:30;18013:34;17993:18;;;17986:62;-1:-1:-1;;;18064:18:1;;;18057:31;18105:19;;32172:62:0;17733:397:1;32172:62:0;32253:13;32245:66;;;;-1:-1:-1;;;32245:66:0;;18337:2:1;32245:66:0;;;18319:21:1;18376:2;18356:18;;;18349:30;18415:34;18395:18;;;18388:62;-1:-1:-1;;;18466:18:1;;;18459:38;18514:19;;32245:66:0;18135:404:1;32245:66:0;-1:-1:-1;;;;;32663:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;32663:45:0;;-1:-1:-1;;;;;32663:45:0;;;;;;;;;;32723:50;;;;;;;;;;;;;;32790:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;32840:66:0;;;;-1:-1:-1;;;32890:15:0;32840:66;;;;;;;32790:25;;32975:415;32995:8;32991:1;:12;32975:415;;;33034:38;;33059:12;;-1:-1:-1;;;;;33034:38:0;;;33051:1;;33034:38;;33051:1;;33034:38;33095:4;33091:249;;;33158:59;33189:1;33193:2;33197:12;33211:5;33158:22;:59::i;:::-;33124:196;;;;-1:-1:-1;;;33124:196:0;;;;;;;:::i;:::-;33360:14;;;;;33005:3;32975:415;;;-1:-1:-1;33406:12:0;:27;33457:60;30287:422;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2699:328::-;2776:6;2784;2792;2845:2;2833:9;2824:7;2820:23;2816:32;2813:52;;;2861:1;2858;2851:12;2813:52;2884:29;2903:9;2884:29;:::i;:::-;2874:39;;2932:38;2966:2;2955:9;2951:18;2932:38;:::i;:::-;2922:48;;3017:2;3006:9;3002:18;2989:32;2979:42;;2699:328;;;;;:::o;3032:592::-;3103:6;3111;3164:2;3152:9;3143:7;3139:23;3135:32;3132:52;;;3180:1;3177;3170:12;3132:52;3220:9;3207:23;3249:18;3290:2;3282:6;3279:14;3276:34;;;3306:1;3303;3296:12;3276:34;3344:6;3333:9;3329:22;3319:32;;3389:7;3382:4;3378:2;3374:13;3370:27;3360:55;;3411:1;3408;3401:12;3360:55;3451:2;3438:16;3477:2;3469:6;3466:14;3463:34;;;3493:1;3490;3483:12;3463:34;3538:7;3533:2;3524:6;3520:2;3516:15;3512:24;3509:37;3506:57;;;3559:1;3556;3549:12;3506:57;3590:2;3582:11;;;;;3612:6;;-1:-1:-1;3032:592:1;;-1:-1:-1;;;;3032:592:1:o;3629:186::-;3688:6;3741:2;3729:9;3720:7;3716:23;3712:32;3709:52;;;3757:1;3754;3747:12;3709:52;3780:29;3799:9;3780:29;:::i;3820:347::-;3885:6;3893;3946:2;3934:9;3925:7;3921:23;3917:32;3914:52;;;3962:1;3959;3952:12;3914:52;3985:29;4004:9;3985:29;:::i;:::-;3975:39;;4064:2;4053:9;4049:18;4036:32;4111:5;4104:13;4097:21;4090:5;4087:32;4077:60;;4133:1;4130;4123:12;4077:60;4156:5;4146:15;;;3820:347;;;;;:::o;4172:127::-;4233:10;4228:3;4224:20;4221:1;4214:31;4264:4;4261:1;4254:15;4288:4;4285:1;4278:15;4304:1138;4399:6;4407;4415;4423;4476:3;4464:9;4455:7;4451:23;4447:33;4444:53;;;4493:1;4490;4483:12;4444:53;4516:29;4535:9;4516:29;:::i;:::-;4506:39;;4564:38;4598:2;4587:9;4583:18;4564:38;:::i;:::-;4554:48;;4649:2;4638:9;4634:18;4621:32;4611:42;;4704:2;4693:9;4689:18;4676:32;4727:18;4768:2;4760:6;4757:14;4754:34;;;4784:1;4781;4774:12;4754:34;4822:6;4811:9;4807:22;4797:32;;4867:7;4860:4;4856:2;4852:13;4848:27;4838:55;;4889:1;4886;4879:12;4838:55;4925:2;4912:16;4947:2;4943;4940:10;4937:36;;;4953:18;;:::i;:::-;5028:2;5022:9;4996:2;5082:13;;-1:-1:-1;;5078:22:1;;;5102:2;5074:31;5070:40;5058:53;;;5126:18;;;5146:22;;;5123:46;5120:72;;;5172:18;;:::i;:::-;5212:10;5208:2;5201:22;5247:2;5239:6;5232:18;5287:7;5282:2;5277;5273;5269:11;5265:20;5262:33;5259:53;;;5308:1;5305;5298:12;5259:53;5364:2;5359;5355;5351:11;5346:2;5338:6;5334:15;5321:46;5409:1;5404:2;5399;5391:6;5387:15;5383:24;5376:35;5430:6;5420:16;;;;;;;4304:1138;;;;;;;:::o;5447:260::-;5515:6;5523;5576:2;5564:9;5555:7;5551:23;5547:32;5544:52;;;5592:1;5589;5582:12;5544:52;5615:29;5634:9;5615:29;:::i;:::-;5605:39;;5663:38;5697:2;5686:9;5682:18;5663:38;:::i;:::-;5653:48;;5447:260;;;;;:::o;5712:380::-;5791:1;5787:12;;;;5834;;;5855:61;;5909:4;5901:6;5897:17;5887:27;;5855:61;5962:2;5954:6;5951:14;5931:18;5928:38;5925:161;;;6008:10;6003:3;5999:20;5996:1;5989:31;6043:4;6040:1;6033:15;6071:4;6068:1;6061:15;5925:161;;5712:380;;;:::o;7340:127::-;7401:10;7396:3;7392:20;7389:1;7382:31;7432:4;7429:1;7422:15;7456:4;7453:1;7446:15;7472:125;7512:4;7540:1;7537;7534:8;7531:34;;;7545:18;;:::i;:::-;-1:-1:-1;7582:9:1;;7472:125::o;7602:337::-;7804:2;7786:21;;;7843:2;7823:18;;;7816:30;-1:-1:-1;;;7877:2:1;7862:18;;7855:43;7930:2;7915:18;;7602:337::o;8762:356::-;8964:2;8946:21;;;8983:18;;;8976:30;9042:34;9037:2;9022:18;;9015:62;9109:2;9094:18;;8762:356::o;10284:168::-;10324:7;10390:1;10386;10382:6;10378:14;10375:1;10372:21;10367:1;10360:9;10353:17;10349:45;10346:71;;;10397:18;;:::i;:::-;-1:-1:-1;10437:9:1;;10284:168::o;10805:128::-;10845:3;10876:1;10872:6;10869:1;10866:13;10863:39;;;10882:18;;:::i;:::-;-1:-1:-1;10918:9:1;;10805:128::o;12054:415::-;12256:2;12238:21;;;12295:2;12275:18;;;12268:30;12334:34;12329:2;12314:18;;12307:62;-1:-1:-1;;;12400:2:1;12385:18;;12378:49;12459:3;12444:19;;12054:415::o;12890:637::-;13170:3;13208:6;13202:13;13224:53;13270:6;13265:3;13258:4;13250:6;13246:17;13224:53;:::i;:::-;13340:13;;13299:16;;;;13362:57;13340:13;13299:16;13396:4;13384:17;;13362:57;:::i;:::-;-1:-1:-1;;;13441:20:1;;13470:22;;;13519:1;13508:13;;12890:637;-1:-1:-1;;;;12890:637:1:o;16339:489::-;-1:-1:-1;;;;;16608:15:1;;;16590:34;;16660:15;;16655:2;16640:18;;16633:43;16707:2;16692:18;;16685:34;;;16755:3;16750:2;16735:18;;16728:31;;;16533:4;;16776:46;;16802:19;;16794:6;16776:46;:::i;:::-;16768:54;16339:489;-1:-1:-1;;;;;;16339:489:1:o;16833:249::-;16902:6;16955:2;16943:9;16934:7;16930:23;16926:32;16923:52;;;16971:1;16968;16961:12;16923:52;17003:9;16997:16;17022:30;17046:5;17022:30;:::i;17087:135::-;17126:3;-1:-1:-1;;17147:17:1;;17144:43;;;17167:18;;:::i;:::-;-1:-1:-1;17214:1:1;17203:13;;17087:135::o;17227:127::-;17288:10;17283:3;17279:20;17276:1;17269:31;17319:4;17316:1;17309:15;17343:4;17340:1;17333:15;17359:120;17399:1;17425;17415:35;;17430:18;;:::i;:::-;-1:-1:-1;17464:9:1;;17359:120::o;17484:112::-;17516:1;17542;17532:35;;17547:18;;:::i;:::-;-1:-1:-1;17581:9:1;;17484:112::o;17601:127::-;17662:10;17657:3;17653:20;17650:1;17643:31;17693:4;17690:1;17683:15;17717:4;17714:1;17707:15
Swarm Source
ipfs://fcfde19bcf39eff8e95d1dc7c8fd6be71aad6a230595b734f3911aa04d065d8f
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.