Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
438 MOOS
Holders
200
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 MOOSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MooseheadUnion
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity Multiple files format)
/* Oh Welcome! Take a cup of coffee 旦~ __ __ /'\_/`\ /\ \ /\ \ /\ \ ___ ___ ____ __ \ \ \___ __ __ \_\ \ \ \ \__\ \ / __`\ / __`\ /',__\ /'__`\\ \ _ `\ /'__`\ /'__`\ /'_` \ \ \ \_/\ \ /\ \L\ \/\ \L\ \/\__, `\/\ __/ \ \ \ \ \ /\ __/ /\ \L\.\_ /\ \L\ \ \ \_\\ \_\\ \____/\ \____/\/\____/\ \____\ \ \_\ \_\\ \____\\ \__/.\_\\ \___,_\ \/_/ \/_/ \/___/ \/___/ \/___/ \/____/ \/_/\/_/ \/____/ \/__/\/_/ \/__,_ / __ __ /\ \/\ \ __ \ \ \ \ \ ___ /\_\ ___ ___ \ \ \ \ \ /' _ `\\/\ \ / __`\ /' _ `\ \ \ \_\ \ /\ \/\ \\ \ \ /\ \L\ \/\ \/\ \ \ \_____\\ \_\ \_\\ \_\\ \____/\ \_\ \_\ \/_____/ \/_/\/_/ \/_/ \/___/ \/_/\/_/ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "./ERC721.sol"; import "./Ownable.sol"; import "./ERC721Enumerable.sol"; /** * @title MooseheadUnion contract * We are Mooseheads! The Only 1e4 Mooseheads among 5e17! ᒡ◯ᵔ◯ᒢ */ contract MooseheadUnion is ERC721, ERC721Enumerable, Ownable { using Strings for uint256; uint256 public constant MAX_TOKENS = 10000; uint256 public constant PRICE = 0.06 ether; // Price of one moosehead! Constant! string private _baseTokenURI = "ipfs://QmdcNp364CygHAydaPK58MCUQCRxsiUyVfBvS1Tmie1ph2/"; string private _baseContractURI = "ipfs://QmdcNp364CygHAydaPK58MCUQCRxsiUyVfBvS1Tmie1ph2/contract"; bool public saleIsActive; constructor() ERC721("MooseheadUnion", "MOOS") { saleIsActive = false; setBaseURI(_baseTokenURI); setContractURI(_baseContractURI); } function mint(uint256 num) public payable { uint256 supply = totalSupply(); require(saleIsActive, "Sale is not active"); require(num > 0, "Minting 0"); require(num <= 20, "Max of 20 is allowed"); require(supply + num <= MAX_TOKENS, "Passing max supply"); require(msg.value >= PRICE * num, "Ether sent is not correct"); for(uint256 i = 0; i < num; i++){ uint256 mintIndex = totalSupply(); if (totalSupply() < MAX_TOKENS) { _safeMint(msg.sender, mintIndex); } } } function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } function withdraw() onlyOwner public { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } /* * @dev Reserve 10 tokens for gifts & roadmap */ function reserveTokens() public onlyOwner { uint256 supply = totalSupply(); for (uint256 i = 0; i < 10; i++) { _safeMint(msg.sender, supply + i); } } /* * @dev openSea contract metadata */ function setContractURI(string memory contURI) public onlyOwner { _baseContractURI = contURI; } function contractURI() public view returns (string memory) { return _baseContractURI; } /* * @dev Needed below function to resolve conflicting fns in ERC721 and ERC721Enumerable */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } /* * @dev Needed below function to resolve conflicting fns in ERC721 and ERC721Enumerable */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: 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 virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), 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("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
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":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","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":"saleIsActive","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contURI","type":"string"}],"name":"setContractURI","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
60e060405260366080818152906200294b60a03980516200002991600b9160209091019062000355565b506040518060600160405280603e81526020016200290d603e913980516200005a91600c9160209091019062000355565b503480156200006857600080fd5b50604080518082018252600e81526d26b7b7b9b2b432b0b22ab734b7b760911b6020808301918252835180850190945260048452634d4f4f5360e01b908401528151919291620000bb9160009162000355565b508051620000d190600190602084019062000355565b505050620000ee620000e86200023c60201b60201c565b62000240565b600d805460ff19169055600b80546200019891906200010d90620003fb565b80601f01602080910402602001604051908101604052809291908181526020018280546200013b90620003fb565b80156200018c5780601f1062000160576101008083540402835291602001916200018c565b820191906000526020600020905b8154815290600101906020018083116200016e57829003601f168201915b50506200029292505050565b62000236600c8054620001ab90620003fb565b80601f0160208091040260200160405190810160405280929190818152602001828054620001d990620003fb565b80156200022a5780601f10620001fe576101008083540402835291602001916200022a565b820191906000526020600020905b8154815290600101906020018083116200020c57829003601f168201915b5050620002fa92505050565b62000438565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620002e15760405162461bcd60e51b815260206004820181905260248201526000805160206200298183398151915260448201526064015b60405180910390fd5b8051620002f690600b90602084019062000355565b5050565b600a546001600160a01b03163314620003455760405162461bcd60e51b81526020600482018190526024820152600080516020620029818339815191526044820152606401620002d8565b8051620002f690600c9060208401905b8280546200036390620003fb565b90600052602060002090601f016020900481019282620003875760008555620003d2565b82601f10620003a257805160ff1916838001178555620003d2565b82800160010185558215620003d2579182015b82811115620003d2578251825591602001919060010190620003b5565b50620003e0929150620003e4565b5090565b5b80821115620003e05760008155600101620003e5565b600181811c908216806200041057607f821691505b602082108114156200043257634e487b7160e01b600052602260045260246000fd5b50919050565b6124c580620004486000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c5146104c1578063eb8d24441461050a578063f2fde38b14610524578063f47c84c51461054457600080fd5b8063a22cb4651461044c578063b88d4fde1461046c578063c87b56dd1461048c578063e8a3d485146104ac57600080fd5b80638da5cb5b116100d15780638da5cb5b146103e6578063938e3d7b1461040457806395d89b4114610424578063a0712d681461043957600080fd5b806370a0823114610396578063715018a6146103b65780638d859f3e146103cb57600080fd5b80632f745c591161016457806342842e0e1161013e57806342842e0e146103165780634f6ccce71461033657806355f804b3146103565780636352211e1461037657600080fd5b80632f745c59146102cc57806334918dfd146102ec5780633ccfd60b1461030157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029757806327ac36c4146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046121ff565b61055a565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161056b565b6040516101f3919061232c565b34801561022a57600080fd5b5061023e61023936600461227d565b6105fd565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b506102766102713660046121d6565b6106a8565b005b34801561028457600080fd5b506008545b6040519081526020016101f3565b3480156102a357600080fd5b506102766102b23660046120e8565b6107da565b3480156102c357600080fd5b50610276610861565b3480156102d857600080fd5b506102896102e73660046121d6565b6108fd565b3480156102f857600080fd5b506102766109a5565b34801561030d57600080fd5b50610276610a13565b34801561032257600080fd5b506102766103313660046120e8565b610a9c565b34801561034257600080fd5b5061028961035136600461227d565b610ab7565b34801561036257600080fd5b50610276610371366004612237565b610b69565b34801561038257600080fd5b5061023e61039136600461227d565b610bd6565b3480156103a257600080fd5b506102896103b136600461209c565b610c61565b3480156103c257600080fd5b50610276610cfb565b3480156103d757600080fd5b5061028966d529ae9e86000081565b3480156103f257600080fd5b50600a546001600160a01b031661023e565b34801561041057600080fd5b5061027661041f366004612237565b610d61565b34801561043057600080fd5b50610211610dce565b61027661044736600461227d565b610ddd565b34801561045857600080fd5b5061027661046736600461219c565b610fe0565b34801561047857600080fd5b50610276610487366004612123565b6110a5565b34801561049857600080fd5b506102116104a736600461227d565b611133565b3480156104b857600080fd5b5061021161121c565b3480156104cd57600080fd5b506101e76104dc3660046120b6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561051657600080fd5b50600d546101e79060ff1681565b34801561053057600080fd5b5061027661053f36600461209c565b61122b565b34801561055057600080fd5b5061028961271081565b60006105658261130d565b92915050565b60606000805461057a906123cd565b80601f01602080910402602001604051908101604052809291908181526020018280546105a6906123cd565b80156105f35780601f106105c8576101008083540402835291602001916105f3565b820191906000526020600020905b8154815290600101906020018083116105d657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661068c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b382610bd6565b9050806001600160a01b0316836001600160a01b0316141561073d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610683565b336001600160a01b0382161480610759575061075981336104dc565b6107cb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610683565b6107d5838361134b565b505050565b6107e433826113c6565b6108565760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610683565b6107d58383836114ce565b600a546001600160a01b031633146108bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610683565b60006108c660085490565b905060005b600a8110156108f9576108e7336108e2838561233f565b6116b3565b806108f181612408565b9150506108cb565b5050565b600061090883610c61565b821061097c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610683565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610683565b600d805460ff19811660ff90911615179055565b600a546001600160a01b03163314610a6d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610683565b6040514790339082156108fc029083906000818181858888f193505050501580156108f9573d6000803e3d6000fd5b6107d5838383604051806020016040528060008152506110a5565b6000610ac260085490565b8210610b365760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610683565b60088281548110610b5757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610bc35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610683565b80516108f990600b906020840190611f71565b6000818152600260205260408120546001600160a01b0316806105655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610683565b60006001600160a01b038216610cdf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610683565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610683565b610d5f60006116cd565b565b600a546001600160a01b03163314610dbb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610683565b80516108f990600c906020840190611f71565b60606001805461057a906123cd565b6000610de860085490565b600d5490915060ff16610e3d5760405162461bcd60e51b815260206004820152601260248201527f53616c65206973206e6f742061637469766500000000000000000000000000006044820152606401610683565b60008211610e8d5760405162461bcd60e51b815260206004820152600960248201527f4d696e74696e67203000000000000000000000000000000000000000000000006044820152606401610683565b6014821115610ede5760405162461bcd60e51b815260206004820152601460248201527f4d6178206f6620323020697320616c6c6f7765640000000000000000000000006044820152606401610683565b612710610eeb838361233f565b1115610f395760405162461bcd60e51b815260206004820152601260248201527f50617373696e67206d617820737570706c7900000000000000000000000000006044820152606401610683565b610f4a8266d529ae9e86000061236b565b341015610f995760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f7272656374000000000000006044820152606401610683565b60005b828110156107d5576000610faf60085490565b9050612710610fbd60085490565b1015610fcd57610fcd33826116b3565b5080610fd881612408565b915050610f9c565b6001600160a01b0382163314156110395760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610683565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110af33836113c6565b6111215760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610683565b61112d8484848461172c565b50505050565b6000818152600260205260409020546060906001600160a01b03166111c05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610683565b60006111ca6117b5565b905060008151116111ea5760405180602001604052806000815250611215565b806111f4846117c4565b6040516020016112059291906122c1565b6040516020818303038152906040525b9392505050565b6060600c805461057a906123cd565b600a546001600160a01b031633146112855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610683565b6001600160a01b0381166113015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610683565b61130a816116cd565b50565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610565575061056582611912565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061138d82610bd6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114505760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610683565b600061145b83610bd6565b9050806001600160a01b0316846001600160a01b031614806114965750836001600160a01b031661148b846105fd565b6001600160a01b0316145b806114c657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114e182610bd6565b6001600160a01b03161461155d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610683565b6001600160a01b0382166115d85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610683565b6115e38383836119ad565b6115ee60008261134b565b6001600160a01b038316600090815260036020526040812080546001929061161790849061238a565b90915550506001600160a01b038216600090815260036020526040812080546001929061164590849061233f565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108f98282604051806020016040528060008152506119b8565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117378484846114ce565b61174384848484611a41565b61112d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610683565b6060600b805461057a906123cd565b60608161180457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561182e578061181881612408565b91506118279050600a83612357565b9150611808565b60008167ffffffffffffffff81111561185757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611881576020820181803683370190505b5090505b84156114c65761189660018361238a565b91506118a3600a86612423565b6118ae90603061233f565b60f81b8183815181106118d157634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061190b600a86612357565b9450611885565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061197557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061056557507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610565565b6107d5838383611ba4565b6119c28383611c5c565b6119cf6000848484611a41565b6107d55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610683565b60006001600160a01b0384163b15611b9957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a859033908990889088906004016122f0565b602060405180830381600087803b158015611a9f57600080fd5b505af1925050508015611acf575060408051601f3d908101601f19168201909252611acc9181019061221b565b60015b611b7f573d808015611afd576040519150601f19603f3d011682016040523d82523d6000602084013e611b02565b606091505b508051611b775760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610683565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114c6565b506001949350505050565b6001600160a01b038316611bff57611bfa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c22565b816001600160a01b0316836001600160a01b031614611c2257611c228382611db7565b6001600160a01b038216611c39576107d581611e54565b826001600160a01b0316826001600160a01b0316146107d5576107d58282611f2d565b6001600160a01b038216611cb25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610683565b6000818152600260205260409020546001600160a01b031615611d175760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610683565b611d23600083836119ad565b6001600160a01b0382166000908152600360205260408120805460019290611d4c90849061233f565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611dc484610c61565b611dce919061238a565b600083815260076020526040902054909150808214611e21576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e669060019061238a565b60008381526009602052604081205460088054939450909284908110611e9c57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611ecb57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f1157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611f3883610c61565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611f7d906123cd565b90600052602060002090601f016020900481019282611f9f5760008555611fe5565b82601f10611fb857805160ff1916838001178555611fe5565b82800160010185558215611fe5579182015b82811115611fe5578251825591602001919060010190611fca565b50611ff1929150611ff5565b5090565b5b80821115611ff15760008155600101611ff6565b600067ffffffffffffffff8084111561202557612025612463565b604051601f8501601f19908116603f0116810190828211818310171561204d5761204d612463565b8160405280935085815286868601111561206657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461209757600080fd5b919050565b6000602082840312156120ad578081fd5b61121582612080565b600080604083850312156120c8578081fd5b6120d183612080565b91506120df60208401612080565b90509250929050565b6000806000606084860312156120fc578081fd5b61210584612080565b925061211360208501612080565b9150604084013590509250925092565b60008060008060808587031215612138578081fd5b61214185612080565b935061214f60208601612080565b925060408501359150606085013567ffffffffffffffff811115612171578182fd5b8501601f81018713612181578182fd5b6121908782356020840161200a565b91505092959194509250565b600080604083850312156121ae578182fd5b6121b783612080565b9150602083013580151581146121cb578182fd5b809150509250929050565b600080604083850312156121e8578182fd5b6121f183612080565b946020939093013593505050565b600060208284031215612210578081fd5b813561121581612479565b60006020828403121561222c578081fd5b815161121581612479565b600060208284031215612248578081fd5b813567ffffffffffffffff81111561225e578182fd5b8201601f8101841361226e578182fd5b6114c68482356020840161200a565b60006020828403121561228e578081fd5b5035919050565b600081518084526122ad8160208601602086016123a1565b601f01601f19169290920160200192915050565b600083516122d38184602088016123a1565b8351908301906122e78183602088016123a1565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123226080830184612295565b9695505050505050565b6020815260006112156020830184612295565b6000821982111561235257612352612437565b500190565b6000826123665761236661244d565b500490565b600081600019048311821515161561238557612385612437565b500290565b60008282101561239c5761239c612437565b500390565b60005b838110156123bc5781810151838201526020016123a4565b8381111561112d5750506000910152565b600181811c908216806123e157607f821691505b6020821081141561240257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561241c5761241c612437565b5060010190565b6000826124325761243261244d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461130a57600080fdfea2646970667358221220164d80148addd8581ef5142c6564fde003c78a6e309b9de4fd0eecc628ca3dcb64736f6c63430008040033697066733a2f2f516d64634e703336344379674841796461504b35384d43555143527873695579566642765331546d6965317068322f636f6e7472616374697066733a2f2f516d64634e703336344379674841796461504b35384d43555143527873695579566642765331546d6965317068322f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c5146104c1578063eb8d24441461050a578063f2fde38b14610524578063f47c84c51461054457600080fd5b8063a22cb4651461044c578063b88d4fde1461046c578063c87b56dd1461048c578063e8a3d485146104ac57600080fd5b80638da5cb5b116100d15780638da5cb5b146103e6578063938e3d7b1461040457806395d89b4114610424578063a0712d681461043957600080fd5b806370a0823114610396578063715018a6146103b65780638d859f3e146103cb57600080fd5b80632f745c591161016457806342842e0e1161013e57806342842e0e146103165780634f6ccce71461033657806355f804b3146103565780636352211e1461037657600080fd5b80632f745c59146102cc57806334918dfd146102ec5780633ccfd60b1461030157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029757806327ac36c4146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046121ff565b61055a565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161056b565b6040516101f3919061232c565b34801561022a57600080fd5b5061023e61023936600461227d565b6105fd565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b506102766102713660046121d6565b6106a8565b005b34801561028457600080fd5b506008545b6040519081526020016101f3565b3480156102a357600080fd5b506102766102b23660046120e8565b6107da565b3480156102c357600080fd5b50610276610861565b3480156102d857600080fd5b506102896102e73660046121d6565b6108fd565b3480156102f857600080fd5b506102766109a5565b34801561030d57600080fd5b50610276610a13565b34801561032257600080fd5b506102766103313660046120e8565b610a9c565b34801561034257600080fd5b5061028961035136600461227d565b610ab7565b34801561036257600080fd5b50610276610371366004612237565b610b69565b34801561038257600080fd5b5061023e61039136600461227d565b610bd6565b3480156103a257600080fd5b506102896103b136600461209c565b610c61565b3480156103c257600080fd5b50610276610cfb565b3480156103d757600080fd5b5061028966d529ae9e86000081565b3480156103f257600080fd5b50600a546001600160a01b031661023e565b34801561041057600080fd5b5061027661041f366004612237565b610d61565b34801561043057600080fd5b50610211610dce565b61027661044736600461227d565b610ddd565b34801561045857600080fd5b5061027661046736600461219c565b610fe0565b34801561047857600080fd5b50610276610487366004612123565b6110a5565b34801561049857600080fd5b506102116104a736600461227d565b611133565b3480156104b857600080fd5b5061021161121c565b3480156104cd57600080fd5b506101e76104dc3660046120b6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561051657600080fd5b50600d546101e79060ff1681565b34801561053057600080fd5b5061027661053f36600461209c565b61122b565b34801561055057600080fd5b5061028961271081565b60006105658261130d565b92915050565b60606000805461057a906123cd565b80601f01602080910402602001604051908101604052809291908181526020018280546105a6906123cd565b80156105f35780601f106105c8576101008083540402835291602001916105f3565b820191906000526020600020905b8154815290600101906020018083116105d657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661068c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b382610bd6565b9050806001600160a01b0316836001600160a01b0316141561073d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610683565b336001600160a01b0382161480610759575061075981336104dc565b6107cb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610683565b6107d5838361134b565b505050565b6107e433826113c6565b6108565760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610683565b6107d58383836114ce565b600a546001600160a01b031633146108bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610683565b60006108c660085490565b905060005b600a8110156108f9576108e7336108e2838561233f565b6116b3565b806108f181612408565b9150506108cb565b5050565b600061090883610c61565b821061097c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610683565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610683565b600d805460ff19811660ff90911615179055565b600a546001600160a01b03163314610a6d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610683565b6040514790339082156108fc029083906000818181858888f193505050501580156108f9573d6000803e3d6000fd5b6107d5838383604051806020016040528060008152506110a5565b6000610ac260085490565b8210610b365760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610683565b60088281548110610b5757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610bc35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610683565b80516108f990600b906020840190611f71565b6000818152600260205260408120546001600160a01b0316806105655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610683565b60006001600160a01b038216610cdf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610683565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610683565b610d5f60006116cd565b565b600a546001600160a01b03163314610dbb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610683565b80516108f990600c906020840190611f71565b60606001805461057a906123cd565b6000610de860085490565b600d5490915060ff16610e3d5760405162461bcd60e51b815260206004820152601260248201527f53616c65206973206e6f742061637469766500000000000000000000000000006044820152606401610683565b60008211610e8d5760405162461bcd60e51b815260206004820152600960248201527f4d696e74696e67203000000000000000000000000000000000000000000000006044820152606401610683565b6014821115610ede5760405162461bcd60e51b815260206004820152601460248201527f4d6178206f6620323020697320616c6c6f7765640000000000000000000000006044820152606401610683565b612710610eeb838361233f565b1115610f395760405162461bcd60e51b815260206004820152601260248201527f50617373696e67206d617820737570706c7900000000000000000000000000006044820152606401610683565b610f4a8266d529ae9e86000061236b565b341015610f995760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f7272656374000000000000006044820152606401610683565b60005b828110156107d5576000610faf60085490565b9050612710610fbd60085490565b1015610fcd57610fcd33826116b3565b5080610fd881612408565b915050610f9c565b6001600160a01b0382163314156110395760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610683565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110af33836113c6565b6111215760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610683565b61112d8484848461172c565b50505050565b6000818152600260205260409020546060906001600160a01b03166111c05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610683565b60006111ca6117b5565b905060008151116111ea5760405180602001604052806000815250611215565b806111f4846117c4565b6040516020016112059291906122c1565b6040516020818303038152906040525b9392505050565b6060600c805461057a906123cd565b600a546001600160a01b031633146112855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610683565b6001600160a01b0381166113015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610683565b61130a816116cd565b50565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610565575061056582611912565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061138d82610bd6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114505760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610683565b600061145b83610bd6565b9050806001600160a01b0316846001600160a01b031614806114965750836001600160a01b031661148b846105fd565b6001600160a01b0316145b806114c657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114e182610bd6565b6001600160a01b03161461155d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610683565b6001600160a01b0382166115d85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610683565b6115e38383836119ad565b6115ee60008261134b565b6001600160a01b038316600090815260036020526040812080546001929061161790849061238a565b90915550506001600160a01b038216600090815260036020526040812080546001929061164590849061233f565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108f98282604051806020016040528060008152506119b8565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117378484846114ce565b61174384848484611a41565b61112d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610683565b6060600b805461057a906123cd565b60608161180457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561182e578061181881612408565b91506118279050600a83612357565b9150611808565b60008167ffffffffffffffff81111561185757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611881576020820181803683370190505b5090505b84156114c65761189660018361238a565b91506118a3600a86612423565b6118ae90603061233f565b60f81b8183815181106118d157634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061190b600a86612357565b9450611885565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061197557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061056557507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610565565b6107d5838383611ba4565b6119c28383611c5c565b6119cf6000848484611a41565b6107d55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610683565b60006001600160a01b0384163b15611b9957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a859033908990889088906004016122f0565b602060405180830381600087803b158015611a9f57600080fd5b505af1925050508015611acf575060408051601f3d908101601f19168201909252611acc9181019061221b565b60015b611b7f573d808015611afd576040519150601f19603f3d011682016040523d82523d6000602084013e611b02565b606091505b508051611b775760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610683565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114c6565b506001949350505050565b6001600160a01b038316611bff57611bfa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c22565b816001600160a01b0316836001600160a01b031614611c2257611c228382611db7565b6001600160a01b038216611c39576107d581611e54565b826001600160a01b0316826001600160a01b0316146107d5576107d58282611f2d565b6001600160a01b038216611cb25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610683565b6000818152600260205260409020546001600160a01b031615611d175760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610683565b611d23600083836119ad565b6001600160a01b0382166000908152600360205260408120805460019290611d4c90849061233f565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611dc484610c61565b611dce919061238a565b600083815260076020526040902054909150808214611e21576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e669060019061238a565b60008381526009602052604081205460088054939450909284908110611e9c57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611ecb57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f1157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611f3883610c61565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611f7d906123cd565b90600052602060002090601f016020900481019282611f9f5760008555611fe5565b82601f10611fb857805160ff1916838001178555611fe5565b82800160010185558215611fe5579182015b82811115611fe5578251825591602001919060010190611fca565b50611ff1929150611ff5565b5090565b5b80821115611ff15760008155600101611ff6565b600067ffffffffffffffff8084111561202557612025612463565b604051601f8501601f19908116603f0116810190828211818310171561204d5761204d612463565b8160405280935085815286868601111561206657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461209757600080fd5b919050565b6000602082840312156120ad578081fd5b61121582612080565b600080604083850312156120c8578081fd5b6120d183612080565b91506120df60208401612080565b90509250929050565b6000806000606084860312156120fc578081fd5b61210584612080565b925061211360208501612080565b9150604084013590509250925092565b60008060008060808587031215612138578081fd5b61214185612080565b935061214f60208601612080565b925060408501359150606085013567ffffffffffffffff811115612171578182fd5b8501601f81018713612181578182fd5b6121908782356020840161200a565b91505092959194509250565b600080604083850312156121ae578182fd5b6121b783612080565b9150602083013580151581146121cb578182fd5b809150509250929050565b600080604083850312156121e8578182fd5b6121f183612080565b946020939093013593505050565b600060208284031215612210578081fd5b813561121581612479565b60006020828403121561222c578081fd5b815161121581612479565b600060208284031215612248578081fd5b813567ffffffffffffffff81111561225e578182fd5b8201601f8101841361226e578182fd5b6114c68482356020840161200a565b60006020828403121561228e578081fd5b5035919050565b600081518084526122ad8160208601602086016123a1565b601f01601f19169290920160200192915050565b600083516122d38184602088016123a1565b8351908301906122e78183602088016123a1565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123226080830184612295565b9695505050505050565b6020815260006112156020830184612295565b6000821982111561235257612352612437565b500190565b6000826123665761236661244d565b500490565b600081600019048311821515161561238557612385612437565b500290565b60008282101561239c5761239c612437565b500390565b60005b838110156123bc5781810151838201526020016123a4565b8381111561112d5750506000910152565b600181811c908216806123e157607f821691505b6020821081141561240257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561241c5761241c612437565b5060010190565b6000826124325761243261244d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461130a57600080fdfea2646970667358221220164d80148addd8581ef5142c6564fde003c78a6e309b9de4fd0eecc628ca3dcb64736f6c63430008040033
Deployed Bytecode Sourcemap
1102:2761:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3460:177;;;;;;;;;;-1:-1:-1;3460:177:10;;;;;:::i;:::-;;:::i;:::-;;;5865:14:13;;5858:22;5840:41;;5828:2;5813:18;3460:177:10;;;;;;;;2349:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3860:217::-;;;;;;;;;;-1:-1:-1;3860:217:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5117:55:13;;;5099:74;;5087:2;5072:18;3860:217:3;5054:125:13;3398:401:3;;;;;;;;;;-1:-1:-1;3398:401:3;;;;;:::i;:::-;;:::i;:::-;;1534:111:4;;;;;;;;;;-1:-1:-1;1621:10:4;:17;1534:111;;;15203:25:13;;;15191:2;15176:18;1534:111:4;15158:76:13;4724:330:3;;;;;;;;;;-1:-1:-1;4724:330:3;;;;;:::i;:::-;;:::i;2619:189:10:-;;;;;;;;;;;;;:::i;1210:253:4:-;;;;;;;;;;-1:-1:-1;1210:253:4;;;;;:::i;:::-;;:::i;2320:87:10:-;;;;;;;;;;;;;:::i;2413:137::-;;;;;;;;;;;;;:::i;5120:179:3:-;;;;;;;;;;-1:-1:-1;5120:179:3;;;;;:::i;:::-;;:::i;1717:230:4:-;;;;;;;;;;-1:-1:-1;1717:230:4;;;;;:::i;:::-;;:::i;3761:100:10:-;;;;;;;;;;-1:-1:-1;3761:100:10;;;;;:::i;:::-;;:::i;2052:235:3:-;;;;;;;;;;-1:-1:-1;2052:235:3;;;;;:::i;:::-;;:::i;1790:205::-;;;;;;;;;;-1:-1:-1;1790:205:3;;;;;:::i;:::-;;:::i;1598:92:11:-;;;;;;;;;;;;;:::i;1250:42:10:-;;;;;;;;;;;;1282:10;1250:42;;966:85:11;;;;;;;;;;-1:-1:-1;1038:6:11;;-1:-1:-1;;;;;1038:6:11;966:85;;2865:98:10;;;;;;;;;;-1:-1:-1;2865:98:10;;;;;:::i;:::-;;:::i;2511:102:3:-;;;;;;;;;;;;;:::i;1732:582:10:-;;;;;;:::i;:::-;;:::i;4144:290:3:-;;;;;;;;;;-1:-1:-1;4144:290:3;;;;;:::i;:::-;;:::i;5365:320::-;;;;;;;;;;-1:-1:-1;5365:320:3;;;;;:::i;:::-;;:::i;2679:329::-;;;;;;;;;;-1:-1:-1;2679:329:3;;;;;:::i;:::-;;:::i;2969:90:10:-;;;;;;;;;;;;;:::i;4500:162:3:-;;;;;;;;;;-1:-1:-1;4500:162:3;;;;;:::i;:::-;-1:-1:-1;;;;;4620:25:3;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4500:162;1533:24:10;;;;;;;;;;-1:-1:-1;1533:24:10;;;;;;;;1839:189:11;;;;;;;;;;-1:-1:-1;1839:189:11;;;;;:::i;:::-;;:::i;1202:42:10:-;;;;;;;;;;;;1239:5;1202:42;;3460:177;3571:4;3594:36;3618:11;3594:23;:36::i;:::-;3587:43;3460:177;-1:-1:-1;;3460:177:10:o;2349:98:3:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:3;3955:73;;;;-1:-1:-1;;;3955:73:3;;11376:2:13;3955:73:3;;;11358:21:13;11415:2;11395:18;;;11388:30;11454:34;11434:18;;;11427:62;11525:14;11505:18;;;11498:42;11557:19;;3955:73:3;;;;;;;;;-1:-1:-1;4046:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:3;;3860:217::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:3;:2;-1:-1:-1;;;;;3535:11:3;;;3527:57;;;;-1:-1:-1;;;3527:57:3;;12976:2:13;3527:57:3;;;12958:21:13;13015:2;12995:18;;;12988:30;13054:34;13034:18;;;13027:62;13125:3;13105:18;;;13098:31;13146:19;;3527:57:3;12948:223:13;3527:57:3;665:10:1;-1:-1:-1;;;;;3616:21:3;;;;:62;;-1:-1:-1;3641:37:3;3658:5;665:10:1;4500:162:3;:::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:3;;9432:2:13;3595:165:3;;;9414:21:13;9471:2;9451:18;;;9444:30;9510:34;9490:18;;;9483:62;9581:26;9561:18;;;9554:54;9625:19;;3595:165:3;9404:246:13;3595:165:3;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3398:401;;;:::o;4724:330::-;4913:41;665:10:1;4946:7:3;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:3;;13732:2:13;4905:103:3;;;13714:21:13;13771:2;13751:18;;;13744:30;13810:34;13790:18;;;13783:62;13881:19;13861:18;;;13854:47;13918:19;;4905:103:3;13704:239:13;4905:103:3;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;2619:189:10:-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;11789:2:13;1170:68:11;;;11771:21:13;;;11808:18;;;11801:30;11867:34;11847:18;;;11840:62;11919:18;;1170:68:11;11761:182:13;1170:68:11;2671:14:10::1;2688:13;1621:10:4::0;:17;;1534:111;2688:13:10::1;2671:30;;2716:9;2711:91;2735:2;2731:1;:6;2711:91;;;2758:33;2768:10;2780;2789:1:::0;2780:6;:10:::1;:::i;:::-;2758:9;:33::i;:::-;2739:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2711:91;;;;1248:1:11;2619:189:10:o:0;1210:253:4:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;-1:-1:-1;;;1326:87:4;;6318:2:13;1326:87:4;;;6300:21:13;6357:2;6337:18;;;6330:30;6396:34;6376:18;;;6369:62;6467:13;6447:18;;;6440:41;6498:19;;1326:87:4;6290:233:13;1326:87:4;-1:-1:-1;;;;;;1430:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1210:253::o;2320:87:10:-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;11789:2:13;1170:68:11;;;11771:21:13;;;11808:18;;;11801:30;11867:34;11847:18;;;11840:62;11919:18;;1170:68:11;11761:182:13;1170:68:11;2388:12:10::1;::::0;;-1:-1:-1;;2372:28:10;::::1;2388:12;::::0;;::::1;2387:13;2372:28;::::0;;2320:87::o;2413:137::-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;11789:2:13;1170:68:11;;;11771:21:13;;;11808:18;;;11801:30;11867:34;11847:18;;;11840:62;11919:18;;1170:68:11;11761:182:13;1170:68:11;2506:37:10::1;::::0;2475:21:::1;::::0;2514:10:::1;::::0;2506:37;::::1;;;::::0;2475:21;;2460:12:::1;2506:37:::0;2460:12;2506:37;2475:21;2514:10;2506:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;5120:179:3::0;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;1717:230:4:-;1792:7;1827:30;1621:10;:17;;1534:111;1827:30;1819:5;:38;1811:95;;;;-1:-1:-1;;;1811:95:4;;14150:2:13;1811:95:4;;;14132:21:13;14189:2;14169:18;;;14162:30;14228:34;14208:18;;;14201:62;14299:14;14279:18;;;14272:42;14331:19;;1811:95:4;14122:234:13;1811:95:4;1923:10;1934:5;1923:17;;;;;;-1:-1:-1;;;1923:17:4;;;;;;;;;;;;;;;;;1916:24;;1717:230;;;:::o;3761:100:10:-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;11789:2:13;1170:68:11;;;11771:21:13;;;11808:18;;;11801:30;11867:34;11847:18;;;11840:62;11919:18;;1170:68:11;11761:182:13;1170:68:11;3831:23:10;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;2052:235:3:-:0;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:3;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:3;;10268:2:13;2185:73:3;;;10250:21:13;10307:2;10287:18;;;10280:30;10346:34;10326:18;;;10319:62;10417:11;10397:18;;;10390:39;10446:19;;2185:73:3;10240:231:13;1790:205:3;1862:7;-1:-1:-1;;;;;1889:19:3;;1881:74;;;;-1:-1:-1;;;1881:74:3;;9857:2:13;1881:74:3;;;9839:21:13;9896:2;9876:18;;;9869:30;9935:34;9915:18;;;9908:62;10006:12;9986:18;;;9979:40;10036:19;;1881:74:3;9829:232:13;1881:74:3;-1:-1:-1;;;;;;1972:16:3;;;;;:9;:16;;;;;;;1790:205::o;1598:92:11:-;1038:6;;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;11789:2:13;1170:68:11;;;11771:21:13;;;11808:18;;;11801:30;11867:34;11847:18;;;11840:62;11919:18;;1170:68:11;11761:182:13;1170:68:11;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;2865:98:10:-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;11789:2:13;1170:68:11;;;11771:21:13;;;11808:18;;;11801:30;11867:34;11847:18;;;11840:62;11919:18;;1170:68:11;11761:182:13;1170:68:11;2933:26:10;;::::1;::::0;:16:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;2511:102:3:-:0;2567:13;2599:7;2592:14;;;;;:::i;1732:582:10:-;1784:14;1801:13;1621:10:4;:17;;1534:111;1801:13:10;1832:12;;1784:30;;-1:-1:-1;1832:12:10;;1824:43;;;;-1:-1:-1;;;1824:43:10;;8672:2:13;1824:43:10;;;8654:21:13;8711:2;8691:18;;;8684:30;8750:20;8730:18;;;8723:48;8788:18;;1824:43:10;8644:168:13;1824:43:10;1891:1;1885:3;:7;1877:29;;;;-1:-1:-1;;;1877:29:10;;10678:2:13;1877:29:10;;;10660:21:13;10717:1;10697:18;;;10690:29;10755:11;10735:18;;;10728:39;10784:18;;1877:29:10;10650:158:13;1877:29:10;1931:2;1924:3;:9;;1916:42;;;;-1:-1:-1;;;1916:42:10;;14910:2:13;1916:42:10;;;14892:21:13;14949:2;14929:18;;;14922:30;14988:22;14968:18;;;14961:50;15028:18;;1916:42:10;14882:170:13;1916:42:10;1239:5;1976:12;1985:3;1976:6;:12;:::i;:::-;:26;;1968:57;;;;-1:-1:-1;;;1968:57:10;;14563:2:13;1968:57:10;;;14545:21:13;14602:2;14582:18;;;14575:30;14641:20;14621:18;;;14614:48;14679:18;;1968:57:10;14535:168:13;1968:57:10;2056:11;2064:3;1282:10;2056:11;:::i;:::-;2043:9;:24;;2035:62;;;;-1:-1:-1;;;2035:62:10;;13378:2:13;2035:62:10;;;13360:21:13;13417:2;13397:18;;;13390:30;13456:27;13436:18;;;13429:55;13501:18;;2035:62:10;13350:175:13;2035:62:10;2112:9;2108:200;2131:3;2127:1;:7;2108:200;;;2154:17;2174:13;1621:10:4;:17;;1534:111;2174:13:10;2154:33;;1239:5;2205:13;1621:10:4;:17;;1534:111;2205:13:10;:26;2201:97;;;2251:32;2261:10;2273:9;2251;:32::i;:::-;-1:-1:-1;2136:3:10;;;;:::i;:::-;;;;2108:200;;4144:290:3;-1:-1:-1;;;;;4246:24:3;;665:10:1;4246:24:3;;4238:62;;;;-1:-1:-1;;;4238:62:3;;8318:2:13;4238:62:3;;;8300:21:13;8357:2;8337:18;;;8330:30;8396:27;8376:18;;;8369:55;8441:18;;4238:62:3;8290:175:13;4238:62:3;665:10:1;4311:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4311:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;4311:53:3;;;;;;;;;;4379:48;;5840:41:13;;;4311:42:3;;665:10:1;4379:48:3;;5813:18:13;4379:48:3;;;;;;;4144:290;;:::o;5365:320::-;5534:41;665:10:1;5567:7:3;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:3;;13732:2:13;5526:103:3;;;13714:21:13;13771:2;13751:18;;;13744:30;13810:34;13790:18;;;13783:62;13881:19;13861:18;;;13854:47;13918:19;;5526:103:3;13704:239:13;5526:103:3;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;2679:329::-;7222:4;7245:16;;;:7;:16;;;;;;2752:13;;-1:-1:-1;;;;;7245:16:3;2777:76;;;;-1:-1:-1;;;2777:76:3;;12560:2:13;2777:76:3;;;12542:21:13;12599:2;12579:18;;;12572:30;12638:34;12618:18;;;12611:62;12709:17;12689:18;;;12682:45;12744:19;;2777:76:3;12532:237:13;2777:76:3;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;2679:329;-1:-1:-1;;;2679:329:3:o;2969:90:10:-;3013:13;3039:16;3032:23;;;;;:::i;1839:189:11:-;1038:6;;-1:-1:-1;;;;;1038:6:11;665:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;11789:2:13;1170:68:11;;;11771:21:13;;;11808:18;;;11801:30;11867:34;11847:18;;;11840:62;11919:18;;1170:68:11;11761:182:13;1170:68:11;-1:-1:-1;;;;;1927:22:11;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:11;;7149:2:13;1919:73:11::1;::::0;::::1;7131:21:13::0;7188:2;7168:18;;;7161:30;7227:34;7207:18;;;7200:62;7298:8;7278:18;;;7271:36;7324:19;;1919:73:11::1;7121:228:13::0;1919:73:11::1;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;909:222:4:-;1011:4;-1:-1:-1;;;;;;1034:50:4;;1049:35;1034:50;;:90;;;1088:36;1112:11;1088:23;:36::i;11008:171:3:-;11082:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;11082:29:3;-1:-1:-1;;;;;11082:29:3;;;;;;;;:24;;11135:23;11082:24;11135:14;:23::i;:::-;-1:-1:-1;;;;;11126:46:3;;;;;;;;;;;11008:171;;:::o;7440:344::-;7533:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:3;7549:73;;;;-1:-1:-1;;;7549:73:3;;9019:2:13;7549:73:3;;;9001:21:13;9058:2;9038:18;;;9031:30;9097:34;9077:18;;;9070:62;9168:14;9148:18;;;9141:42;9200:19;;7549:73:3;8991:234:13;7549:73:3;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;-1:-1:-1;;;;;7689:16:3;:7;-1:-1:-1;;;;;7689:16:3;;:51;;;;7733:7;-1:-1:-1;;;;;7709:31:3;:20;7721:7;7709:11;:20::i;:::-;-1:-1:-1;;;;;7709:31:3;;7689:51;:87;;;-1:-1:-1;;;;;;4620:25:3;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7744:32;7681:96;7440:344;-1:-1:-1;;;;7440:344:3:o;10337:560::-;10491:4;-1:-1:-1;;;;;10464:31:3;:23;10479:7;10464:14;:23::i;:::-;-1:-1:-1;;;;;10464:31:3;;10456:85;;;;-1:-1:-1;;;10456:85:3;;12150:2:13;10456:85:3;;;12132:21:13;12189:2;12169:18;;;12162:30;12228:34;12208:18;;;12201:62;12299:11;12279:18;;;12272:39;12328:19;;10456:85:3;12122:231:13;10456:85:3;-1:-1:-1;;;;;10559:16:3;;10551:65;;;;-1:-1:-1;;;10551:65:3;;7913:2:13;10551:65:3;;;7895:21:13;7952:2;7932:18;;;7925:30;7991:34;7971:18;;;7964:62;8062:6;8042:18;;;8035:34;8086:19;;10551:65:3;7885:226:13;10551:65:3;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;-1:-1:-1;;;;;10768:15:3;;;;;;:9;:15;;;;;:20;;10787:1;;10768:15;:20;;10787:1;;10768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10798:13:3;;;;;;:9;:13;;;;;:18;;10815:1;;10798:13;:18;;10815:1;;10798:18;:::i;:::-;;;;-1:-1:-1;;10826:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;10826:21:3;-1:-1:-1;;;;;10826:21:3;;;;;;;;;10863:27;;10826:16;;10863:27;;;;;;;10337:560;;;:::o;8114:108::-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;2034:169:11:-;2108:6;;;-1:-1:-1;;;;;2124:17:11;;;-1:-1:-1;;2124:17:11;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2034:169;;:::o;6547:307:3:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;-1:-1:-1;;;6736:111:3;;6730:2:13;6736:111:3;;;6712:21:13;6769:2;6749:18;;;6742:30;6808:34;6788:18;;;6781:62;6879:20;6859:18;;;6852:48;6917:19;;6736:111:3;6702:240:13;3643:112:10;3703:13;3735;3728:20;;;;;:::i;275:703:12:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:12;;;;;;;;;;;;;;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:12;;-1:-1:-1;720:2:12;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;-1:-1:-1;;;764:17:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:12;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:12;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;-1:-1:-1;;;849:14:12;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;919:11:12;928:2;919:11;;:::i;:::-;;;791:150;;1431:300:3;1533:4;-1:-1:-1;;;;;;1568:40:3;;1583:25;1568:40;;:104;;-1:-1:-1;;;;;;;1624:48:3;;1639:33;1624:48;1568:104;:156;;;-1:-1:-1;886:25:2;-1:-1:-1;;;;;;871:40:2;;;1688:36:3;763:155:2;3170:179:10;3297:45;3324:4;3330:2;3334:7;3297:26;:45::i;8443:311:3:-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;-1:-1:-1;;;8596:151:3;;6730:2:13;8596:151:3;;;6712:21:13;6769:2;6749:18;;;6742:30;6808:34;6788:18;;;6781:62;6879:20;6859:18;;;6852:48;6917:19;;8596:151:3;6702:240:13;11732:782:3;11882:4;-1:-1:-1;;;;;11902:13:3;;1034:20:0;1080:8;11898:610:3;;11937:72;;-1:-1:-1;;;11937:72:3;;-1:-1:-1;;;;;11937:36:3;;;;;:72;;665:10:1;;11988:4:3;;11994:7;;12003:5;;11937:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11937:72:3;;;;;;;;-1:-1:-1;;11937:72:3;;;;;;;;;;;;:::i;:::-;;;11933:523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12180:13:3;;12176:266;;12222:60;;-1:-1:-1;;;12222:60:3;;6730:2:13;12222:60:3;;;6712:21:13;6769:2;6749:18;;;6742:30;6808:34;6788:18;;;6781:62;6879:20;6859:18;;;6852:48;6917:19;;12222:60:3;6702:240:13;12176:266:3;12394:6;12388:13;12379:6;12375:2;12371:15;12364:38;11933:523;-1:-1:-1;;;;;;12059:55:3;-1:-1:-1;;;12059:55:3;;-1:-1:-1;12052:62:3;;11898:610;-1:-1:-1;12493:4:3;11732:782;;;;;;:::o;2543:572:4:-;-1:-1:-1;;;;;2742:18:4;;2738:183;;2776:40;2808:7;3924:10;:17;;3897:24;;;;:15;:24;;;;;:44;;;3951:24;;;;;;;;;;;;3821:161;2776:40;2738:183;;;2845:2;-1:-1:-1;;;;;2837:10:4;:4;-1:-1:-1;;;;;2837:10:4;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;-1:-1:-1;;;;;2934:16:4;;2930:179;;2966:45;3003:7;2966:36;:45::i;2930:179::-;3038:4;-1:-1:-1;;;;;3032:10:4;:2;-1:-1:-1;;;;;3032:10:4;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;9076:372:3:-;-1:-1:-1;;;;;9155:16:3;;9147:61;;;;-1:-1:-1;;;9147:61:3;;11015:2:13;9147:61:3;;;10997:21:13;;;11034:18;;;11027:30;11093:34;11073:18;;;11066:62;11145:18;;9147:61:3;10987:182:13;9147:61:3;7222:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:3;:30;9218:58;;;;-1:-1:-1;;;9218:58:3;;7556:2:13;9218:58:3;;;7538:21:13;7595:2;7575:18;;;7568:30;7634;7614:18;;;7607:58;7682:18;;9218:58:3;7528:178:13;9218:58:3;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;-1:-1:-1;;;;;9343:13:3;;;;;;:9;:13;;;;;:18;;9360:1;;9343:13;:18;;9360:1;;9343:18;:::i;:::-;;;;-1:-1:-1;;9371:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;9371:21:3;-1:-1:-1;;;;;9371:21:3;;;;;;;;9408:33;;9371:16;;;9408:33;;9371:16;;9408:33;9076:372;;:::o;4599:970:4:-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4922:18;4943:26;;;:17;:26;;;;;;4861:51;;-1:-1:-1;5073:28:4;;;5069:323;;-1:-1:-1;;;;;5139:18:4;;5117:19;5139:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5188:30;;;;;;:44;;;5304:30;;:17;:30;;;;;:43;;;5069:323;-1:-1:-1;5485:26:4;;;;:17;:26;;;;;;;;5478:33;;;-1:-1:-1;;;;;5528:18:4;;;;;:12;:18;;;;;:34;;;;;;;5521:41;4599:970::o;5857:1061::-;6131:10;:17;6106:22;;6131:21;;6151:1;;6131:21;:::i;:::-;6162:18;6183:24;;;:15;:24;;;;;;6551:10;:26;;6106:46;;-1:-1:-1;6183:24:4;;6106:46;;6551:26;;;;-1:-1:-1;;;6551:26:4;;;;;;;;;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;-1:-1:-1;;;6588:22:4;;;;;;;;;;;;;;;;;;;;:36;;;;6692:28;;;:15;:28;;;;;;;:41;;;6861:24;;;;;6854:31;6895:10;:16;;;;;-1:-1:-1;;;6895:16:4;;;;;;;;;;;;;;;;;;;;;;;;;;5857:1061;;;;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;-1:-1:-1;;;;;3540:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3584:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3409:217:4:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:13;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:13;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:13;;757:65;;747:2;;836:1;833;826:12;747:2;699:147;;;:::o;851:196::-;910:6;963:2;951:9;942:7;938:23;934:32;931:2;;;984:6;976;969:22;931:2;1012:29;1031:9;1012:29;:::i;1052:270::-;1120:6;1128;1181:2;1169:9;1160:7;1156:23;1152:32;1149:2;;;1202:6;1194;1187:22;1149:2;1230:29;1249:9;1230:29;:::i;:::-;1220:39;;1278:38;1312:2;1301:9;1297:18;1278:38;:::i;:::-;1268:48;;1139:183;;;;;:::o;1327:338::-;1404:6;1412;1420;1473:2;1461:9;1452:7;1448:23;1444:32;1441:2;;;1494:6;1486;1479:22;1441:2;1522:29;1541:9;1522:29;:::i;:::-;1512:39;;1570:38;1604:2;1593:9;1589:18;1570:38;:::i;:::-;1560:48;;1655:2;1644:9;1640:18;1627:32;1617:42;;1431:234;;;;;:::o;1670:696::-;1765:6;1773;1781;1789;1842:3;1830:9;1821:7;1817:23;1813:33;1810:2;;;1864:6;1856;1849:22;1810:2;1892:29;1911:9;1892:29;:::i;:::-;1882:39;;1940:38;1974:2;1963:9;1959:18;1940:38;:::i;:::-;1930:48;;2025:2;2014:9;2010:18;1997:32;1987:42;;2080:2;2069:9;2065:18;2052:32;2107:18;2099:6;2096:30;2093:2;;;2144:6;2136;2129:22;2093:2;2172:22;;2225:4;2217:13;;2213:27;-1:-1:-1;2203:2:13;;2259:6;2251;2244:22;2203:2;2287:73;2352:7;2347:2;2334:16;2329:2;2325;2321:11;2287:73;:::i;:::-;2277:83;;;1800:566;;;;;;;:::o;2371:367::-;2436:6;2444;2497:2;2485:9;2476:7;2472:23;2468:32;2465:2;;;2518:6;2510;2503:22;2465:2;2546:29;2565:9;2546:29;:::i;:::-;2536:39;;2625:2;2614:9;2610:18;2597:32;2672:5;2665:13;2658:21;2651:5;2648:32;2638:2;;2699:6;2691;2684:22;2638:2;2727:5;2717:15;;;2455:283;;;;;:::o;2743:264::-;2811:6;2819;2872:2;2860:9;2851:7;2847:23;2843:32;2840:2;;;2893:6;2885;2878:22;2840:2;2921:29;2940:9;2921:29;:::i;:::-;2911:39;2997:2;2982:18;;;;2969:32;;-1:-1:-1;;;2830:177:13:o;3012:255::-;3070:6;3123:2;3111:9;3102:7;3098:23;3094:32;3091:2;;;3144:6;3136;3129:22;3091:2;3188:9;3175:23;3207:30;3231:5;3207:30;:::i;3272:259::-;3341:6;3394:2;3382:9;3373:7;3369:23;3365:32;3362:2;;;3415:6;3407;3400:22;3362:2;3452:9;3446:16;3471:30;3495:5;3471:30;:::i;3536:480::-;3605:6;3658:2;3646:9;3637:7;3633:23;3629:32;3626:2;;;3679:6;3671;3664:22;3626:2;3724:9;3711:23;3757:18;3749:6;3746:30;3743:2;;;3794:6;3786;3779:22;3743:2;3822:22;;3875:4;3867:13;;3863:27;-1:-1:-1;3853:2:13;;3909:6;3901;3894:22;3853:2;3937:73;4002:7;3997:2;3984:16;3979:2;3975;3971:11;3937:73;:::i;4021:190::-;4080:6;4133:2;4121:9;4112:7;4108:23;4104:32;4101:2;;;4154:6;4146;4139:22;4101:2;-1:-1:-1;4182:23:13;;4091:120;-1:-1:-1;4091:120:13:o;4216:257::-;4257:3;4295:5;4289:12;4322:6;4317:3;4310:19;4338:63;4394:6;4387:4;4382:3;4378:14;4371:4;4364:5;4360:16;4338:63;:::i;:::-;4455:2;4434:15;-1:-1:-1;;4430:29:13;4421:39;;;;4462:4;4417:50;;4265:208;-1:-1:-1;;4265:208:13:o;4478:470::-;4657:3;4695:6;4689:13;4711:53;4757:6;4752:3;4745:4;4737:6;4733:17;4711:53;:::i;:::-;4827:13;;4786:16;;;;4849:57;4827:13;4786:16;4883:4;4871:17;;4849:57;:::i;:::-;4922:20;;4665:283;-1:-1:-1;;;;4665:283:13:o;5184:511::-;5378:4;-1:-1:-1;;;;;5488:2:13;5480:6;5476:15;5465:9;5458:34;5540:2;5532:6;5528:15;5523:2;5512:9;5508:18;5501:43;;5580:6;5575:2;5564:9;5560:18;5553:34;5623:3;5618:2;5607:9;5603:18;5596:31;5644:45;5684:3;5673:9;5669:19;5661:6;5644:45;:::i;:::-;5636:53;5387:308;-1:-1:-1;;;;;;5387:308:13:o;5892:219::-;6041:2;6030:9;6023:21;6004:4;6061:44;6101:2;6090:9;6086:18;6078:6;6061:44;:::i;15239:128::-;15279:3;15310:1;15306:6;15303:1;15300:13;15297:2;;;15316:18;;:::i;:::-;-1:-1:-1;15352:9:13;;15287:80::o;15372:120::-;15412:1;15438;15428:2;;15443:18;;:::i;:::-;-1:-1:-1;15477:9:13;;15418:74::o;15497:168::-;15537:7;15603:1;15599;15595:6;15591:14;15588:1;15585:21;15580:1;15573:9;15566:17;15562:45;15559:2;;;15610:18;;:::i;:::-;-1:-1:-1;15650:9:13;;15549:116::o;15670:125::-;15710:4;15738:1;15735;15732:8;15729:2;;;15743:18;;:::i;:::-;-1:-1:-1;15780:9:13;;15719:76::o;15800:258::-;15872:1;15882:113;15896:6;15893:1;15890:13;15882:113;;;15972:11;;;15966:18;15953:11;;;15946:39;15918:2;15911:10;15882:113;;;16013:6;16010:1;16007:13;16004:2;;;-1:-1:-1;;16048:1:13;16030:16;;16023:27;15853:205::o;16063:437::-;16142:1;16138:12;;;;16185;;;16206:2;;16260:4;16252:6;16248:17;16238:27;;16206:2;16313;16305:6;16302:14;16282:18;16279:38;16276:2;;;-1:-1:-1;;;16347:1:13;16340:88;16451:4;16448:1;16441:15;16479:4;16476:1;16469:15;16276:2;;16118:382;;;:::o;16505:135::-;16544:3;-1:-1:-1;;16565:17:13;;16562:2;;;16585:18;;:::i;:::-;-1:-1:-1;16632:1:13;16621:13;;16552:88::o;16645:112::-;16677:1;16703;16693:2;;16708:18;;:::i;:::-;-1:-1:-1;16742:9:13;;16683:74::o;16762:184::-;-1:-1:-1;;;16811:1:13;16804:88;16911:4;16908:1;16901:15;16935:4;16932:1;16925:15;16951:184;-1:-1:-1;;;17000:1:13;16993:88;17100:4;17097:1;17090:15;17124:4;17121:1;17114:15;17140:184;-1:-1:-1;;;17189:1:13;17182:88;17289:4;17286:1;17279:15;17313:4;17310:1;17303:15;17329:177;-1:-1:-1;;;;;;17407:5:13;17403:78;17396:5;17393:89;17383:2;;17496:1;17493;17486:12
Swarm Source
ipfs://164d80148addd8581ef5142c6564fde003c78a6e309b9de4fd0eecc628ca3dcb
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.