ERC-721
Overview
Max Total Supply
120 BM
Holders
56
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 BMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BigMouth
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "./token/ERC721/extensions/ERC721Enumerable.sol"; import "./access/Ownable.sol"; import "./utils/Strings.sol"; contract BigMouth is ERC721Enumerable, Ownable { using Strings for uint256; bool public _isSaleActive = false; uint256 public constant MAX_SUPPLY = 2000; uint256 public mintPrice = 0 ether; uint256 public maxBalance = 2; uint256 public maxMint = 1; string baseURI; string public baseExtension = ".json"; constructor(string memory initBaseURI) ERC721("Big Mouth", "BM") { setBaseURI(initBaseURI); } function mintBigMouth(uint256 tokenQuantity) public payable { require( totalSupply() + tokenQuantity <= MAX_SUPPLY, "Sale would exceed max supply" ); require(_isSaleActive, "Sale must be active to mint NFTs"); require( balanceOf(msg.sender) + tokenQuantity <= maxBalance, "Sale would exceed max balance" ); require( tokenQuantity * mintPrice <= msg.value, "Not enough ether sent" ); require(tokenQuantity <= maxMint, "Can only mint 1 tokens at a time"); _mintNFT(tokenQuantity); } function _mintNFT(uint256 tokenQuantity) internal { for (uint256 i = 0; i < tokenQuantity; i++) { uint256 mintIndex = totalSupply(); if (totalSupply() < MAX_SUPPLY) { _safeMint(msg.sender, mintIndex); } } } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory base = _baseURI(); require( bytes(base).length > 0, "ERC721Metadata: URI query for nonexistent base" ); return string(abi.encodePacked(base, tokenId.toString(), baseExtension)); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function flipSaleActive() public onlyOwner { _isSaleActive = !_isSaleActive; } function setMintPrice(uint256 _mintPrice) public onlyOwner { mintPrice = _mintPrice; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setMaxBalance(uint256 _maxBalance) public onlyOwner { maxBalance = _maxBalance; } function setMaxMint(uint256 _maxMint) public onlyOwner { maxMint = _maxMint; } function withdraw(address to) public onlyOwner { uint256 balance = address(this).balance; payable(to).transfer(balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol) 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 See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; 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 // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) 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); /** * @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 // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/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: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); 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) { _requireMinted(tokenId); 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 overridden 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 token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @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 _ownerOf(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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @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 from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/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`. * * 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; /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) 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 // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) 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 // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "remappings": [] }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleActive","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":[],"name":"maxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintBigMouth","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBalance","type":"uint256"}],"name":"setMaxBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a60146101000a81548160ff0219169083151502179055506000600b556002600c556001600d556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f90805190602001906200007b9291906200033c565b503480156200008957600080fd5b50604051620046fd380380620046fd8339818101604052810190620000af91906200046a565b6040518060400160405280600981526020017f426967204d6f75746800000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f424d0000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001339291906200033c565b5080600190805190602001906200014c9291906200033c565b5050506200016f620001636200018760201b60201c565b6200018f60201b60201c565b62000180816200025560201b60201c565b50620006c2565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002656200028160201b60201c565b80600e90805190602001906200027d9291906200033c565b5050565b620002916200018760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b76200031260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000310576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030790620004e2565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200034a90620005aa565b90600052602060002090601f0160209004810192826200036e5760008555620003ba565b82601f106200038957805160ff1916838001178555620003ba565b82800160010185558215620003ba579182015b82811115620003b95782518255916020019190600101906200039c565b5b509050620003c99190620003cd565b5090565b5b80821115620003e8576000816000905550600101620003ce565b5090565b600062000403620003fd846200052d565b62000504565b90508281526020810184848401111562000422576200042162000679565b5b6200042f84828562000574565b509392505050565b600082601f8301126200044f576200044e62000674565b5b815162000461848260208601620003ec565b91505092915050565b60006020828403121562000483576200048262000683565b5b600082015167ffffffffffffffff811115620004a457620004a36200067e565b5b620004b28482850162000437565b91505092915050565b6000620004ca60208362000563565b9150620004d78262000699565b602082019050919050565b60006020820190508181036000830152620004fd81620004bb565b9050919050565b60006200051062000523565b90506200051e8282620005e0565b919050565b6000604051905090565b600067ffffffffffffffff8211156200054b576200054a62000645565b5b620005568262000688565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200059457808201518184015260208101905062000577565b83811115620005a4576000848401525b50505050565b60006002820490506001821680620005c357607f821691505b60208210811415620005da57620005d962000616565b5b50919050565b620005eb8262000688565b810181811067ffffffffffffffff821117156200060d576200060c62000645565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61402b80620006d26000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063b88d4fde116100a0578063da3ef23f1161006f578063da3ef23f146106f0578063de8b51e114610719578063e985e9c514610730578063f2fde38b1461076d578063f4a0a52814610796576101ee565b8063b88d4fde14610643578063c66828621461066c578063c87b56dd14610697578063cfa8d629146106d4576101ee565b80638da5cb5b116100dc5780638da5cb5b1461059b57806395d89b41146105c65780639d51d9b7146105f1578063a22cb4651461061a576101ee565b806370a08231146104f1578063715018a61461052e57806373ad468a146105455780637501f74114610570576101ee565b806342842e0e1161018557806355f804b31161015457806355f804b3146104355780636352211e1461045e5780636817c76c1461049b5780637080d6fc146104c6576101ee565b806342842e0e1461037d5780634f6ccce7146103a657806351cff8d9146103e3578063547520fe1461040c576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780632f745c591461031557806332cb6b0c14610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612c84565b6107bf565b6040516102279190613260565b60405180910390f35b34801561023c57600080fd5b50610245610839565b604051610252919061327b565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612d27565b6108cb565b60405161028f91906131f9565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612c44565b610911565b005b3480156102cd57600080fd5b506102d6610a29565b6040516102e3919061357d565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612b2e565b610a36565b005b34801561032157600080fd5b5061033c60048036038101906103379190612c44565b610a96565b604051610349919061357d565b60405180910390f35b34801561035e57600080fd5b50610367610b3b565b604051610374919061357d565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f9190612b2e565b610b41565b005b3480156103b257600080fd5b506103cd60048036038101906103c89190612d27565b610b61565b6040516103da919061357d565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190612ac1565b610bd2565b005b34801561041857600080fd5b50610433600480360381019061042e9190612d27565b610c2a565b005b34801561044157600080fd5b5061045c60048036038101906104579190612cde565b610c3c565b005b34801561046a57600080fd5b5061048560048036038101906104809190612d27565b610c5e565b60405161049291906131f9565b60405180910390f35b3480156104a757600080fd5b506104b0610ce5565b6040516104bd919061357d565b60405180910390f35b3480156104d257600080fd5b506104db610ceb565b6040516104e89190613260565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190612ac1565b610cfe565b604051610525919061357d565b60405180910390f35b34801561053a57600080fd5b50610543610db6565b005b34801561055157600080fd5b5061055a610dca565b604051610567919061357d565b60405180910390f35b34801561057c57600080fd5b50610585610dd0565b604051610592919061357d565b60405180910390f35b3480156105a757600080fd5b506105b0610dd6565b6040516105bd91906131f9565b60405180910390f35b3480156105d257600080fd5b506105db610e00565b6040516105e8919061327b565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190612d27565b610e92565b005b34801561062657600080fd5b50610641600480360381019061063c9190612c04565b610ea4565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612b81565b610eba565b005b34801561067857600080fd5b50610681610f1c565b60405161068e919061327b565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190612d27565b610faa565b6040516106cb919061327b565b60405180910390f35b6106ee60048036038101906106e99190612d27565b611079565b005b3480156106fc57600080fd5b5061071760048036038101906107129190612cde565b611218565b005b34801561072557600080fd5b5061072e61123a565b005b34801561073c57600080fd5b5061075760048036038101906107529190612aee565b61126e565b6040516107649190613260565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190612ac1565b611302565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190612d27565b611386565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610832575061083182611398565b5b9050919050565b60606000805461084890613811565b80601f016020809104026020016040519081016040528092919081815260200182805461087490613811565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d68261147a565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091c82610c5e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610984906134bd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ac6114c5565b73ffffffffffffffffffffffffffffffffffffffff1614806109db57506109da816109d56114c5565b61126e565b5b610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a11906134fd565b60405180910390fd5b610a2483836114cd565b505050565b6000600880549050905090565b610a47610a416114c5565b82611586565b610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d9061329d565b60405180910390fd5b610a9183838361161b565b505050565b6000610aa183610cfe565b8210610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad9906132bd565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6107d081565b610b5c83838360405180602001604052806000815250610eba565b505050565b6000610b6b610a29565b8210610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba39061351d565b60405180910390fd5b60088281548110610bc057610bbf613979565b5b90600052602060002001549050919050565b610bda611915565b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c25573d6000803e3d6000fd5b505050565b610c32611915565b80600d8190555050565b610c44611915565b80600e9080519060200190610c5a9291906128d5565b5050565b600080610c6a83611993565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd39061349d565b60405180910390fd5b80915050919050565b600b5481565b600a60149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d669061341d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dbe611915565b610dc860006119d0565b565b600c5481565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e0f90613811565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3b90613811565b8015610e885780601f10610e5d57610100808354040283529160200191610e88565b820191906000526020600020905b815481529060010190602001808311610e6b57829003601f168201915b5050505050905090565b610e9a611915565b80600c8190555050565b610eb6610eaf6114c5565b8383611a96565b5050565b610ecb610ec56114c5565b83611586565b610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f019061329d565b60405180910390fd5b610f1684848484611c03565b50505050565b600f8054610f2990613811565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5590613811565b8015610fa25780601f10610f7757610100808354040283529160200191610fa2565b820191906000526020600020905b815481529060010190602001808311610f8557829003601f168201915b505050505081565b6060610fb582611c5f565b610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb9061347d565b60405180910390fd5b6000610ffe611ca0565b90506000815111611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b906134dd565b60405180910390fd5b8061104e84611d32565b600f604051602001611062939291906131c8565b604051602081830303815290604052915050919050565b6107d081611085610a29565b61108f9190613677565b11156110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c79061335d565b60405180910390fd5b600a60149054906101000a900460ff1661111f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111169061337d565b60405180910390fd5b600c548161112c33610cfe565b6111369190613677565b1115611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e906133fd565b60405180910390fd5b34600b548261118691906136cd565b11156111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be9061353d565b60405180910390fd5b600d5481111561120c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611203906133dd565b60405180910390fd5b61121581611e0a565b50565b611220611915565b80600f90805190602001906112369291906128d5565b5050565b611242611915565b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61130a611915565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561137a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611371906132fd565b60405180910390fd5b611383816119d0565b50565b61138e611915565b80600b8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061146357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611473575061147282611e55565b5b9050919050565b61148381611c5f565b6114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b99061349d565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661154083610c5e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061159283610c5e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115d457506115d3818561126e565b5b8061161257508373ffffffffffffffffffffffffffffffffffffffff166115fa846108cb565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661163b82610c5e565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116889061331d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f89061339d565b60405180910390fd5b61170e8383836001611ebf565b8273ffffffffffffffffffffffffffffffffffffffff1661172e82610c5e565b73ffffffffffffffffffffffffffffffffffffffff1614611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b9061331d565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611910838383600161201f565b505050565b61191d6114c5565b73ffffffffffffffffffffffffffffffffffffffff1661193b610dd6565b73ffffffffffffffffffffffffffffffffffffffff1614611991576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119889061345d565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afc906133bd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bf69190613260565b60405180910390a3505050565b611c0e84848461161b565b611c1a84848484612025565b611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c50906132dd565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611c8183611993565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600e8054611caf90613811565b80601f0160208091040260200160405190810160405280929190818152602001828054611cdb90613811565b8015611d285780601f10611cfd57610100808354040283529160200191611d28565b820191906000526020600020905b815481529060010190602001808311611d0b57829003601f168201915b5050505050905090565b606060006001611d41846121bc565b01905060008167ffffffffffffffff811115611d6057611d5f6139a8565b5b6040519080825280601f01601f191660200182016040528015611d925781602001600182028036833780820191505090505b509050600082602001820190505b600115611dff578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611de957611de86138ec565b5b0494506000851415611dfa57611dff565b611da0565b819350505050919050565b60005b81811015611e51576000611e1f610a29565b90506107d0611e2c610a29565b1015611e3d57611e3c338261230f565b5b508080611e4990613874565b915050611e0d565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611ecb8484848461232d565b6001811115611f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f069061355d565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611f5757611f5281612333565b611f96565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611f9557611f94858261237c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fd957611fd4816124e9565b612018565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146120175761201684826125ba565b5b5b5050505050565b50505050565b60006120468473ffffffffffffffffffffffffffffffffffffffff16612639565b156121af578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261206f6114c5565b8786866040518563ffffffff1660e01b81526004016120919493929190613214565b602060405180830381600087803b1580156120ab57600080fd5b505af19250505080156120dc57506040513d601f19601f820116820180604052508101906120d99190612cb1565b60015b61215f573d806000811461210c576040519150601f19603f3d011682016040523d82523d6000602084013e612111565b606091505b50600081511415612157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214e906132dd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121b4565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061221a577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816122105761220f6138ec565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612257576d04ee2d6d415b85acef8100000000838161224d5761224c6138ec565b5b0492506020810190505b662386f26fc10000831061228657662386f26fc10000838161227c5761227b6138ec565b5b0492506010810190505b6305f5e10083106122af576305f5e10083816122a5576122a46138ec565b5b0492506008810190505b61271083106122d45761271083816122ca576122c96138ec565b5b0492506004810190505b606483106122f757606483816122ed576122ec6138ec565b5b0492506002810190505b600a8310612306576001810190505b80915050919050565b61232982826040518060200160405280600081525061265c565b5050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161238984610cfe565b6123939190613727565b9050600060076000848152602001908152602001600020549050818114612478576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506124fd9190613727565b905060006009600084815260200190815260200160002054905060006008838154811061252d5761252c613979565b5b90600052602060002001549050806008838154811061254f5761254e613979565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061259e5761259d61394a565b5b6001900381819060005260206000200160009055905550505050565b60006125c583610cfe565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b61266683836126b7565b6126736000848484612025565b6126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a9906132dd565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271e9061343d565b60405180910390fd5b61273081611c5f565b15612770576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127679061333d565b60405180910390fd5b61277e600083836001611ebf565b61278781611c5f565b156127c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127be9061333d565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128d160008383600161201f565b5050565b8280546128e190613811565b90600052602060002090601f016020900481019282612903576000855561294a565b82601f1061291c57805160ff191683800117855561294a565b8280016001018555821561294a579182015b8281111561294957825182559160200191906001019061292e565b5b509050612957919061295b565b5090565b5b8082111561297457600081600090555060010161295c565b5090565b600061298b612986846135bd565b613598565b9050828152602081018484840111156129a7576129a66139dc565b5b6129b28482856137cf565b509392505050565b60006129cd6129c8846135ee565b613598565b9050828152602081018484840111156129e9576129e86139dc565b5b6129f48482856137cf565b509392505050565b600081359050612a0b81613f99565b92915050565b600081359050612a2081613fb0565b92915050565b600081359050612a3581613fc7565b92915050565b600081519050612a4a81613fc7565b92915050565b600082601f830112612a6557612a646139d7565b5b8135612a75848260208601612978565b91505092915050565b600082601f830112612a9357612a926139d7565b5b8135612aa38482602086016129ba565b91505092915050565b600081359050612abb81613fde565b92915050565b600060208284031215612ad757612ad66139e6565b5b6000612ae5848285016129fc565b91505092915050565b60008060408385031215612b0557612b046139e6565b5b6000612b13858286016129fc565b9250506020612b24858286016129fc565b9150509250929050565b600080600060608486031215612b4757612b466139e6565b5b6000612b55868287016129fc565b9350506020612b66868287016129fc565b9250506040612b7786828701612aac565b9150509250925092565b60008060008060808587031215612b9b57612b9a6139e6565b5b6000612ba9878288016129fc565b9450506020612bba878288016129fc565b9350506040612bcb87828801612aac565b925050606085013567ffffffffffffffff811115612bec57612beb6139e1565b5b612bf887828801612a50565b91505092959194509250565b60008060408385031215612c1b57612c1a6139e6565b5b6000612c29858286016129fc565b9250506020612c3a85828601612a11565b9150509250929050565b60008060408385031215612c5b57612c5a6139e6565b5b6000612c69858286016129fc565b9250506020612c7a85828601612aac565b9150509250929050565b600060208284031215612c9a57612c996139e6565b5b6000612ca884828501612a26565b91505092915050565b600060208284031215612cc757612cc66139e6565b5b6000612cd584828501612a3b565b91505092915050565b600060208284031215612cf457612cf36139e6565b5b600082013567ffffffffffffffff811115612d1257612d116139e1565b5b612d1e84828501612a7e565b91505092915050565b600060208284031215612d3d57612d3c6139e6565b5b6000612d4b84828501612aac565b91505092915050565b612d5d8161375b565b82525050565b612d6c8161376d565b82525050565b6000612d7d82613634565b612d87818561364a565b9350612d978185602086016137de565b612da0816139eb565b840191505092915050565b6000612db68261363f565b612dc0818561365b565b9350612dd08185602086016137de565b612dd9816139eb565b840191505092915050565b6000612def8261363f565b612df9818561366c565b9350612e098185602086016137de565b80840191505092915050565b60008154612e2281613811565b612e2c818661366c565b94506001821660008114612e475760018114612e5857612e8b565b60ff19831686528186019350612e8b565b612e618561361f565b60005b83811015612e8357815481890152600182019150602081019050612e64565b838801955050505b50505092915050565b6000612ea1602d8361365b565b9150612eac826139fc565b604082019050919050565b6000612ec4602b8361365b565b9150612ecf82613a4b565b604082019050919050565b6000612ee760328361365b565b9150612ef282613a9a565b604082019050919050565b6000612f0a60268361365b565b9150612f1582613ae9565b604082019050919050565b6000612f2d60258361365b565b9150612f3882613b38565b604082019050919050565b6000612f50601c8361365b565b9150612f5b82613b87565b602082019050919050565b6000612f73601c8361365b565b9150612f7e82613bb0565b602082019050919050565b6000612f9660208361365b565b9150612fa182613bd9565b602082019050919050565b6000612fb960248361365b565b9150612fc482613c02565b604082019050919050565b6000612fdc60198361365b565b9150612fe782613c51565b602082019050919050565b6000612fff60208361365b565b915061300a82613c7a565b602082019050919050565b6000613022601d8361365b565b915061302d82613ca3565b602082019050919050565b600061304560298361365b565b915061305082613ccc565b604082019050919050565b600061306860208361365b565b915061307382613d1b565b602082019050919050565b600061308b60208361365b565b915061309682613d44565b602082019050919050565b60006130ae602f8361365b565b91506130b982613d6d565b604082019050919050565b60006130d160188361365b565b91506130dc82613dbc565b602082019050919050565b60006130f460218361365b565b91506130ff82613de5565b604082019050919050565b6000613117602e8361365b565b915061312282613e34565b604082019050919050565b600061313a603d8361365b565b915061314582613e83565b604082019050919050565b600061315d602c8361365b565b915061316882613ed2565b604082019050919050565b600061318060158361365b565b915061318b82613f21565b602082019050919050565b60006131a360358361365b565b91506131ae82613f4a565b604082019050919050565b6131c2816137c5565b82525050565b60006131d48286612de4565b91506131e08285612de4565b91506131ec8284612e15565b9150819050949350505050565b600060208201905061320e6000830184612d54565b92915050565b60006080820190506132296000830187612d54565b6132366020830186612d54565b61324360408301856131b9565b81810360608301526132558184612d72565b905095945050505050565b60006020820190506132756000830184612d63565b92915050565b600060208201905081810360008301526132958184612dab565b905092915050565b600060208201905081810360008301526132b681612e94565b9050919050565b600060208201905081810360008301526132d681612eb7565b9050919050565b600060208201905081810360008301526132f681612eda565b9050919050565b6000602082019050818103600083015261331681612efd565b9050919050565b6000602082019050818103600083015261333681612f20565b9050919050565b6000602082019050818103600083015261335681612f43565b9050919050565b6000602082019050818103600083015261337681612f66565b9050919050565b6000602082019050818103600083015261339681612f89565b9050919050565b600060208201905081810360008301526133b681612fac565b9050919050565b600060208201905081810360008301526133d681612fcf565b9050919050565b600060208201905081810360008301526133f681612ff2565b9050919050565b6000602082019050818103600083015261341681613015565b9050919050565b6000602082019050818103600083015261343681613038565b9050919050565b600060208201905081810360008301526134568161305b565b9050919050565b600060208201905081810360008301526134768161307e565b9050919050565b60006020820190508181036000830152613496816130a1565b9050919050565b600060208201905081810360008301526134b6816130c4565b9050919050565b600060208201905081810360008301526134d6816130e7565b9050919050565b600060208201905081810360008301526134f68161310a565b9050919050565b600060208201905081810360008301526135168161312d565b9050919050565b6000602082019050818103600083015261353681613150565b9050919050565b6000602082019050818103600083015261355681613173565b9050919050565b6000602082019050818103600083015261357681613196565b9050919050565b600060208201905061359260008301846131b9565b92915050565b60006135a26135b3565b90506135ae8282613843565b919050565b6000604051905090565b600067ffffffffffffffff8211156135d8576135d76139a8565b5b6135e1826139eb565b9050602081019050919050565b600067ffffffffffffffff821115613609576136086139a8565b5b613612826139eb565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613682826137c5565b915061368d836137c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136c2576136c16138bd565b5b828201905092915050565b60006136d8826137c5565b91506136e3836137c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561371c5761371b6138bd565b5b828202905092915050565b6000613732826137c5565b915061373d836137c5565b9250828210156137505761374f6138bd565b5b828203905092915050565b6000613766826137a5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137fc5780820151818401526020810190506137e1565b8381111561380b576000848401525b50505050565b6000600282049050600182168061382957607f821691505b6020821081141561383d5761383c61391b565b5b50919050565b61384c826139eb565b810181811067ffffffffffffffff8211171561386b5761386a6139a8565b5b80604052505050565b600061387f826137c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138b2576138b16138bd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c6520776f756c6420657863656564206d617820737570706c7900000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74204e465473600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43616e206f6e6c79206d696e74203120746f6b656e7320617420612074696d65600082015250565b7f53616c6520776f756c6420657863656564206d61782062616c616e6365000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e742062617365000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b613fa28161375b565b8114613fad57600080fd5b50565b613fb98161376d565b8114613fc457600080fd5b50565b613fd081613779565b8114613fdb57600080fd5b50565b613fe7816137c5565b8114613ff257600080fd5b5056fea26469706673582212206f56d44cb348c3a93f12620afed1ab760e6daf19a92250a839ff3fe6f63685f464736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6269676d6f757468323032332e696f2f4269674d6f7574684a736f6e452f0000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c806370a082311161010d578063b88d4fde116100a0578063da3ef23f1161006f578063da3ef23f146106f0578063de8b51e114610719578063e985e9c514610730578063f2fde38b1461076d578063f4a0a52814610796576101ee565b8063b88d4fde14610643578063c66828621461066c578063c87b56dd14610697578063cfa8d629146106d4576101ee565b80638da5cb5b116100dc5780638da5cb5b1461059b57806395d89b41146105c65780639d51d9b7146105f1578063a22cb4651461061a576101ee565b806370a08231146104f1578063715018a61461052e57806373ad468a146105455780637501f74114610570576101ee565b806342842e0e1161018557806355f804b31161015457806355f804b3146104355780636352211e1461045e5780636817c76c1461049b5780637080d6fc146104c6576101ee565b806342842e0e1461037d5780634f6ccce7146103a657806351cff8d9146103e3578063547520fe1461040c576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780632f745c591461031557806332cb6b0c14610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612c84565b6107bf565b6040516102279190613260565b60405180910390f35b34801561023c57600080fd5b50610245610839565b604051610252919061327b565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612d27565b6108cb565b60405161028f91906131f9565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612c44565b610911565b005b3480156102cd57600080fd5b506102d6610a29565b6040516102e3919061357d565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612b2e565b610a36565b005b34801561032157600080fd5b5061033c60048036038101906103379190612c44565b610a96565b604051610349919061357d565b60405180910390f35b34801561035e57600080fd5b50610367610b3b565b604051610374919061357d565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f9190612b2e565b610b41565b005b3480156103b257600080fd5b506103cd60048036038101906103c89190612d27565b610b61565b6040516103da919061357d565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190612ac1565b610bd2565b005b34801561041857600080fd5b50610433600480360381019061042e9190612d27565b610c2a565b005b34801561044157600080fd5b5061045c60048036038101906104579190612cde565b610c3c565b005b34801561046a57600080fd5b5061048560048036038101906104809190612d27565b610c5e565b60405161049291906131f9565b60405180910390f35b3480156104a757600080fd5b506104b0610ce5565b6040516104bd919061357d565b60405180910390f35b3480156104d257600080fd5b506104db610ceb565b6040516104e89190613260565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190612ac1565b610cfe565b604051610525919061357d565b60405180910390f35b34801561053a57600080fd5b50610543610db6565b005b34801561055157600080fd5b5061055a610dca565b604051610567919061357d565b60405180910390f35b34801561057c57600080fd5b50610585610dd0565b604051610592919061357d565b60405180910390f35b3480156105a757600080fd5b506105b0610dd6565b6040516105bd91906131f9565b60405180910390f35b3480156105d257600080fd5b506105db610e00565b6040516105e8919061327b565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190612d27565b610e92565b005b34801561062657600080fd5b50610641600480360381019061063c9190612c04565b610ea4565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612b81565b610eba565b005b34801561067857600080fd5b50610681610f1c565b60405161068e919061327b565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190612d27565b610faa565b6040516106cb919061327b565b60405180910390f35b6106ee60048036038101906106e99190612d27565b611079565b005b3480156106fc57600080fd5b5061071760048036038101906107129190612cde565b611218565b005b34801561072557600080fd5b5061072e61123a565b005b34801561073c57600080fd5b5061075760048036038101906107529190612aee565b61126e565b6040516107649190613260565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190612ac1565b611302565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190612d27565b611386565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610832575061083182611398565b5b9050919050565b60606000805461084890613811565b80601f016020809104026020016040519081016040528092919081815260200182805461087490613811565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d68261147a565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091c82610c5e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610984906134bd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ac6114c5565b73ffffffffffffffffffffffffffffffffffffffff1614806109db57506109da816109d56114c5565b61126e565b5b610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a11906134fd565b60405180910390fd5b610a2483836114cd565b505050565b6000600880549050905090565b610a47610a416114c5565b82611586565b610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d9061329d565b60405180910390fd5b610a9183838361161b565b505050565b6000610aa183610cfe565b8210610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad9906132bd565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6107d081565b610b5c83838360405180602001604052806000815250610eba565b505050565b6000610b6b610a29565b8210610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba39061351d565b60405180910390fd5b60088281548110610bc057610bbf613979565b5b90600052602060002001549050919050565b610bda611915565b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c25573d6000803e3d6000fd5b505050565b610c32611915565b80600d8190555050565b610c44611915565b80600e9080519060200190610c5a9291906128d5565b5050565b600080610c6a83611993565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd39061349d565b60405180910390fd5b80915050919050565b600b5481565b600a60149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d669061341d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dbe611915565b610dc860006119d0565b565b600c5481565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e0f90613811565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3b90613811565b8015610e885780601f10610e5d57610100808354040283529160200191610e88565b820191906000526020600020905b815481529060010190602001808311610e6b57829003601f168201915b5050505050905090565b610e9a611915565b80600c8190555050565b610eb6610eaf6114c5565b8383611a96565b5050565b610ecb610ec56114c5565b83611586565b610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f019061329d565b60405180910390fd5b610f1684848484611c03565b50505050565b600f8054610f2990613811565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5590613811565b8015610fa25780601f10610f7757610100808354040283529160200191610fa2565b820191906000526020600020905b815481529060010190602001808311610f8557829003601f168201915b505050505081565b6060610fb582611c5f565b610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb9061347d565b60405180910390fd5b6000610ffe611ca0565b90506000815111611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b906134dd565b60405180910390fd5b8061104e84611d32565b600f604051602001611062939291906131c8565b604051602081830303815290604052915050919050565b6107d081611085610a29565b61108f9190613677565b11156110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c79061335d565b60405180910390fd5b600a60149054906101000a900460ff1661111f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111169061337d565b60405180910390fd5b600c548161112c33610cfe565b6111369190613677565b1115611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e906133fd565b60405180910390fd5b34600b548261118691906136cd565b11156111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be9061353d565b60405180910390fd5b600d5481111561120c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611203906133dd565b60405180910390fd5b61121581611e0a565b50565b611220611915565b80600f90805190602001906112369291906128d5565b5050565b611242611915565b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61130a611915565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561137a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611371906132fd565b60405180910390fd5b611383816119d0565b50565b61138e611915565b80600b8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061146357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611473575061147282611e55565b5b9050919050565b61148381611c5f565b6114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b99061349d565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661154083610c5e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061159283610c5e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115d457506115d3818561126e565b5b8061161257508373ffffffffffffffffffffffffffffffffffffffff166115fa846108cb565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661163b82610c5e565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116889061331d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f89061339d565b60405180910390fd5b61170e8383836001611ebf565b8273ffffffffffffffffffffffffffffffffffffffff1661172e82610c5e565b73ffffffffffffffffffffffffffffffffffffffff1614611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b9061331d565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611910838383600161201f565b505050565b61191d6114c5565b73ffffffffffffffffffffffffffffffffffffffff1661193b610dd6565b73ffffffffffffffffffffffffffffffffffffffff1614611991576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119889061345d565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afc906133bd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bf69190613260565b60405180910390a3505050565b611c0e84848461161b565b611c1a84848484612025565b611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c50906132dd565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611c8183611993565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600e8054611caf90613811565b80601f0160208091040260200160405190810160405280929190818152602001828054611cdb90613811565b8015611d285780601f10611cfd57610100808354040283529160200191611d28565b820191906000526020600020905b815481529060010190602001808311611d0b57829003601f168201915b5050505050905090565b606060006001611d41846121bc565b01905060008167ffffffffffffffff811115611d6057611d5f6139a8565b5b6040519080825280601f01601f191660200182016040528015611d925781602001600182028036833780820191505090505b509050600082602001820190505b600115611dff578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611de957611de86138ec565b5b0494506000851415611dfa57611dff565b611da0565b819350505050919050565b60005b81811015611e51576000611e1f610a29565b90506107d0611e2c610a29565b1015611e3d57611e3c338261230f565b5b508080611e4990613874565b915050611e0d565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611ecb8484848461232d565b6001811115611f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f069061355d565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611f5757611f5281612333565b611f96565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611f9557611f94858261237c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fd957611fd4816124e9565b612018565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146120175761201684826125ba565b5b5b5050505050565b50505050565b60006120468473ffffffffffffffffffffffffffffffffffffffff16612639565b156121af578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261206f6114c5565b8786866040518563ffffffff1660e01b81526004016120919493929190613214565b602060405180830381600087803b1580156120ab57600080fd5b505af19250505080156120dc57506040513d601f19601f820116820180604052508101906120d99190612cb1565b60015b61215f573d806000811461210c576040519150601f19603f3d011682016040523d82523d6000602084013e612111565b606091505b50600081511415612157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214e906132dd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121b4565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061221a577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816122105761220f6138ec565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612257576d04ee2d6d415b85acef8100000000838161224d5761224c6138ec565b5b0492506020810190505b662386f26fc10000831061228657662386f26fc10000838161227c5761227b6138ec565b5b0492506010810190505b6305f5e10083106122af576305f5e10083816122a5576122a46138ec565b5b0492506008810190505b61271083106122d45761271083816122ca576122c96138ec565b5b0492506004810190505b606483106122f757606483816122ed576122ec6138ec565b5b0492506002810190505b600a8310612306576001810190505b80915050919050565b61232982826040518060200160405280600081525061265c565b5050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161238984610cfe565b6123939190613727565b9050600060076000848152602001908152602001600020549050818114612478576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506124fd9190613727565b905060006009600084815260200190815260200160002054905060006008838154811061252d5761252c613979565b5b90600052602060002001549050806008838154811061254f5761254e613979565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061259e5761259d61394a565b5b6001900381819060005260206000200160009055905550505050565b60006125c583610cfe565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b61266683836126b7565b6126736000848484612025565b6126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a9906132dd565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271e9061343d565b60405180910390fd5b61273081611c5f565b15612770576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127679061333d565b60405180910390fd5b61277e600083836001611ebf565b61278781611c5f565b156127c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127be9061333d565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128d160008383600161201f565b5050565b8280546128e190613811565b90600052602060002090601f016020900481019282612903576000855561294a565b82601f1061291c57805160ff191683800117855561294a565b8280016001018555821561294a579182015b8281111561294957825182559160200191906001019061292e565b5b509050612957919061295b565b5090565b5b8082111561297457600081600090555060010161295c565b5090565b600061298b612986846135bd565b613598565b9050828152602081018484840111156129a7576129a66139dc565b5b6129b28482856137cf565b509392505050565b60006129cd6129c8846135ee565b613598565b9050828152602081018484840111156129e9576129e86139dc565b5b6129f48482856137cf565b509392505050565b600081359050612a0b81613f99565b92915050565b600081359050612a2081613fb0565b92915050565b600081359050612a3581613fc7565b92915050565b600081519050612a4a81613fc7565b92915050565b600082601f830112612a6557612a646139d7565b5b8135612a75848260208601612978565b91505092915050565b600082601f830112612a9357612a926139d7565b5b8135612aa38482602086016129ba565b91505092915050565b600081359050612abb81613fde565b92915050565b600060208284031215612ad757612ad66139e6565b5b6000612ae5848285016129fc565b91505092915050565b60008060408385031215612b0557612b046139e6565b5b6000612b13858286016129fc565b9250506020612b24858286016129fc565b9150509250929050565b600080600060608486031215612b4757612b466139e6565b5b6000612b55868287016129fc565b9350506020612b66868287016129fc565b9250506040612b7786828701612aac565b9150509250925092565b60008060008060808587031215612b9b57612b9a6139e6565b5b6000612ba9878288016129fc565b9450506020612bba878288016129fc565b9350506040612bcb87828801612aac565b925050606085013567ffffffffffffffff811115612bec57612beb6139e1565b5b612bf887828801612a50565b91505092959194509250565b60008060408385031215612c1b57612c1a6139e6565b5b6000612c29858286016129fc565b9250506020612c3a85828601612a11565b9150509250929050565b60008060408385031215612c5b57612c5a6139e6565b5b6000612c69858286016129fc565b9250506020612c7a85828601612aac565b9150509250929050565b600060208284031215612c9a57612c996139e6565b5b6000612ca884828501612a26565b91505092915050565b600060208284031215612cc757612cc66139e6565b5b6000612cd584828501612a3b565b91505092915050565b600060208284031215612cf457612cf36139e6565b5b600082013567ffffffffffffffff811115612d1257612d116139e1565b5b612d1e84828501612a7e565b91505092915050565b600060208284031215612d3d57612d3c6139e6565b5b6000612d4b84828501612aac565b91505092915050565b612d5d8161375b565b82525050565b612d6c8161376d565b82525050565b6000612d7d82613634565b612d87818561364a565b9350612d978185602086016137de565b612da0816139eb565b840191505092915050565b6000612db68261363f565b612dc0818561365b565b9350612dd08185602086016137de565b612dd9816139eb565b840191505092915050565b6000612def8261363f565b612df9818561366c565b9350612e098185602086016137de565b80840191505092915050565b60008154612e2281613811565b612e2c818661366c565b94506001821660008114612e475760018114612e5857612e8b565b60ff19831686528186019350612e8b565b612e618561361f565b60005b83811015612e8357815481890152600182019150602081019050612e64565b838801955050505b50505092915050565b6000612ea1602d8361365b565b9150612eac826139fc565b604082019050919050565b6000612ec4602b8361365b565b9150612ecf82613a4b565b604082019050919050565b6000612ee760328361365b565b9150612ef282613a9a565b604082019050919050565b6000612f0a60268361365b565b9150612f1582613ae9565b604082019050919050565b6000612f2d60258361365b565b9150612f3882613b38565b604082019050919050565b6000612f50601c8361365b565b9150612f5b82613b87565b602082019050919050565b6000612f73601c8361365b565b9150612f7e82613bb0565b602082019050919050565b6000612f9660208361365b565b9150612fa182613bd9565b602082019050919050565b6000612fb960248361365b565b9150612fc482613c02565b604082019050919050565b6000612fdc60198361365b565b9150612fe782613c51565b602082019050919050565b6000612fff60208361365b565b915061300a82613c7a565b602082019050919050565b6000613022601d8361365b565b915061302d82613ca3565b602082019050919050565b600061304560298361365b565b915061305082613ccc565b604082019050919050565b600061306860208361365b565b915061307382613d1b565b602082019050919050565b600061308b60208361365b565b915061309682613d44565b602082019050919050565b60006130ae602f8361365b565b91506130b982613d6d565b604082019050919050565b60006130d160188361365b565b91506130dc82613dbc565b602082019050919050565b60006130f460218361365b565b91506130ff82613de5565b604082019050919050565b6000613117602e8361365b565b915061312282613e34565b604082019050919050565b600061313a603d8361365b565b915061314582613e83565b604082019050919050565b600061315d602c8361365b565b915061316882613ed2565b604082019050919050565b600061318060158361365b565b915061318b82613f21565b602082019050919050565b60006131a360358361365b565b91506131ae82613f4a565b604082019050919050565b6131c2816137c5565b82525050565b60006131d48286612de4565b91506131e08285612de4565b91506131ec8284612e15565b9150819050949350505050565b600060208201905061320e6000830184612d54565b92915050565b60006080820190506132296000830187612d54565b6132366020830186612d54565b61324360408301856131b9565b81810360608301526132558184612d72565b905095945050505050565b60006020820190506132756000830184612d63565b92915050565b600060208201905081810360008301526132958184612dab565b905092915050565b600060208201905081810360008301526132b681612e94565b9050919050565b600060208201905081810360008301526132d681612eb7565b9050919050565b600060208201905081810360008301526132f681612eda565b9050919050565b6000602082019050818103600083015261331681612efd565b9050919050565b6000602082019050818103600083015261333681612f20565b9050919050565b6000602082019050818103600083015261335681612f43565b9050919050565b6000602082019050818103600083015261337681612f66565b9050919050565b6000602082019050818103600083015261339681612f89565b9050919050565b600060208201905081810360008301526133b681612fac565b9050919050565b600060208201905081810360008301526133d681612fcf565b9050919050565b600060208201905081810360008301526133f681612ff2565b9050919050565b6000602082019050818103600083015261341681613015565b9050919050565b6000602082019050818103600083015261343681613038565b9050919050565b600060208201905081810360008301526134568161305b565b9050919050565b600060208201905081810360008301526134768161307e565b9050919050565b60006020820190508181036000830152613496816130a1565b9050919050565b600060208201905081810360008301526134b6816130c4565b9050919050565b600060208201905081810360008301526134d6816130e7565b9050919050565b600060208201905081810360008301526134f68161310a565b9050919050565b600060208201905081810360008301526135168161312d565b9050919050565b6000602082019050818103600083015261353681613150565b9050919050565b6000602082019050818103600083015261355681613173565b9050919050565b6000602082019050818103600083015261357681613196565b9050919050565b600060208201905061359260008301846131b9565b92915050565b60006135a26135b3565b90506135ae8282613843565b919050565b6000604051905090565b600067ffffffffffffffff8211156135d8576135d76139a8565b5b6135e1826139eb565b9050602081019050919050565b600067ffffffffffffffff821115613609576136086139a8565b5b613612826139eb565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613682826137c5565b915061368d836137c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136c2576136c16138bd565b5b828201905092915050565b60006136d8826137c5565b91506136e3836137c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561371c5761371b6138bd565b5b828202905092915050565b6000613732826137c5565b915061373d836137c5565b9250828210156137505761374f6138bd565b5b828203905092915050565b6000613766826137a5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137fc5780820151818401526020810190506137e1565b8381111561380b576000848401525b50505050565b6000600282049050600182168061382957607f821691505b6020821081141561383d5761383c61391b565b5b50919050565b61384c826139eb565b810181811067ffffffffffffffff8211171561386b5761386a6139a8565b5b80604052505050565b600061387f826137c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138b2576138b16138bd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c6520776f756c6420657863656564206d617820737570706c7900000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74204e465473600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43616e206f6e6c79206d696e74203120746f6b656e7320617420612074696d65600082015250565b7f53616c6520776f756c6420657863656564206d61782062616c616e6365000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e742062617365000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b613fa28161375b565b8114613fad57600080fd5b50565b613fb98161376d565b8114613fc457600080fd5b50565b613fd081613779565b8114613fdb57600080fd5b50565b613fe7816137c5565b8114613ff257600080fd5b5056fea26469706673582212206f56d44cb348c3a93f12620afed1ab760e6daf19a92250a839ff3fe6f63685f464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6269676d6f757468323032332e696f2f4269674d6f7574684a736f6e452f0000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initBaseURI (string): https://bigmouth2023.io/BigMouthJsonE/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [2] : 68747470733a2f2f6269676d6f757468323032332e696f2f4269674d6f757468
Arg [3] : 4a736f6e452f0000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
176:2847:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1005:222:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2471:98:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3935:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3468:406;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1630:111:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4612:296:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1306:253:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;301:41:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4974:149:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1813:230:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2879:142:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2783:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2415:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2190:219:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;353:34:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;261:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1929:204:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:1;;;;;;;;;;;;;:::i;:::-;;393:29:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;428:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1201:85:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2633:102:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2675::0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4169:153:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5189:276;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;481:37:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1567:530;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;648:629;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2523:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2215:90;;;;;;;;;;;;;:::i;:::-;;4388:162:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2311:98:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1005:222:5;1107:4;1145:35;1130:50;;;:11;:50;;;;:90;;;;1184:36;1208:11;1184:23;:36::i;:::-;1130:90;1123:97;;1005:222;;;:::o;2471:98:2:-;2525:13;2557:5;2550:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2471:98;:::o;3935:167::-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;4071:15;:24;4087:7;4071:24;;;;;;;;;;;;;;;;;;;;;4064:31;;3935:167;;;:::o;3468:406::-;3548:13;3564:23;3579:7;3564:14;:23::i;:::-;3548:39;;3611:5;3605:11;;:2;:11;;;;3597:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3702:5;3686:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3711:37;3728:5;3735:12;:10;:12::i;:::-;3711:16;:37::i;:::-;3686:62;3665:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3538:336;3468:406;;:::o;1630:111:5:-;1691:7;1717:10;:17;;;;1710:24;;1630:111;:::o;4612:296:2:-;4771:41;4790:12;:10;:12::i;:::-;4804:7;4771:18;:41::i;:::-;4763:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;4873:28;4883:4;4889:2;4893:7;4873:9;:28::i;:::-;4612:296;;;:::o;1306:253:5:-;1403:7;1438:23;1455:5;1438:16;:23::i;:::-;1430:5;:31;1422:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1526:12;:19;1539:5;1526:19;;;;;;;;;;;;;;;:26;1546:5;1526:26;;;;;;;;;;;;1519:33;;1306:253;;;;:::o;301:41:0:-;338:4;301:41;:::o;4974:149:2:-;5077:39;5094:4;5100:2;5104:7;5077:39;;;;;;;;;;;;:16;:39::i;:::-;4974:149;;;:::o;1813:230:5:-;1888:7;1923:30;:28;:30::i;:::-;1915:5;:38;1907:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2019:10;2030:5;2019:17;;;;;;;;:::i;:::-;;;;;;;;;;2012:24;;1813:230;;;:::o;2879:142:0:-;1094:13:1;:11;:13::i;:::-;2936:15:0::1;2954:21;2936:39;;2993:2;2985:20;;:29;3006:7;2985:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2926:95;2879:142:::0;:::o;2783:90::-;1094:13:1;:11;:13::i;:::-;2858:8:0::1;2848:7;:18;;;;2783:90:::0;:::o;2415:102::-;1094:13:1;:11;:13::i;:::-;2499:11:0::1;2489:7;:21;;;;;;;;;;;;:::i;:::-;;2415:102:::0;:::o;2190:219:2:-;2262:7;2281:13;2297:17;2306:7;2297:8;:17::i;:::-;2281:33;;2349:1;2332:19;;:5;:19;;;;2324:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2397:5;2390:12;;;2190:219;;;:::o;353:34:0:-;;;;:::o;261:33::-;;;;;;;;;;;;;:::o;1929:204:2:-;2001:7;2045:1;2028:19;;:5;:19;;;;2020:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2110:9;:16;2120:5;2110:16;;;;;;;;;;;;;;;;2103:23;;1929:204;;;:::o;1831:101:1:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;393:29:0:-;;;;:::o;428:26::-;;;;:::o;1201:85:1:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;2633:102:2:-;2689:13;2721:7;2714:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2633:102;:::o;2675::0:-;1094:13:1;:11;:13::i;:::-;2759:11:0::1;2746:10;:24;;;;2675:102:::0;:::o;4169:153:2:-;4263:52;4282:12;:10;:12::i;:::-;4296:8;4306;4263:18;:52::i;:::-;4169:153;;:::o;5189:276::-;5319:41;5338:12;:10;:12::i;:::-;5352:7;5319:18;:41::i;:::-;5311:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;5420:38;5434:4;5440:2;5444:7;5453:4;5420:13;:38::i;:::-;5189:276;;;;:::o;481:37:0:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1567:530::-;1680:13;1730:16;1738:7;1730;:16::i;:::-;1709:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;1830:18;1851:10;:8;:10::i;:::-;1830:31;;1922:1;1907:4;1901:18;:22;1880:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;2049:4;2055:18;:7;:16;:18::i;:::-;2075:13;2032:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2006:84;;;1567:530;;;:::o;648:629::-;338:4;755:13;739;:11;:13::i;:::-;:29;;;;:::i;:::-;:43;;718:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;854:13;;;;;;;;;;;846:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;976:10;;959:13;935:21;945:10;935:9;:21::i;:::-;:37;;;;:::i;:::-;:51;;914:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;1101:9;1088;;1072:13;:25;;;;:::i;:::-;:38;;1051:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;1192:7;;1175:13;:24;;1167:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1247:23;1256:13;1247:8;:23::i;:::-;648:629;:::o;2523:146::-;1094:13:1;:11;:13::i;:::-;2645:17:0::1;2629:13;:33;;;;;;;;;;;;:::i;:::-;;2523:146:::0;:::o;2215:90::-;1094:13:1;:11;:13::i;:::-;2285::0::1;;;;;;;;;;;2284:14;2268:13;;:30;;;;;;;;;;;;;;;;;;2215:90::o:0;4388:162:2:-;4485:4;4508:18;:25;4527:5;4508:25;;;;;;;;;;;;;;;:35;4534:8;4508:35;;;;;;;;;;;;;;;;;;;;;;;;;4501:42;;4388:162;;;;:::o;2081:198:1:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;;;2161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;2311:98:0:-;1094:13:1;:11;:13::i;:::-;2392:10:0::1;2380:9;:22;;;;2311:98:::0;:::o;1570:300:2:-;1672:4;1722:25;1707:40;;;:11;:40;;;;:104;;;;1778:33;1763:48;;;:11;:48;;;;1707:104;:156;;;;1827:36;1851:11;1827:23;:36::i;:::-;1707:156;1688:175;;1570:300;;;:::o;13240:133::-;13321:16;13329:7;13321;:16::i;:::-;13313:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;13240:133;:::o;640:96:9:-;693:7;719:10;712:17;;640:96;:::o;12572:171:2:-;12673:2;12646:15;:24;12662:7;12646:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;12728:7;12724:2;12690:46;;12699:23;12714:7;12699:14;:23::i;:::-;12690:46;;;;;;;;;;;;12572:171;;:::o;7404:261::-;7497:4;7513:13;7529:23;7544:7;7529:14;:23::i;:::-;7513:39;;7581:5;7570:16;;:7;:16;;;:52;;;;7590:32;7607:5;7614:7;7590:16;:32::i;:::-;7570:52;:87;;;;7650:7;7626:31;;:20;7638:7;7626:11;:20::i;:::-;:31;;;7570:87;7562:96;;;7404:261;;;;:::o;11257:1203::-;11381:4;11354:31;;:23;11369:7;11354:14;:23::i;:::-;:31;;;11346:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;11459:1;11445:16;;:2;:16;;;;11437:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;11513:42;11534:4;11540:2;11544:7;11553:1;11513:20;:42::i;:::-;11682:4;11655:31;;:23;11670:7;11655:14;:23::i;:::-;:31;;;11647:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;11797:15;:24;11813:7;11797:24;;;;;;;;;;;;11790:31;;;;;;;;;;;12284:1;12265:9;:15;12275:4;12265:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;12316:1;12299:9;:13;12309:2;12299:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;12356:2;12337:7;:16;12345:7;12337:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;12393:7;12389:2;12374:27;;12383:4;12374:27;;;;;;;;;;;;12412:41;12432:4;12438:2;12442:7;12451:1;12412:19;:41::i;:::-;11257:1203;;;:::o;1359:130:1:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;6702:115:2:-;6768:7;6794;:16;6802:7;6794:16;;;;;;;;;;;;;;;;;;;;;6787:23;;6702:115;;;:::o;2433:187:1:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;12879:277:2:-;12999:8;12990:17;;:5;:17;;;;12982:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;13085:8;13047:18;:25;13066:5;13047:25;;;;;;;;;;;;;;;:35;13073:8;13047:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;13130:8;13108:41;;13123:5;13108:41;;;13140:8;13108:41;;;;;;:::i;:::-;;;;;;;;12879:277;;;:::o;6326:267::-;6438:28;6448:4;6454:2;6458:7;6438:9;:28::i;:::-;6484:47;6507:4;6513:2;6517:7;6526:4;6484:22;:47::i;:::-;6476:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6326:267;;;;:::o;7120:126::-;7185:4;7237:1;7208:31;;:17;7217:7;7208:8;:17::i;:::-;:31;;;;7201:38;;7120:126;;;:::o;2103:106:0:-;2163:13;2195:7;2188:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2103:106;:::o;415:696:10:-;471:13;520:14;557:1;537:17;548:5;537:10;:17::i;:::-;:21;520:38;;572:20;606:6;595:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572:41;;627:11;753:6;749:2;745:15;737:6;733:28;726:35;;788:280;795:4;788:280;;;819:5;;;;;;;;958:8;953:2;946:5;942:14;937:30;932:3;924:44;1012:2;1003:11;;;;;;:::i;:::-;;;;;1045:1;1036:5;:10;1032:21;;;1048:5;;1032:21;788:280;;;1088:6;1081:13;;;;;415:696;;;:::o;1283:278:0:-;1348:9;1343:212;1367:13;1363:1;:17;1343:212;;;1401:17;1421:13;:11;:13::i;:::-;1401:33;;338:4;1452:13;:11;:13::i;:::-;:26;1448:97;;;1498:32;1508:10;1520:9;1498;:32::i;:::-;1448:97;1387:168;1382:3;;;;;:::i;:::-;;;;1343:212;;;;1283:278;:::o;829:155:11:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;2112:890:5:-;2283:61;2310:4;2316:2;2320:12;2334:9;2283:26;:61::i;:::-;2371:1;2359:9;:13;2355:219;;;2500:63;;;;;;;;;;:::i;:::-;;;;;;;;2355:219;2584:15;2602:12;2584:30;;2645:1;2629:18;;:4;:18;;;2625:183;;;2663:40;2695:7;2663:31;:40::i;:::-;2625:183;;;2732:2;2724:10;;:4;:10;;;2720:88;;2750:47;2783:4;2789:7;2750:32;:47::i;:::-;2720:88;2625:183;2835:1;2821:16;;:2;:16;;;2817:179;;;2853:45;2890:7;2853:36;:45::i;:::-;2817:179;;;2925:4;2919:10;;:2;:10;;;2915:81;;2945:40;2973:2;2977:7;2945:27;:40::i;:::-;2915:81;2817:179;2273:729;2112:890;;;;:::o;16294:115:2:-;;;;;:::o;13925:831::-;14074:4;14094:15;:2;:13;;;:15::i;:::-;14090:660;;;14145:2;14129:36;;;14166:12;:10;:12::i;:::-;14180:4;14186:7;14195:4;14129:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14125:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14384:1;14367:6;:13;:18;14363:321;;;14409:60;;;;;;;;;;:::i;:::-;;;;;;;;14363:321;14636:6;14630:13;14621:6;14617:2;14613:15;14606:38;14125:573;14260:41;;;14250:51;;;:6;:51;;;;14243:58;;;;;14090:660;14735:4;14728:11;;13925:831;;;;;;;:::o;9889:890:13:-;9942:7;9961:14;9978:1;9961:18;;10026:6;10017:5;:15;10013:99;;10061:6;10052:15;;;;;;:::i;:::-;;;;;10095:2;10085:12;;;;10013:99;10138:6;10129:5;:15;10125:99;;10173:6;10164:15;;;;;;:::i;:::-;;;;;10207:2;10197:12;;;;10125:99;10250:6;10241:5;:15;10237:99;;10285:6;10276:15;;;;;;:::i;:::-;;;;;10319:2;10309:12;;;;10237:99;10362:5;10353;:14;10349:96;;10396:5;10387:14;;;;;;:::i;:::-;;;;;10429:1;10419:11;;;;10349:96;10471:5;10462;:14;10458:96;;10505:5;10496:14;;;;;;:::i;:::-;;;;;10538:1;10528:11;;;;10458:96;10580:5;10571;:14;10567:96;;10614:5;10605:14;;;;;;:::i;:::-;;;;;10647:1;10637:11;;;;10567:96;10689:5;10680;:14;10676:64;;10724:1;10714:11;;;;10676:64;10766:6;10759:13;;;9889:890;;;:::o;7995:108:2:-;8070:26;8080:2;8084:7;8070:26;;;;;;;;;;;;:9;:26::i;:::-;7995:108;;:::o;15472:116::-;;;;;:::o;3708:161:5:-;3811:10;:17;;;;3784:15;:24;3800:7;3784:24;;;;;;;;;;;:44;;;;3838:10;3854:7;3838:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3708:161;:::o;4486:970::-;4748:22;4798:1;4773:22;4790:4;4773:16;:22::i;:::-;:26;;;;:::i;:::-;4748:51;;4809:18;4830:17;:26;4848:7;4830:26;;;;;;;;;;;;4809:47;;4974:14;4960:10;:28;4956:323;;5004:19;5026:12;:18;5039:4;5026:18;;;;;;;;;;;;;;;:34;5045:14;5026:34;;;;;;;;;;;;5004:56;;5108:11;5075:12;:18;5088:4;5075:18;;;;;;;;;;;;;;;:30;5094:10;5075:30;;;;;;;;;;;:44;;;;5224:10;5191:17;:30;5209:11;5191:30;;;;;;;;;;;:43;;;;4990:289;4956:323;5372:17;:26;5390:7;5372:26;;;;;;;;;;;5365:33;;;5415:12;:18;5428:4;5415:18;;;;;;;;;;;;;;;:34;5434:14;5415:34;;;;;;;;;;;5408:41;;;4567:889;;4486:970;;:::o;5744:1061::-;5993:22;6038:1;6018:10;:17;;;;:21;;;;:::i;:::-;5993:46;;6049:18;6070:15;:24;6086:7;6070:24;;;;;;;;;;;;6049:45;;6416:19;6438:10;6449:14;6438:26;;;;;;;;:::i;:::-;;;;;;;;;;6416:48;;6500:11;6475:10;6486;6475:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6610:10;6579:15;:28;6595:11;6579:28;;;;;;;;;;;:41;;;;6748:15;:24;6764:7;6748:24;;;;;;;;;;;6741:31;;;6782:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5815:990;;;5744:1061;:::o;3296:217::-;3380:14;3397:20;3414:2;3397:16;:20::i;:::-;3380:37;;3454:7;3427:12;:16;3440:2;3427:16;;;;;;;;;;;;;;;:24;3444:6;3427:24;;;;;;;;;;;:34;;;;3500:6;3471:17;:26;3489:7;3471:26;;;;;;;;;;;:35;;;;3370:143;3296:217;;:::o;1412:320:8:-;1472:4;1724:1;1702:7;:19;;;:23;1695:30;;1412:320;;;:::o;8324:279:2:-;8418:18;8424:2;8428:7;8418:5;:18::i;:::-;8467:53;8498:1;8502:2;8506:7;8515:4;8467:22;:53::i;:::-;8446:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;8324:279;;;:::o;8925:920::-;9018:1;9004:16;;:2;:16;;;;8996:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9076:16;9084:7;9076;:16::i;:::-;9075:17;9067:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9136:48;9165:1;9169:2;9173:7;9182:1;9136:20;:48::i;:::-;9280:16;9288:7;9280;:16::i;:::-;9279:17;9271:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9688:1;9671:9;:13;9681:2;9671:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;9729:2;9710:7;:16;9718:7;9710:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9772:7;9768:2;9747:33;;9764:1;9747:33;;;;;;;;;;;;9791:47;9819:1;9823:2;9827:7;9836:1;9791:19;:47::i;:::-;8925:920;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:14:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:::-;11393:3;11414:67;11478:2;11473:3;11414:67;:::i;:::-;11407:74;;11490:93;11579:3;11490:93;:::i;:::-;11608:2;11603:3;11599:12;11592:19;;11251:366;;;:::o;11623:::-;11765:3;11786:67;11850:2;11845:3;11786:67;:::i;:::-;11779:74;;11862:93;11951:3;11862:93;:::i;:::-;11980:2;11975:3;11971:12;11964:19;;11623:366;;;:::o;11995:::-;12137:3;12158:67;12222:2;12217:3;12158:67;:::i;:::-;12151:74;;12234:93;12323:3;12234:93;:::i;:::-;12352:2;12347:3;12343:12;12336:19;;11995:366;;;:::o;12367:::-;12509:3;12530:67;12594:2;12589:3;12530:67;:::i;:::-;12523:74;;12606:93;12695:3;12606:93;:::i;:::-;12724:2;12719:3;12715:12;12708:19;;12367:366;;;:::o;12739:::-;12881:3;12902:67;12966:2;12961:3;12902:67;:::i;:::-;12895:74;;12978:93;13067:3;12978:93;:::i;:::-;13096:2;13091:3;13087:12;13080:19;;12739:366;;;:::o;13111:::-;13253:3;13274:67;13338:2;13333:3;13274:67;:::i;:::-;13267:74;;13350:93;13439:3;13350:93;:::i;:::-;13468:2;13463:3;13459:12;13452:19;;13111:366;;;:::o;13483:::-;13625:3;13646:67;13710:2;13705:3;13646:67;:::i;:::-;13639:74;;13722:93;13811:3;13722:93;:::i;:::-;13840:2;13835:3;13831:12;13824:19;;13483:366;;;:::o;13855:::-;13997:3;14018:67;14082:2;14077:3;14018:67;:::i;:::-;14011:74;;14094:93;14183:3;14094:93;:::i;:::-;14212:2;14207:3;14203:12;14196:19;;13855:366;;;:::o;14227:::-;14369:3;14390:67;14454:2;14449:3;14390:67;:::i;:::-;14383:74;;14466:93;14555:3;14466:93;:::i;:::-;14584:2;14579:3;14575:12;14568:19;;14227:366;;;:::o;14599:::-;14741:3;14762:67;14826:2;14821:3;14762:67;:::i;:::-;14755:74;;14838:93;14927:3;14838:93;:::i;:::-;14956:2;14951:3;14947:12;14940:19;;14599:366;;;:::o;14971:::-;15113:3;15134:67;15198:2;15193:3;15134:67;:::i;:::-;15127:74;;15210:93;15299:3;15210:93;:::i;:::-;15328:2;15323:3;15319:12;15312:19;;14971:366;;;:::o;15343:::-;15485:3;15506:67;15570:2;15565:3;15506:67;:::i;:::-;15499:74;;15582:93;15671:3;15582:93;:::i;:::-;15700:2;15695:3;15691:12;15684:19;;15343:366;;;:::o;15715:::-;15857:3;15878:67;15942:2;15937:3;15878:67;:::i;:::-;15871:74;;15954:93;16043:3;15954:93;:::i;:::-;16072:2;16067:3;16063:12;16056:19;;15715:366;;;:::o;16087:::-;16229:3;16250:67;16314:2;16309:3;16250:67;:::i;:::-;16243:74;;16326:93;16415:3;16326:93;:::i;:::-;16444:2;16439:3;16435:12;16428:19;;16087:366;;;:::o;16459:::-;16601:3;16622:67;16686:2;16681:3;16622:67;:::i;:::-;16615:74;;16698:93;16787:3;16698:93;:::i;:::-;16816:2;16811:3;16807:12;16800:19;;16459:366;;;:::o;16831:::-;16973:3;16994:67;17058:2;17053:3;16994:67;:::i;:::-;16987:74;;17070:93;17159:3;17070:93;:::i;:::-;17188:2;17183:3;17179:12;17172:19;;16831:366;;;:::o;17203:::-;17345:3;17366:67;17430:2;17425:3;17366:67;:::i;:::-;17359:74;;17442:93;17531:3;17442:93;:::i;:::-;17560:2;17555:3;17551:12;17544:19;;17203:366;;;:::o;17575:::-;17717:3;17738:67;17802:2;17797:3;17738:67;:::i;:::-;17731:74;;17814:93;17903:3;17814:93;:::i;:::-;17932:2;17927:3;17923:12;17916:19;;17575:366;;;:::o;17947:118::-;18034:24;18052:5;18034:24;:::i;:::-;18029:3;18022:37;17947:118;;:::o;18071:589::-;18296:3;18318:95;18409:3;18400:6;18318:95;:::i;:::-;18311:102;;18430:95;18521:3;18512:6;18430:95;:::i;:::-;18423:102;;18542:92;18630:3;18621:6;18542:92;:::i;:::-;18535:99;;18651:3;18644:10;;18071:589;;;;;;:::o;18666:222::-;18759:4;18797:2;18786:9;18782:18;18774:26;;18810:71;18878:1;18867:9;18863:17;18854:6;18810:71;:::i;:::-;18666:222;;;;:::o;18894:640::-;19089:4;19127:3;19116:9;19112:19;19104:27;;19141:71;19209:1;19198:9;19194:17;19185:6;19141:71;:::i;:::-;19222:72;19290:2;19279:9;19275:18;19266:6;19222:72;:::i;:::-;19304;19372:2;19361:9;19357:18;19348:6;19304:72;:::i;:::-;19423:9;19417:4;19413:20;19408:2;19397:9;19393:18;19386:48;19451:76;19522:4;19513:6;19451:76;:::i;:::-;19443:84;;18894:640;;;;;;;:::o;19540:210::-;19627:4;19665:2;19654:9;19650:18;19642:26;;19678:65;19740:1;19729:9;19725:17;19716:6;19678:65;:::i;:::-;19540:210;;;;:::o;19756:313::-;19869:4;19907:2;19896:9;19892:18;19884:26;;19956:9;19950:4;19946:20;19942:1;19931:9;19927:17;19920:47;19984:78;20057:4;20048:6;19984:78;:::i;:::-;19976:86;;19756:313;;;;:::o;20075:419::-;20241:4;20279:2;20268:9;20264:18;20256:26;;20328:9;20322:4;20318:20;20314:1;20303:9;20299:17;20292:47;20356:131;20482:4;20356:131;:::i;:::-;20348:139;;20075:419;;;:::o;20500:::-;20666:4;20704:2;20693:9;20689:18;20681:26;;20753:9;20747:4;20743:20;20739:1;20728:9;20724:17;20717:47;20781:131;20907:4;20781:131;:::i;:::-;20773:139;;20500:419;;;:::o;20925:::-;21091:4;21129:2;21118:9;21114:18;21106:26;;21178:9;21172:4;21168:20;21164:1;21153:9;21149:17;21142:47;21206:131;21332:4;21206:131;:::i;:::-;21198:139;;20925:419;;;:::o;21350:::-;21516:4;21554:2;21543:9;21539:18;21531:26;;21603:9;21597:4;21593:20;21589:1;21578:9;21574:17;21567:47;21631:131;21757:4;21631:131;:::i;:::-;21623:139;;21350:419;;;:::o;21775:::-;21941:4;21979:2;21968:9;21964:18;21956:26;;22028:9;22022:4;22018:20;22014:1;22003:9;21999:17;21992:47;22056:131;22182:4;22056:131;:::i;:::-;22048:139;;21775:419;;;:::o;22200:::-;22366:4;22404:2;22393:9;22389:18;22381:26;;22453:9;22447:4;22443:20;22439:1;22428:9;22424:17;22417:47;22481:131;22607:4;22481:131;:::i;:::-;22473:139;;22200:419;;;:::o;22625:::-;22791:4;22829:2;22818:9;22814:18;22806:26;;22878:9;22872:4;22868:20;22864:1;22853:9;22849:17;22842:47;22906:131;23032:4;22906:131;:::i;:::-;22898:139;;22625:419;;;:::o;23050:::-;23216:4;23254:2;23243:9;23239:18;23231:26;;23303:9;23297:4;23293:20;23289:1;23278:9;23274:17;23267:47;23331:131;23457:4;23331:131;:::i;:::-;23323:139;;23050:419;;;:::o;23475:::-;23641:4;23679:2;23668:9;23664:18;23656:26;;23728:9;23722:4;23718:20;23714:1;23703:9;23699:17;23692:47;23756:131;23882:4;23756:131;:::i;:::-;23748:139;;23475:419;;;:::o;23900:::-;24066:4;24104:2;24093:9;24089:18;24081:26;;24153:9;24147:4;24143:20;24139:1;24128:9;24124:17;24117:47;24181:131;24307:4;24181:131;:::i;:::-;24173:139;;23900:419;;;:::o;24325:::-;24491:4;24529:2;24518:9;24514:18;24506:26;;24578:9;24572:4;24568:20;24564:1;24553:9;24549:17;24542:47;24606:131;24732:4;24606:131;:::i;:::-;24598:139;;24325:419;;;:::o;24750:::-;24916:4;24954:2;24943:9;24939:18;24931:26;;25003:9;24997:4;24993:20;24989:1;24978:9;24974:17;24967:47;25031:131;25157:4;25031:131;:::i;:::-;25023:139;;24750:419;;;:::o;25175:::-;25341:4;25379:2;25368:9;25364:18;25356:26;;25428:9;25422:4;25418:20;25414:1;25403:9;25399:17;25392:47;25456:131;25582:4;25456:131;:::i;:::-;25448:139;;25175:419;;;:::o;25600:::-;25766:4;25804:2;25793:9;25789:18;25781:26;;25853:9;25847:4;25843:20;25839:1;25828:9;25824:17;25817:47;25881:131;26007:4;25881:131;:::i;:::-;25873:139;;25600:419;;;:::o;26025:::-;26191:4;26229:2;26218:9;26214:18;26206:26;;26278:9;26272:4;26268:20;26264:1;26253:9;26249:17;26242:47;26306:131;26432:4;26306:131;:::i;:::-;26298:139;;26025:419;;;:::o;26450:::-;26616:4;26654:2;26643:9;26639:18;26631:26;;26703:9;26697:4;26693:20;26689:1;26678:9;26674:17;26667:47;26731:131;26857:4;26731:131;:::i;:::-;26723:139;;26450:419;;;:::o;26875:::-;27041:4;27079:2;27068:9;27064:18;27056:26;;27128:9;27122:4;27118:20;27114:1;27103:9;27099:17;27092:47;27156:131;27282:4;27156:131;:::i;:::-;27148:139;;26875:419;;;:::o;27300:::-;27466:4;27504:2;27493:9;27489:18;27481:26;;27553:9;27547:4;27543:20;27539:1;27528:9;27524:17;27517:47;27581:131;27707:4;27581:131;:::i;:::-;27573:139;;27300:419;;;:::o;27725:::-;27891:4;27929:2;27918:9;27914:18;27906:26;;27978:9;27972:4;27968:20;27964:1;27953:9;27949:17;27942:47;28006:131;28132:4;28006:131;:::i;:::-;27998:139;;27725:419;;;:::o;28150:::-;28316:4;28354:2;28343:9;28339:18;28331:26;;28403:9;28397:4;28393:20;28389:1;28378:9;28374:17;28367:47;28431:131;28557:4;28431:131;:::i;:::-;28423:139;;28150:419;;;:::o;28575:::-;28741:4;28779:2;28768:9;28764:18;28756:26;;28828:9;28822:4;28818:20;28814:1;28803:9;28799:17;28792:47;28856:131;28982:4;28856:131;:::i;:::-;28848:139;;28575:419;;;:::o;29000:::-;29166:4;29204:2;29193:9;29189:18;29181:26;;29253:9;29247:4;29243:20;29239:1;29228:9;29224:17;29217:47;29281:131;29407:4;29281:131;:::i;:::-;29273:139;;29000:419;;;:::o;29425:::-;29591:4;29629:2;29618:9;29614:18;29606:26;;29678:9;29672:4;29668:20;29664:1;29653:9;29649:17;29642:47;29706:131;29832:4;29706:131;:::i;:::-;29698:139;;29425:419;;;:::o;29850:222::-;29943:4;29981:2;29970:9;29966:18;29958:26;;29994:71;30062:1;30051:9;30047:17;30038:6;29994:71;:::i;:::-;29850:222;;;;:::o;30078:129::-;30112:6;30139:20;;:::i;:::-;30129:30;;30168:33;30196:4;30188:6;30168:33;:::i;:::-;30078:129;;;:::o;30213:75::-;30246:6;30279:2;30273:9;30263:19;;30213:75;:::o;30294:307::-;30355:4;30445:18;30437:6;30434:30;30431:56;;;30467:18;;:::i;:::-;30431:56;30505:29;30527:6;30505:29;:::i;:::-;30497:37;;30589:4;30583;30579:15;30571:23;;30294:307;;;:::o;30607:308::-;30669:4;30759:18;30751:6;30748:30;30745:56;;;30781:18;;:::i;:::-;30745:56;30819:29;30841:6;30819:29;:::i;:::-;30811:37;;30903:4;30897;30893:15;30885:23;;30607:308;;;:::o;30921:141::-;30970:4;30993:3;30985:11;;31016:3;31013:1;31006:14;31050:4;31047:1;31037:18;31029:26;;30921:141;;;:::o;31068:98::-;31119:6;31153:5;31147:12;31137:22;;31068:98;;;:::o;31172:99::-;31224:6;31258:5;31252:12;31242:22;;31172:99;;;:::o;31277:168::-;31360:11;31394:6;31389:3;31382:19;31434:4;31429:3;31425:14;31410:29;;31277:168;;;;:::o;31451:169::-;31535:11;31569:6;31564:3;31557:19;31609:4;31604:3;31600:14;31585:29;;31451:169;;;;:::o;31626:148::-;31728:11;31765:3;31750:18;;31626:148;;;;:::o;31780:305::-;31820:3;31839:20;31857:1;31839:20;:::i;:::-;31834:25;;31873:20;31891:1;31873:20;:::i;:::-;31868:25;;32027:1;31959:66;31955:74;31952:1;31949:81;31946:107;;;32033:18;;:::i;:::-;31946:107;32077:1;32074;32070:9;32063:16;;31780:305;;;;:::o;32091:348::-;32131:7;32154:20;32172:1;32154:20;:::i;:::-;32149:25;;32188:20;32206:1;32188:20;:::i;:::-;32183:25;;32376:1;32308:66;32304:74;32301:1;32298:81;32293:1;32286:9;32279:17;32275:105;32272:131;;;32383:18;;:::i;:::-;32272:131;32431:1;32428;32424:9;32413:20;;32091:348;;;;:::o;32445:191::-;32485:4;32505:20;32523:1;32505:20;:::i;:::-;32500:25;;32539:20;32557:1;32539:20;:::i;:::-;32534:25;;32578:1;32575;32572:8;32569:34;;;32583:18;;:::i;:::-;32569:34;32628:1;32625;32621:9;32613:17;;32445:191;;;;:::o;32642:96::-;32679:7;32708:24;32726:5;32708:24;:::i;:::-;32697:35;;32642:96;;;:::o;32744:90::-;32778:7;32821:5;32814:13;32807:21;32796:32;;32744:90;;;:::o;32840:149::-;32876:7;32916:66;32909:5;32905:78;32894:89;;32840:149;;;:::o;32995:126::-;33032:7;33072:42;33065:5;33061:54;33050:65;;32995:126;;;:::o;33127:77::-;33164:7;33193:5;33182:16;;33127:77;;;:::o;33210:154::-;33294:6;33289:3;33284;33271:30;33356:1;33347:6;33342:3;33338:16;33331:27;33210:154;;;:::o;33370:307::-;33438:1;33448:113;33462:6;33459:1;33456:13;33448:113;;;33547:1;33542:3;33538:11;33532:18;33528:1;33523:3;33519:11;33512:39;33484:2;33481:1;33477:10;33472:15;;33448:113;;;33579:6;33576:1;33573:13;33570:101;;;33659:1;33650:6;33645:3;33641:16;33634:27;33570:101;33419:258;33370:307;;;:::o;33683:320::-;33727:6;33764:1;33758:4;33754:12;33744:22;;33811:1;33805:4;33801:12;33832:18;33822:81;;33888:4;33880:6;33876:17;33866:27;;33822:81;33950:2;33942:6;33939:14;33919:18;33916:38;33913:84;;;33969:18;;:::i;:::-;33913:84;33734:269;33683:320;;;:::o;34009:281::-;34092:27;34114:4;34092:27;:::i;:::-;34084:6;34080:40;34222:6;34210:10;34207:22;34186:18;34174:10;34171:34;34168:62;34165:88;;;34233:18;;:::i;:::-;34165:88;34273:10;34269:2;34262:22;34052:238;34009:281;;:::o;34296:233::-;34335:3;34358:24;34376:5;34358:24;:::i;:::-;34349:33;;34404:66;34397:5;34394:77;34391:103;;;34474:18;;:::i;:::-;34391:103;34521:1;34514:5;34510:13;34503:20;;34296:233;;;:::o;34535:180::-;34583:77;34580:1;34573:88;34680:4;34677:1;34670:15;34704:4;34701:1;34694:15;34721:180;34769:77;34766:1;34759:88;34866:4;34863:1;34856:15;34890:4;34887:1;34880:15;34907:180;34955:77;34952:1;34945:88;35052:4;35049:1;35042:15;35076:4;35073:1;35066:15;35093:180;35141:77;35138:1;35131:88;35238:4;35235:1;35228:15;35262:4;35259:1;35252:15;35279:180;35327:77;35324:1;35317:88;35424:4;35421:1;35414:15;35448:4;35445:1;35438:15;35465:180;35513:77;35510:1;35503:88;35610:4;35607:1;35600:15;35634:4;35631:1;35624:15;35651:117;35760:1;35757;35750:12;35774:117;35883:1;35880;35873:12;35897:117;36006:1;36003;35996:12;36020:117;36129:1;36126;36119:12;36143:102;36184:6;36235:2;36231:7;36226:2;36219:5;36215:14;36211:28;36201:38;;36143:102;;;:::o;36251:232::-;36391:34;36387:1;36379:6;36375:14;36368:58;36460:15;36455:2;36447:6;36443:15;36436:40;36251:232;:::o;36489:230::-;36629:34;36625:1;36617:6;36613:14;36606:58;36698:13;36693:2;36685:6;36681:15;36674:38;36489:230;:::o;36725:237::-;36865:34;36861:1;36853:6;36849:14;36842:58;36934:20;36929:2;36921:6;36917:15;36910:45;36725:237;:::o;36968:225::-;37108:34;37104:1;37096:6;37092:14;37085:58;37177:8;37172:2;37164:6;37160:15;37153:33;36968:225;:::o;37199:224::-;37339:34;37335:1;37327:6;37323:14;37316:58;37408:7;37403:2;37395:6;37391:15;37384:32;37199:224;:::o;37429:178::-;37569:30;37565:1;37557:6;37553:14;37546:54;37429:178;:::o;37613:::-;37753:30;37749:1;37741:6;37737:14;37730:54;37613:178;:::o;37797:182::-;37937:34;37933:1;37925:6;37921:14;37914:58;37797:182;:::o;37985:223::-;38125:34;38121:1;38113:6;38109:14;38102:58;38194:6;38189:2;38181:6;38177:15;38170:31;37985:223;:::o;38214:175::-;38354:27;38350:1;38342:6;38338:14;38331:51;38214:175;:::o;38395:182::-;38535:34;38531:1;38523:6;38519:14;38512:58;38395:182;:::o;38583:179::-;38723:31;38719:1;38711:6;38707:14;38700:55;38583:179;:::o;38768:228::-;38908:34;38904:1;38896:6;38892:14;38885:58;38977:11;38972:2;38964:6;38960:15;38953:36;38768:228;:::o;39002:182::-;39142:34;39138:1;39130:6;39126:14;39119:58;39002:182;:::o;39190:::-;39330:34;39326:1;39318:6;39314:14;39307:58;39190:182;:::o;39378:234::-;39518:34;39514:1;39506:6;39502:14;39495:58;39587:17;39582:2;39574:6;39570:15;39563:42;39378:234;:::o;39618:174::-;39758:26;39754:1;39746:6;39742:14;39735:50;39618:174;:::o;39798:220::-;39938:34;39934:1;39926:6;39922:14;39915:58;40007:3;40002:2;39994:6;39990:15;39983:28;39798:220;:::o;40024:233::-;40164:34;40160:1;40152:6;40148:14;40141:58;40233:16;40228:2;40220:6;40216:15;40209:41;40024:233;:::o;40263:248::-;40403:34;40399:1;40391:6;40387:14;40380:58;40472:31;40467:2;40459:6;40455:15;40448:56;40263:248;:::o;40517:231::-;40657:34;40653:1;40645:6;40641:14;40634:58;40726:14;40721:2;40713:6;40709:15;40702:39;40517:231;:::o;40754:171::-;40894:23;40890:1;40882:6;40878:14;40871:47;40754:171;:::o;40931:240::-;41071:34;41067:1;41059:6;41055:14;41048:58;41140:23;41135:2;41127:6;41123:15;41116:48;40931:240;:::o;41177:122::-;41250:24;41268:5;41250:24;:::i;:::-;41243:5;41240:35;41230:63;;41289:1;41286;41279:12;41230:63;41177:122;:::o;41305:116::-;41375:21;41390:5;41375:21;:::i;:::-;41368:5;41365:32;41355:60;;41411:1;41408;41401:12;41355:60;41305:116;:::o;41427:120::-;41499:23;41516:5;41499:23;:::i;:::-;41492:5;41489:34;41479:62;;41537:1;41534;41527:12;41479:62;41427:120;:::o;41553:122::-;41626:24;41644:5;41626:24;:::i;:::-;41619:5;41616:35;41606:63;;41665:1;41662;41655:12;41606:63;41553:122;:::o
Swarm Source
ipfs://6f56d44cb348c3a93f12620afed1ab760e6daf19a92250a839ff3fe6f63685f4
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.