Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
4,048 ERYC
Holders
420
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 ERYCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EndRacistYachtClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-02 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @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 be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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); // ============================== // IERC721Metadata // ============================== /** * @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); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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-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 { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/EndRacistYC.sol pragma solidity ^0.8.4; /* EndRacistYachtClub.sol Contract by @NftDoyler */ contract EndRacistYachtClub is Ownable, ERC721A { uint256 constant public MAX_SUPPLY = 6969; uint256 public TEAM_MINT_MAX = 300; uint256 public publicPrice = 0.0025 ether; uint256 constant public PUBLIC_MINT_LIMIT_TXN = 10; uint256 constant public PUBLIC_MINT_LIMIT = 10; uint256 public TOTAL_SUPPLY_TEAM; string public revealedURI; string public hiddenURI = "ipfs://QmYNg2jnYhaUfehcwe4DpQmzHYkaTNJ3ajovqBJjp79jWQ"; // OpenSea CONTRACT_URI - https://docs.opensea.io/docs/contract-level-metadata string public CONTRACT_URI = "ipfs://QmYxtRu1VsCLFssLp2SwsakmRvfChHh75AetAPTakoHxGF"; bool public paused = true; bool public revealed = false; bool public freeSale = true; bool public publicSale = false; address public teamWallet = 0xe59eaE6b721a9851Dc5111aE2d256B442c697865; mapping(address => bool) public userMintedFree; mapping(address => uint256) public numUserMints; constructor() ERC721A("End Racist Yacht Club", "ERYC") { } /* * $$$$$$$\ $$\ $$\ $$$$$$$$\ $$\ $$\ $$ __$$\ \__| $$ | $$ _____| $$ | \__| $$ | $$ | $$$$$$\ $$\ $$\ $$\ $$$$$$\ $$$$$$\ $$$$$$\ $$ | $$\ $$\ $$$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$$$$$\ $$$$$$$\ $$$$$$$\ $$$$$$$ |$$ __$$\ $$ |\$$\ $$ |\____$$\\_$$ _| $$ __$$\ $$$$$\ $$ | $$ |$$ __$$\ $$ _____|\_$$ _| $$ |$$ __$$\ $$ __$$\ $$ _____| $$ ____/ $$ | \__|$$ | \$$\$$ / $$$$$$$ | $$ | $$$$$$$$ | $$ __|$$ | $$ |$$ | $$ |$$ / $$ | $$ |$$ / $$ |$$ | $$ |\$$$$$$\ $$ | $$ | $$ | \$$$ / $$ __$$ | $$ |$$\ $$ ____| $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$\ $$ |$$ | $$ |$$ | $$ | \____$$\ $$ | $$ | $$ | \$ / \$$$$$$$ | \$$$$ |\$$$$$$$\ $$ | \$$$$$$ |$$ | $$ |\$$$$$$$\ \$$$$ |$$ |\$$$$$$ |$$ | $$ |$$$$$$$ | \__| \__| \__| \_/ \_______| \____/ \_______| \__| \______/ \__| \__| \_______| \____/ \__| \______/ \__| \__|\_______/ * */ // This function is if you want to override the first Token ID# for ERC721A // Note: Fun fact - by overloading this method you save a small amount of gas for minting (technically just the first mint) function _startTokenId() internal view virtual override returns (uint256) { return 1; } function refundOverpay(uint256 price) private { if (msg.value > price) { (bool succ, ) = payable(msg.sender).call{ value: (msg.value - price) }(""); require(succ, "Transfer failed"); } else if (msg.value < price) { revert("Not enough ETH sent"); } } /* * $$$$$$$\ $$\ $$\ $$\ $$$$$$$$\ $$\ $$\ $$ __$$\ $$ | $$ |\__| $$ _____| $$ | \__| $$ | $$ |$$\ $$\ $$$$$$$\ $$ |$$\ $$$$$$$\ $$ | $$\ $$\ $$$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$$$$$\ $$$$$$$\ $$$$$$$\ $$$$$$$ |$$ | $$ |$$ __$$\ $$ |$$ |$$ _____| $$$$$\ $$ | $$ |$$ __$$\ $$ _____|\_$$ _| $$ |$$ __$$\ $$ __$$\ $$ _____| $$ ____/ $$ | $$ |$$ | $$ |$$ |$$ |$$ / $$ __|$$ | $$ |$$ | $$ |$$ / $$ | $$ |$$ / $$ |$$ | $$ |\$$$$$$\ $$ | $$ | $$ |$$ | $$ |$$ |$$ |$$ | $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$\ $$ |$$ | $$ |$$ | $$ | \____$$\ $$ | \$$$$$$ |$$$$$$$ |$$ |$$ |\$$$$$$$\ $$ | \$$$$$$ |$$ | $$ |\$$$$$$$\ \$$$$ |$$ |\$$$$$$ |$$ | $$ |$$$$$$$ | \__| \______/ \_______/ \__|\__| \_______| \__| \______/ \__| \__| \_______| \____/ \__| \______/ \__| \__|\_______/ * */ function teamMint(uint256 quantity) public payable mintCompliance(quantity) { require(msg.sender == teamWallet, "Team minting only"); require(TOTAL_SUPPLY_TEAM + quantity <= TEAM_MINT_MAX, "No team mints left"); TOTAL_SUPPLY_TEAM += quantity; _safeMint(msg.sender, quantity); } function freeMint(uint256 quantity) external payable mintCompliance(quantity) { require(freeSale, "Free sale inactive"); require(msg.value == 0, "This phase is free"); require(quantity == 10, "Only 10 free"); uint256 newSupply = totalSupply() + quantity; require(newSupply <= 4000, "Not enough free supply"); require(!userMintedFree[msg.sender], "User max free limit"); userMintedFree[msg.sender] = true; if(newSupply == 4000) { freeSale = false; publicSale = true; } _safeMint(msg.sender, quantity); } function publicMint(uint256 quantity) external payable mintCompliance(quantity) { require(publicSale, "Public sale inactive"); require(quantity <= PUBLIC_MINT_LIMIT_TXN, "Quantity too high"); uint256 price = publicPrice; uint256 currMints = numUserMints[msg.sender]; require(currMints + quantity <= PUBLIC_MINT_LIMIT, "User max mint limit"); refundOverpay(price * quantity); numUserMints[msg.sender] = (currMints + quantity); _safeMint(msg.sender, quantity); } /* * $$\ $$\ $$\ $$$$$$$$\ $$\ $$\ $$ | $$ |\__| $$ _____| $$ | \__| $$ | $$ |$$\ $$$$$$\ $$\ $$\ $$\ $$ | $$\ $$\ $$$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$$$$$\ $$$$$$$\ $$$$$$$\ \$$\ $$ |$$ |$$ __$$\ $$ | $$ | $$ | $$$$$\ $$ | $$ |$$ __$$\ $$ _____|\_$$ _| $$ |$$ __$$\ $$ __$$\ $$ _____| \$$\$$ / $$ |$$$$$$$$ |$$ | $$ | $$ | $$ __|$$ | $$ |$$ | $$ |$$ / $$ | $$ |$$ / $$ |$$ | $$ |\$$$$$$\ \$$$ / $$ |$$ ____|$$ | $$ | $$ | $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$\ $$ |$$ | $$ |$$ | $$ | \____$$\ \$ / $$ |\$$$$$$$\ \$$$$$\$$$$ | $$ | \$$$$$$ |$$ | $$ |\$$$$$$$\ \$$$$ |$$ |\$$$$$$ |$$ | $$ |$$$$$$$ | \_/ \__| \_______| \_____\____/ \__| \______/ \__| \__| \_______| \____/ \__| \______/ \__| \__|\_______/ * */ // Note: walletOfOwner is only really necessary for enumerability when staking/using on websites etc. // That said, it's a public view so we can keep it in. // This could also be optimized if someone REALLY wanted, but it's just a public view. // Check the pinned tweets of 0xInuarashi for more ideas on this method! // For now, this is just the version that existed in v1. function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { // Note: You don't REALLY need this require statement since nothing should be querying for non-existing tokens after reveal. // That said, it's a public view method so gas efficiency shouldn't come into play. require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); if (revealed) { return string(abi.encodePacked(revealedURI, Strings.toString(_tokenId), ".json")); } else { return hiddenURI; } } // https://docs.opensea.io/docs/contract-level-metadata // https://ethereum.stackexchange.com/questions/110924/how-to-properly-implement-a-contracturi-for-on-chain-nfts function contractURI() public view returns (string memory) { return CONTRACT_URI; } /* * $$$$$$\ $$$$$$$$\ $$\ $$\ $$ __$$\ $$ _____| $$ | \__| $$ / $$ |$$\ $$\ $$\ $$$$$$$\ $$$$$$\ $$$$$$\ $$ | $$\ $$\ $$$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$$$$$\ $$$$$$$\ $$$$$$$\ $$ | $$ |$$ | $$ | $$ |$$ __$$\ $$ __$$\ $$ __$$\ $$$$$\ $$ | $$ |$$ __$$\ $$ _____|\_$$ _| $$ |$$ __$$\ $$ __$$\ $$ _____| $$ | $$ |$$ | $$ | $$ |$$ | $$ |$$$$$$$$ |$$ | \__| $$ __|$$ | $$ |$$ | $$ |$$ / $$ | $$ |$$ / $$ |$$ | $$ |\$$$$$$\ $$ | $$ |$$ | $$ | $$ |$$ | $$ |$$ ____|$$ | $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$\ $$ |$$ | $$ |$$ | $$ | \____$$\ $$$$$$ |\$$$$$\$$$$ |$$ | $$ |\$$$$$$$\ $$ | $$ | \$$$$$$ |$$ | $$ |\$$$$$$$\ \$$$$ |$$ |\$$$$$$ |$$ | $$ |$$$$$$$ | \______/ \_____\____/ \__| \__| \_______|\__| \__| \______/ \__| \__| \_______| \____/ \__| \______/ \__| \__|\_______/ * */ function setTeamMintMax(uint256 _teamMintMax) public onlyOwner { TEAM_MINT_MAX = _teamMintMax; } function setPublicPrice(uint256 _publicPrice) public onlyOwner { publicPrice = _publicPrice; } function setBaseURI(string memory _baseUri) public onlyOwner { revealedURI = _baseUri; } // Note: This method can be hidden/removed if this is a constant. function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenURI = _hiddenMetadataUri; } function revealCollection(bool _revealed, string memory _baseUri) public onlyOwner { revealed = _revealed; revealedURI = _baseUri; } // https://docs.opensea.io/docs/contract-level-metadata function setContractURI(string memory _contractURI) public onlyOwner { CONTRACT_URI = _contractURI; } // Note: Another option is to inherit Pausable without implementing the logic yourself. // https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/Pausable.sol function setPaused(bool _state) public onlyOwner { paused = _state; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setPublicEnabled(bool _state) public onlyOwner { publicSale = _state; freeSale = !_state; } function setFreeEnabled(bool _state) public onlyOwner { freeSale = _state; publicSale = !_state; } function setTeamWalletAddress(address _teamWallet) public onlyOwner { teamWallet = _teamWallet; } function withdraw() external payable onlyOwner { // Get the current funds to calculate initial percentages // Withdraw the ENTIRE remaining balance to the team wallet (bool succ, ) = payable(teamWallet).call{ value: address(this).balance }(""); require(succ, "Team transfer failed"); } // Owner-only mint functionality to "Airdrop" mints to specific users // Note: These will likely end up hidden on OpenSea function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) { _safeMint(receiver, quantity); } /* * $$\ $$\ $$\ $$\ $$$$$$\ $$\ $$$\ $$$ | $$ |\__|$$ __$$\ \__| $$$$\ $$$$ | $$$$$$\ $$$$$$$ |$$\ $$ / \__|$$\ $$$$$$\ $$$$$$\ $$$$$$$\ $$\$$\$$ $$ |$$ __$$\ $$ __$$ |$$ |$$$$\ $$ |$$ __$$\ $$ __$$\ $$ _____| $$ \$$$ $$ |$$ / $$ |$$ / $$ |$$ |$$ _| $$ |$$$$$$$$ |$$ | \__|\$$$$$$\ $$ |\$ /$$ |$$ | $$ |$$ | $$ |$$ |$$ | $$ |$$ ____|$$ | \____$$\ $$ | \_/ $$ |\$$$$$$ |\$$$$$$$ |$$ |$$ | $$ |\$$$$$$$\ $$ | $$$$$$$ | \__| \__| \______/ \_______|\__|\__| \__| \_______|\__| \_______/ * */ modifier mintCompliance(uint256 quantity) { require(!paused, "Contract is paused"); require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left"); require(tx.origin == msg.sender, "No contract minting"); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"CONTRACT_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_MINT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY_TEAM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"},{"internalType":"string","name":"_baseUri","type":"string"}],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamMintMax","type":"uint256"}],"name":"setTeamMintMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"name":"setTeamWalletAddress","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":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"","type":"address"}],"name":"userMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
61012c6009556608e1bc9bf04000600a5560e0604052603560808181529062002ac960a03980516200003a91600d916020909101906200019d565b5060405180606001604052806035815260200162002a946035913980516200006b91600e916020909101906200019d565b50600f80546001600160c01b03191677e59eae6b721a9851dc5111ae2d256b442c69786500010001179055348015620000a357600080fd5b506040518060400160405280601581526020017f456e642052616369737420596163687420436c75620000000000000000000000815250604051806040016040528060048152602001634552594360e01b815250620001116200010b6200014960201b60201c565b6200014d565b8151620001269060039060208501906200019d565b5080516200013c9060049060208401906200019d565b5050600180555062000280565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001ab9062000243565b90600052602060002090601f016020900481019282620001cf57600085556200021a565b82601f10620001ea57805160ff19168380011785556200021a565b828001600101855582156200021a579182015b828111156200021a578251825591602001919060010190620001fd565b50620002289291506200022c565b5090565b5b808211156200022857600081556001016200022d565b600181811c908216806200025857607f821691505b602082108114156200027a57634e487b7160e01b600052602260045260246000fd5b50919050565b61280480620002906000396000f3fe6080604052600436106102e45760003560e01c806364f640761161019057806395d89b41116100dc578063c627525511610095578063e8a3d4851161006f578063e8a3d48514610869578063e985e9c51461087e578063f2fde38b146108c7578063f7e8d6ea146108e757600080fd5b8063c627525514610809578063c87b56dd14610829578063e0a808531461084957600080fd5b806395d89b411461077e578063a22cb46514610793578063a4b41a15146107b3578063a945bf80146107d3578063b88d4fde146107e9578063bceae77b1461046357600080fd5b80637af3a1af116101495780638cc54e7f116101235780638cc54e7f1461070b5780638da5cb5b146107205780639007bd721461073e578063938e3d7b1461075e57600080fd5b80637af3a1af146106b85780637c928fe9146106d857806388dedc14146106eb57600080fd5b806364f64076146105fa5780636b39fca41461062a57806370a0823114610640578063715018a614610660578063763ea95f146106755780637aeb72421461068b57600080fd5b806332cb6b0c1161024f578063518302271161020857806359927044116101e257806359927044146105785780635c975abb146105a05780635ed3e25e146105ba5780636352211e146105da57600080fd5b8063518302271461052457806355f804b31461054357806356b4f6731461056357600080fd5b806332cb6b0c1461047857806333bc1c5c1461048e5780633ccfd60b146104af57806342842e0e146104b7578063438b6300146104d75780634fdd43cb1461050457600080fd5b806318160ddd116102a157806318160ddd146103da57806323b872dd146103fd5780632c4b23341461041d5780632db115441461043d5780632fbba115146104505780632fecf20b1461046357600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc14610340578063095ea7b3146103785780630f15ad8d1461039a57806316c38b3c146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004612369565b6108fc565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033361094e565b6040516103159190612598565b34801561034c57600080fd5b5061036061035b3660046123d8565b6109e0565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b506103986103933660046122d6565b610a24565b005b3480156103a657600080fd5b506103986103b53660046123d8565b610ac4565b3480156103c657600080fd5b506103986103d5366004612300565b610afc565b3480156103e657600080fd5b506103ef610b39565b604051908152602001610315565b34801561040957600080fd5b506103986104183660046121f4565b610b47565b34801561042957600080fd5b506103986104383660046121a6565b610cd8565b61039861044b3660046123d8565b610d30565b61039861045e3660046123d8565b610ee0565b34801561046f57600080fd5b506103ef600a81565b34801561048457600080fd5b506103ef611b3981565b34801561049a57600080fd5b50600f54610309906301000000900460ff1681565b610398611028565b3480156104c357600080fd5b506103986104d23660046121f4565b6110f7565b3480156104e357600080fd5b506104f76104f23660046121a6565b611117565b6040516103159190612554565b34801561051057600080fd5b5061039861051f3660046123a3565b6111f8565b34801561053057600080fd5b50600f5461030990610100900460ff1681565b34801561054f57600080fd5b5061039861055e3660046123a3565b611235565b34801561056f57600080fd5b50610333611272565b34801561058457600080fd5b50600f546103609064010000000090046001600160a01b031681565b3480156105ac57600080fd5b50600f546103099060ff1681565b3480156105c657600080fd5b506103986105d536600461231b565b611300565b3480156105e657600080fd5b506103606105f53660046123d8565b611350565b34801561060657600080fd5b506103096106153660046121a6565b60106020526000908152604090205460ff1681565b34801561063657600080fd5b506103ef60095481565b34801561064c57600080fd5b506103ef61065b3660046121a6565b61135b565b34801561066c57600080fd5b506103986113aa565b34801561068157600080fd5b506103ef600b5481565b34801561069757600080fd5b506103ef6106a63660046121a6565b60116020526000908152604090205481565b3480156106c457600080fd5b506103986106d3366004612300565b6113e0565b6103986106e63660046123d8565b611439565b3480156106f757600080fd5b50610398610706366004612300565b61167a565b34801561071757600080fd5b506103336116d4565b34801561072c57600080fd5b506000546001600160a01b0316610360565b34801561074a57600080fd5b506103986107593660046123f1565b6116e1565b34801561076a57600080fd5b506103986107793660046123a3565b61178d565b34801561078a57600080fd5b506103336117ca565b34801561079f57600080fd5b506103986107ae3660046122ac565b6117d9565b3480156107bf57600080fd5b50600f546103099062010000900460ff1681565b3480156107df57600080fd5b506103ef600a5481565b3480156107f557600080fd5b50610398610804366004612230565b61186f565b34801561081557600080fd5b506103986108243660046123d8565b6118b3565b34801561083557600080fd5b506103336108443660046123d8565b6118e2565b34801561085557600080fd5b50610398610864366004612300565b611a2a565b34801561087557600080fd5b50610333611a6e565b34801561088a57600080fd5b506103096108993660046121c1565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108d357600080fd5b506103986108e23660046121a6565b611a7d565b3480156108f357600080fd5b50610333611b15565b60006301ffc9a760e01b6001600160e01b03198316148061092d57506380ac58cd60e01b6001600160e01b03198316145b806109485750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461095d906126f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610989906126f6565b80156109d65780601f106109ab576101008083540402835291602001916109d6565b820191906000526020600020905b8154815290600101906020018083116109b957829003601f168201915b5050505050905090565b60006109eb82611b22565b610a08576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a2f82611350565b9050336001600160a01b03821614610a6857610a4b8133610899565b610a68576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610af75760405162461bcd60e51b8152600401610aee906125d8565b60405180910390fd5b600955565b6000546001600160a01b03163314610b265760405162461bcd60e51b8152600401610aee906125d8565b600f805460ff1916911515919091179055565b600254600154036000190190565b6000610b5282611b57565b9050836001600160a01b0316816001600160a01b031614610b855760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610bd257610bb58633610899565b610bd257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610bf957604051633a954ecd60e21b815260040160405180910390fd5b8015610c0457600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316610c8f5760018401600081815260056020526040902054610c8d576001548114610c8d5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000546001600160a01b03163314610d025760405162461bcd60e51b8152600401610aee906125d8565b600f80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b600f54819060ff1615610d555760405162461bcd60e51b8152600401610aee9061260d565b611b3981610d61610b39565b610d6b9190612668565b1115610d895760405162461bcd60e51b8152600401610aee90612639565b323314610da85760405162461bcd60e51b8152600401610aee906125ab565b600f546301000000900460ff16610df85760405162461bcd60e51b81526020600482015260146024820152735075626c69632073616c6520696e61637469766560601b6044820152606401610aee565b600a821115610e3d5760405162461bcd60e51b81526020600482015260116024820152700a2eac2dce8d2e8f240e8dede40d0d2ced607b1b6044820152606401610aee565b600a8054336000908152601160205260409020549091610e5d8583612668565b1115610ea15760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e081b5a5b9d081b1a5b5a5d606a1b6044820152606401610aee565b610eb3610eae8584612694565b611bc7565b610ebd8482612668565b33600081815260116020526040902091909155610eda9085611ca6565b50505050565b600f54819060ff1615610f055760405162461bcd60e51b8152600401610aee9061260d565b611b3981610f11610b39565b610f1b9190612668565b1115610f395760405162461bcd60e51b8152600401610aee90612639565b323314610f585760405162461bcd60e51b8152600401610aee906125ab565b600f5464010000000090046001600160a01b03163314610fae5760405162461bcd60e51b81526020600482015260116024820152705465616d206d696e74696e67206f6e6c7960781b6044820152606401610aee565b60095482600b54610fbf9190612668565b11156110025760405162461bcd60e51b8152602060048201526012602482015271139bc81d19585b481b5a5b9d1cc81b19599d60721b6044820152606401610aee565b81600b60008282546110149190612668565b9091555061102490503383611ca6565b5050565b6000546001600160a01b031633146110525760405162461bcd60e51b8152600401610aee906125d8565b600f5460405160009164010000000090046001600160a01b03169047908381818185875af1925050503d80600081146110a7576040519150601f19603f3d011682016040523d82523d6000602084013e6110ac565b606091505b50509050806110f45760405162461bcd60e51b81526020600482015260146024820152731519585b481d1c985b9cd9995c8819985a5b195960621b6044820152606401610aee565b50565b6111128383836040518060200160405280600081525061186f565b505050565b606060006111248361135b565b905060008167ffffffffffffffff811115611141576111416127a2565b60405190808252806020026020018201604052801561116a578160200160208202803683370190505b509050600160005b83811080156111835750611b398211155b156111ee57600061119383611350565b9050866001600160a01b0316816001600160a01b031614156111db57828483815181106111c2576111c261278c565b6020908102919091010152816111d781612731565b9250505b826111e581612731565b93505050611172565b5090949350505050565b6000546001600160a01b031633146112225760405162461bcd60e51b8152600401610aee906125d8565b805161102490600d906020840190612050565b6000546001600160a01b0316331461125f5760405162461bcd60e51b8152600401610aee906125d8565b805161102490600c906020840190612050565b600e805461127f906126f6565b80601f01602080910402602001604051908101604052809291908181526020018280546112ab906126f6565b80156112f85780601f106112cd576101008083540402835291602001916112f8565b820191906000526020600020905b8154815290600101906020018083116112db57829003601f168201915b505050505081565b6000546001600160a01b0316331461132a5760405162461bcd60e51b8152600401610aee906125d8565b600f805461ff00191661010084151502179055805161111290600c906020840190612050565b600061094882611b57565b60006001600160a01b038216611384576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146113d45760405162461bcd60e51b8152600401610aee906125d8565b6113de6000611cc0565b565b6000546001600160a01b0316331461140a5760405162461bcd60e51b8152600401610aee906125d8565b600f805463ffff000019166301000000921580159390930262ff00001916176201000092909202919091179055565b600f54819060ff161561145e5760405162461bcd60e51b8152600401610aee9061260d565b611b398161146a610b39565b6114749190612668565b11156114925760405162461bcd60e51b8152600401610aee90612639565b3233146114b15760405162461bcd60e51b8152600401610aee906125ab565b600f5462010000900460ff166114fe5760405162461bcd60e51b8152602060048201526012602482015271467265652073616c6520696e61637469766560701b6044820152606401610aee565b34156115415760405162461bcd60e51b815260206004820152601260248201527154686973207068617365206973206672656560701b6044820152606401610aee565b81600a146115805760405162461bcd60e51b815260206004820152600c60248201526b4f6e6c79203130206672656560a01b6044820152606401610aee565b60008261158b610b39565b6115959190612668565b9050610fa08111156115e25760405162461bcd60e51b81526020600482015260166024820152754e6f7420656e6f756768206672656520737570706c7960501b6044820152606401610aee565b3360009081526010602052604090205460ff16156116385760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e08199c9959481b1a5b5a5d606a1b6044820152606401610aee565b336000908152601060205260409020805460ff19166001179055610fa081141561167057600f805463ffff0000191663010000001790555b6111123384611ca6565b6000546001600160a01b031633146116a45760405162461bcd60e51b8152600401610aee906125d8565b600f805463ffff0000191662010000921580159390930263ff000000191617630100000092909202919091179055565b600d805461127f906126f6565b6000546001600160a01b0316331461170b5760405162461bcd60e51b8152600401610aee906125d8565b600f54829060ff16156117305760405162461bcd60e51b8152600401610aee9061260d565b611b398161173c610b39565b6117469190612668565b11156117645760405162461bcd60e51b8152600401610aee90612639565b3233146117835760405162461bcd60e51b8152600401610aee906125ab565b6111128284611ca6565b6000546001600160a01b031633146117b75760405162461bcd60e51b8152600401610aee906125d8565b805161102490600e906020840190612050565b60606004805461095d906126f6565b6001600160a01b0382163314156118035760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61187a848484610b47565b6001600160a01b0383163b15610eda5761189684848484611d10565b610eda576040516368d2bf6b60e11b815260040160405180910390fd5b6000546001600160a01b031633146118dd5760405162461bcd60e51b8152600401610aee906125d8565b600a55565b60606118ed82611b22565b6119515760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610aee565b600f54610100900460ff161561199357600c61196c83611e08565b60405160200161197d92919061245c565b6040516020818303038152906040529050919050565b600d80546119a0906126f6565b80601f01602080910402602001604051908101604052809291908181526020018280546119cc906126f6565b8015611a195780601f106119ee57610100808354040283529160200191611a19565b820191906000526020600020905b8154815290600101906020018083116119fc57829003601f168201915b50505050509050919050565b919050565b6000546001600160a01b03163314611a545760405162461bcd60e51b8152600401610aee906125d8565b600f80549115156101000261ff0019909216919091179055565b6060600e805461095d906126f6565b6000546001600160a01b03163314611aa75760405162461bcd60e51b8152600401610aee906125d8565b6001600160a01b038116611b0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aee565b6110f481611cc0565b600c805461127f906126f6565b600081600111158015611b36575060015482105b8015610948575050600090815260056020526040902054600160e01b161590565b60008180600111611bae57600154811015611bae57600081815260056020526040902054600160e01b8116611bac575b80611ba5575060001901600081815260056020526040902054611b87565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b80341115611c6057600033611bdc83346126b3565b604051600081818185875af1925050503d8060008114611c18576040519150601f19603f3d011682016040523d82523d6000602084013e611c1d565b606091505b50509050806110245760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610aee565b803410156110f45760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610aee565b611024828260405180602001604052806000815250611f06565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d45903390899088908890600401612517565b602060405180830381600087803b158015611d5f57600080fd5b505af1925050508015611d8f575060408051601f3d908101601f19168201909252611d8c91810190612386565b60015b611dea573d808015611dbd576040519150601f19603f3d011682016040523d82523d6000602084013e611dc2565b606091505b508051611de2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611e2c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e565780611e4081612731565b9150611e4f9050600a83612680565b9150611e30565b60008167ffffffffffffffff811115611e7157611e716127a2565b6040519080825280601f01601f191660200182016040528015611e9b576020820181803683370190505b5090505b8415611e0057611eb06001836126b3565b9150611ebd600a8661274c565b611ec8906030612668565b60f81b818381518110611edd57611edd61278c565b60200101906001600160f81b031916908160001a905350611eff600a86612680565b9450611e9f565b611f108383611f73565b6001600160a01b0383163b15611112576001548281035b611f3a6000868380600101945086611d10565b611f57576040516368d2bf6b60e11b815260040160405180910390fd5b818110611f27578160015414611f6c57600080fd5b5050505050565b6001546001600160a01b038316611f9c57604051622e076360e81b815260040160405180910390fd5b81611fba5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106120045760015550505050565b82805461205c906126f6565b90600052602060002090601f01602090048101928261207e57600085556120c4565b82601f1061209757805160ff19168380011785556120c4565b828001600101855582156120c4579182015b828111156120c45782518255916020019190600101906120a9565b506120d09291506120d4565b5090565b5b808211156120d057600081556001016120d5565b600067ffffffffffffffff80841115612104576121046127a2565b604051601f8501601f19908116603f0116810190828211818310171561212c5761212c6127a2565b8160405280935085815286868601111561214557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a2557600080fd5b80358015158114611a2557600080fd5b600082601f83011261219757600080fd5b611ba5838335602085016120e9565b6000602082840312156121b857600080fd5b611ba58261215f565b600080604083850312156121d457600080fd5b6121dd8361215f565b91506121eb6020840161215f565b90509250929050565b60008060006060848603121561220957600080fd5b6122128461215f565b92506122206020850161215f565b9150604084013590509250925092565b6000806000806080858703121561224657600080fd5b61224f8561215f565b935061225d6020860161215f565b925060408501359150606085013567ffffffffffffffff81111561228057600080fd5b8501601f8101871361229157600080fd5b6122a0878235602084016120e9565b91505092959194509250565b600080604083850312156122bf57600080fd5b6122c88361215f565b91506121eb60208401612176565b600080604083850312156122e957600080fd5b6122f28361215f565b946020939093013593505050565b60006020828403121561231257600080fd5b611ba582612176565b6000806040838503121561232e57600080fd5b61233783612176565b9150602083013567ffffffffffffffff81111561235357600080fd5b61235f85828601612186565b9150509250929050565b60006020828403121561237b57600080fd5b8135611ba5816127b8565b60006020828403121561239857600080fd5b8151611ba5816127b8565b6000602082840312156123b557600080fd5b813567ffffffffffffffff8111156123cc57600080fd5b611e0084828501612186565b6000602082840312156123ea57600080fd5b5035919050565b6000806040838503121561240457600080fd5b823591506121eb6020840161215f565b6000815180845261242c8160208601602086016126ca565b601f01601f19169290920160200192915050565b600081516124528185602086016126ca565b9290920192915050565b600080845481600182811c91508083168061247857607f831692505b602080841082141561249857634e487b7160e01b86526022600452602486fd5b8180156124ac57600181146124bd576124ea565b60ff198616895284890196506124ea565b60008b81526020902060005b868110156124e25781548b8201529085019083016124c9565b505084890196505b50505050505061250e6124fd8286612440565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061254a90830184612414565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561258c57835183529284019291840191600101612570565b50909695505050505050565b602081526000611ba56020830184612414565b6020808252601390820152724e6f20636f6e7472616374206d696e74696e6760681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b602080825260159082015274139bdd08195b9bdd59da081b5a5b9d1cc81b19599d605a1b604082015260600190565b6000821982111561267b5761267b612760565b500190565b60008261268f5761268f612776565b500490565b60008160001904831182151516156126ae576126ae612760565b500290565b6000828210156126c5576126c5612760565b500390565b60005b838110156126e55781810151838201526020016126cd565b83811115610eda5750506000910152565b600181811c9082168061270a57607f821691505b6020821081141561272b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561274557612745612760565b5060010190565b60008261275b5761275b612776565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110f457600080fdfea2646970667358221220617202be434b8fbce2d14856dbeb7042c0d5b4801bd83fbbb06dff796c14e0a864736f6c63430008070033697066733a2f2f516d5978745275315673434c4673734c7032537773616b6d527666436848683735416574415054616b6f48784746697066733a2f2f516d594e67326a6e59686155666568637765344470516d7a48596b61544e4a33616a6f7671424a6a7037396a5751
Deployed Bytecode
0x6080604052600436106102e45760003560e01c806364f640761161019057806395d89b41116100dc578063c627525511610095578063e8a3d4851161006f578063e8a3d48514610869578063e985e9c51461087e578063f2fde38b146108c7578063f7e8d6ea146108e757600080fd5b8063c627525514610809578063c87b56dd14610829578063e0a808531461084957600080fd5b806395d89b411461077e578063a22cb46514610793578063a4b41a15146107b3578063a945bf80146107d3578063b88d4fde146107e9578063bceae77b1461046357600080fd5b80637af3a1af116101495780638cc54e7f116101235780638cc54e7f1461070b5780638da5cb5b146107205780639007bd721461073e578063938e3d7b1461075e57600080fd5b80637af3a1af146106b85780637c928fe9146106d857806388dedc14146106eb57600080fd5b806364f64076146105fa5780636b39fca41461062a57806370a0823114610640578063715018a614610660578063763ea95f146106755780637aeb72421461068b57600080fd5b806332cb6b0c1161024f578063518302271161020857806359927044116101e257806359927044146105785780635c975abb146105a05780635ed3e25e146105ba5780636352211e146105da57600080fd5b8063518302271461052457806355f804b31461054357806356b4f6731461056357600080fd5b806332cb6b0c1461047857806333bc1c5c1461048e5780633ccfd60b146104af57806342842e0e146104b7578063438b6300146104d75780634fdd43cb1461050457600080fd5b806318160ddd116102a157806318160ddd146103da57806323b872dd146103fd5780632c4b23341461041d5780632db115441461043d5780632fbba115146104505780632fecf20b1461046357600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc14610340578063095ea7b3146103785780630f15ad8d1461039a57806316c38b3c146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004612369565b6108fc565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033361094e565b6040516103159190612598565b34801561034c57600080fd5b5061036061035b3660046123d8565b6109e0565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b506103986103933660046122d6565b610a24565b005b3480156103a657600080fd5b506103986103b53660046123d8565b610ac4565b3480156103c657600080fd5b506103986103d5366004612300565b610afc565b3480156103e657600080fd5b506103ef610b39565b604051908152602001610315565b34801561040957600080fd5b506103986104183660046121f4565b610b47565b34801561042957600080fd5b506103986104383660046121a6565b610cd8565b61039861044b3660046123d8565b610d30565b61039861045e3660046123d8565b610ee0565b34801561046f57600080fd5b506103ef600a81565b34801561048457600080fd5b506103ef611b3981565b34801561049a57600080fd5b50600f54610309906301000000900460ff1681565b610398611028565b3480156104c357600080fd5b506103986104d23660046121f4565b6110f7565b3480156104e357600080fd5b506104f76104f23660046121a6565b611117565b6040516103159190612554565b34801561051057600080fd5b5061039861051f3660046123a3565b6111f8565b34801561053057600080fd5b50600f5461030990610100900460ff1681565b34801561054f57600080fd5b5061039861055e3660046123a3565b611235565b34801561056f57600080fd5b50610333611272565b34801561058457600080fd5b50600f546103609064010000000090046001600160a01b031681565b3480156105ac57600080fd5b50600f546103099060ff1681565b3480156105c657600080fd5b506103986105d536600461231b565b611300565b3480156105e657600080fd5b506103606105f53660046123d8565b611350565b34801561060657600080fd5b506103096106153660046121a6565b60106020526000908152604090205460ff1681565b34801561063657600080fd5b506103ef60095481565b34801561064c57600080fd5b506103ef61065b3660046121a6565b61135b565b34801561066c57600080fd5b506103986113aa565b34801561068157600080fd5b506103ef600b5481565b34801561069757600080fd5b506103ef6106a63660046121a6565b60116020526000908152604090205481565b3480156106c457600080fd5b506103986106d3366004612300565b6113e0565b6103986106e63660046123d8565b611439565b3480156106f757600080fd5b50610398610706366004612300565b61167a565b34801561071757600080fd5b506103336116d4565b34801561072c57600080fd5b506000546001600160a01b0316610360565b34801561074a57600080fd5b506103986107593660046123f1565b6116e1565b34801561076a57600080fd5b506103986107793660046123a3565b61178d565b34801561078a57600080fd5b506103336117ca565b34801561079f57600080fd5b506103986107ae3660046122ac565b6117d9565b3480156107bf57600080fd5b50600f546103099062010000900460ff1681565b3480156107df57600080fd5b506103ef600a5481565b3480156107f557600080fd5b50610398610804366004612230565b61186f565b34801561081557600080fd5b506103986108243660046123d8565b6118b3565b34801561083557600080fd5b506103336108443660046123d8565b6118e2565b34801561085557600080fd5b50610398610864366004612300565b611a2a565b34801561087557600080fd5b50610333611a6e565b34801561088a57600080fd5b506103096108993660046121c1565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108d357600080fd5b506103986108e23660046121a6565b611a7d565b3480156108f357600080fd5b50610333611b15565b60006301ffc9a760e01b6001600160e01b03198316148061092d57506380ac58cd60e01b6001600160e01b03198316145b806109485750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461095d906126f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610989906126f6565b80156109d65780601f106109ab576101008083540402835291602001916109d6565b820191906000526020600020905b8154815290600101906020018083116109b957829003601f168201915b5050505050905090565b60006109eb82611b22565b610a08576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a2f82611350565b9050336001600160a01b03821614610a6857610a4b8133610899565b610a68576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610af75760405162461bcd60e51b8152600401610aee906125d8565b60405180910390fd5b600955565b6000546001600160a01b03163314610b265760405162461bcd60e51b8152600401610aee906125d8565b600f805460ff1916911515919091179055565b600254600154036000190190565b6000610b5282611b57565b9050836001600160a01b0316816001600160a01b031614610b855760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610bd257610bb58633610899565b610bd257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610bf957604051633a954ecd60e21b815260040160405180910390fd5b8015610c0457600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316610c8f5760018401600081815260056020526040902054610c8d576001548114610c8d5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000546001600160a01b03163314610d025760405162461bcd60e51b8152600401610aee906125d8565b600f80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b600f54819060ff1615610d555760405162461bcd60e51b8152600401610aee9061260d565b611b3981610d61610b39565b610d6b9190612668565b1115610d895760405162461bcd60e51b8152600401610aee90612639565b323314610da85760405162461bcd60e51b8152600401610aee906125ab565b600f546301000000900460ff16610df85760405162461bcd60e51b81526020600482015260146024820152735075626c69632073616c6520696e61637469766560601b6044820152606401610aee565b600a821115610e3d5760405162461bcd60e51b81526020600482015260116024820152700a2eac2dce8d2e8f240e8dede40d0d2ced607b1b6044820152606401610aee565b600a8054336000908152601160205260409020549091610e5d8583612668565b1115610ea15760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e081b5a5b9d081b1a5b5a5d606a1b6044820152606401610aee565b610eb3610eae8584612694565b611bc7565b610ebd8482612668565b33600081815260116020526040902091909155610eda9085611ca6565b50505050565b600f54819060ff1615610f055760405162461bcd60e51b8152600401610aee9061260d565b611b3981610f11610b39565b610f1b9190612668565b1115610f395760405162461bcd60e51b8152600401610aee90612639565b323314610f585760405162461bcd60e51b8152600401610aee906125ab565b600f5464010000000090046001600160a01b03163314610fae5760405162461bcd60e51b81526020600482015260116024820152705465616d206d696e74696e67206f6e6c7960781b6044820152606401610aee565b60095482600b54610fbf9190612668565b11156110025760405162461bcd60e51b8152602060048201526012602482015271139bc81d19585b481b5a5b9d1cc81b19599d60721b6044820152606401610aee565b81600b60008282546110149190612668565b9091555061102490503383611ca6565b5050565b6000546001600160a01b031633146110525760405162461bcd60e51b8152600401610aee906125d8565b600f5460405160009164010000000090046001600160a01b03169047908381818185875af1925050503d80600081146110a7576040519150601f19603f3d011682016040523d82523d6000602084013e6110ac565b606091505b50509050806110f45760405162461bcd60e51b81526020600482015260146024820152731519585b481d1c985b9cd9995c8819985a5b195960621b6044820152606401610aee565b50565b6111128383836040518060200160405280600081525061186f565b505050565b606060006111248361135b565b905060008167ffffffffffffffff811115611141576111416127a2565b60405190808252806020026020018201604052801561116a578160200160208202803683370190505b509050600160005b83811080156111835750611b398211155b156111ee57600061119383611350565b9050866001600160a01b0316816001600160a01b031614156111db57828483815181106111c2576111c261278c565b6020908102919091010152816111d781612731565b9250505b826111e581612731565b93505050611172565b5090949350505050565b6000546001600160a01b031633146112225760405162461bcd60e51b8152600401610aee906125d8565b805161102490600d906020840190612050565b6000546001600160a01b0316331461125f5760405162461bcd60e51b8152600401610aee906125d8565b805161102490600c906020840190612050565b600e805461127f906126f6565b80601f01602080910402602001604051908101604052809291908181526020018280546112ab906126f6565b80156112f85780601f106112cd576101008083540402835291602001916112f8565b820191906000526020600020905b8154815290600101906020018083116112db57829003601f168201915b505050505081565b6000546001600160a01b0316331461132a5760405162461bcd60e51b8152600401610aee906125d8565b600f805461ff00191661010084151502179055805161111290600c906020840190612050565b600061094882611b57565b60006001600160a01b038216611384576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146113d45760405162461bcd60e51b8152600401610aee906125d8565b6113de6000611cc0565b565b6000546001600160a01b0316331461140a5760405162461bcd60e51b8152600401610aee906125d8565b600f805463ffff000019166301000000921580159390930262ff00001916176201000092909202919091179055565b600f54819060ff161561145e5760405162461bcd60e51b8152600401610aee9061260d565b611b398161146a610b39565b6114749190612668565b11156114925760405162461bcd60e51b8152600401610aee90612639565b3233146114b15760405162461bcd60e51b8152600401610aee906125ab565b600f5462010000900460ff166114fe5760405162461bcd60e51b8152602060048201526012602482015271467265652073616c6520696e61637469766560701b6044820152606401610aee565b34156115415760405162461bcd60e51b815260206004820152601260248201527154686973207068617365206973206672656560701b6044820152606401610aee565b81600a146115805760405162461bcd60e51b815260206004820152600c60248201526b4f6e6c79203130206672656560a01b6044820152606401610aee565b60008261158b610b39565b6115959190612668565b9050610fa08111156115e25760405162461bcd60e51b81526020600482015260166024820152754e6f7420656e6f756768206672656520737570706c7960501b6044820152606401610aee565b3360009081526010602052604090205460ff16156116385760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e08199c9959481b1a5b5a5d606a1b6044820152606401610aee565b336000908152601060205260409020805460ff19166001179055610fa081141561167057600f805463ffff0000191663010000001790555b6111123384611ca6565b6000546001600160a01b031633146116a45760405162461bcd60e51b8152600401610aee906125d8565b600f805463ffff0000191662010000921580159390930263ff000000191617630100000092909202919091179055565b600d805461127f906126f6565b6000546001600160a01b0316331461170b5760405162461bcd60e51b8152600401610aee906125d8565b600f54829060ff16156117305760405162461bcd60e51b8152600401610aee9061260d565b611b398161173c610b39565b6117469190612668565b11156117645760405162461bcd60e51b8152600401610aee90612639565b3233146117835760405162461bcd60e51b8152600401610aee906125ab565b6111128284611ca6565b6000546001600160a01b031633146117b75760405162461bcd60e51b8152600401610aee906125d8565b805161102490600e906020840190612050565b60606004805461095d906126f6565b6001600160a01b0382163314156118035760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61187a848484610b47565b6001600160a01b0383163b15610eda5761189684848484611d10565b610eda576040516368d2bf6b60e11b815260040160405180910390fd5b6000546001600160a01b031633146118dd5760405162461bcd60e51b8152600401610aee906125d8565b600a55565b60606118ed82611b22565b6119515760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610aee565b600f54610100900460ff161561199357600c61196c83611e08565b60405160200161197d92919061245c565b6040516020818303038152906040529050919050565b600d80546119a0906126f6565b80601f01602080910402602001604051908101604052809291908181526020018280546119cc906126f6565b8015611a195780601f106119ee57610100808354040283529160200191611a19565b820191906000526020600020905b8154815290600101906020018083116119fc57829003601f168201915b50505050509050919050565b919050565b6000546001600160a01b03163314611a545760405162461bcd60e51b8152600401610aee906125d8565b600f80549115156101000261ff0019909216919091179055565b6060600e805461095d906126f6565b6000546001600160a01b03163314611aa75760405162461bcd60e51b8152600401610aee906125d8565b6001600160a01b038116611b0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aee565b6110f481611cc0565b600c805461127f906126f6565b600081600111158015611b36575060015482105b8015610948575050600090815260056020526040902054600160e01b161590565b60008180600111611bae57600154811015611bae57600081815260056020526040902054600160e01b8116611bac575b80611ba5575060001901600081815260056020526040902054611b87565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b80341115611c6057600033611bdc83346126b3565b604051600081818185875af1925050503d8060008114611c18576040519150601f19603f3d011682016040523d82523d6000602084013e611c1d565b606091505b50509050806110245760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610aee565b803410156110f45760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610aee565b611024828260405180602001604052806000815250611f06565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d45903390899088908890600401612517565b602060405180830381600087803b158015611d5f57600080fd5b505af1925050508015611d8f575060408051601f3d908101601f19168201909252611d8c91810190612386565b60015b611dea573d808015611dbd576040519150601f19603f3d011682016040523d82523d6000602084013e611dc2565b606091505b508051611de2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611e2c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e565780611e4081612731565b9150611e4f9050600a83612680565b9150611e30565b60008167ffffffffffffffff811115611e7157611e716127a2565b6040519080825280601f01601f191660200182016040528015611e9b576020820181803683370190505b5090505b8415611e0057611eb06001836126b3565b9150611ebd600a8661274c565b611ec8906030612668565b60f81b818381518110611edd57611edd61278c565b60200101906001600160f81b031916908160001a905350611eff600a86612680565b9450611e9f565b611f108383611f73565b6001600160a01b0383163b15611112576001548281035b611f3a6000868380600101945086611d10565b611f57576040516368d2bf6b60e11b815260040160405180910390fd5b818110611f27578160015414611f6c57600080fd5b5050505050565b6001546001600160a01b038316611f9c57604051622e076360e81b815260040160405180910390fd5b81611fba5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106120045760015550505050565b82805461205c906126f6565b90600052602060002090601f01602090048101928261207e57600085556120c4565b82601f1061209757805160ff19168380011785556120c4565b828001600101855582156120c4579182015b828111156120c45782518255916020019190600101906120a9565b506120d09291506120d4565b5090565b5b808211156120d057600081556001016120d5565b600067ffffffffffffffff80841115612104576121046127a2565b604051601f8501601f19908116603f0116810190828211818310171561212c5761212c6127a2565b8160405280935085815286868601111561214557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a2557600080fd5b80358015158114611a2557600080fd5b600082601f83011261219757600080fd5b611ba5838335602085016120e9565b6000602082840312156121b857600080fd5b611ba58261215f565b600080604083850312156121d457600080fd5b6121dd8361215f565b91506121eb6020840161215f565b90509250929050565b60008060006060848603121561220957600080fd5b6122128461215f565b92506122206020850161215f565b9150604084013590509250925092565b6000806000806080858703121561224657600080fd5b61224f8561215f565b935061225d6020860161215f565b925060408501359150606085013567ffffffffffffffff81111561228057600080fd5b8501601f8101871361229157600080fd5b6122a0878235602084016120e9565b91505092959194509250565b600080604083850312156122bf57600080fd5b6122c88361215f565b91506121eb60208401612176565b600080604083850312156122e957600080fd5b6122f28361215f565b946020939093013593505050565b60006020828403121561231257600080fd5b611ba582612176565b6000806040838503121561232e57600080fd5b61233783612176565b9150602083013567ffffffffffffffff81111561235357600080fd5b61235f85828601612186565b9150509250929050565b60006020828403121561237b57600080fd5b8135611ba5816127b8565b60006020828403121561239857600080fd5b8151611ba5816127b8565b6000602082840312156123b557600080fd5b813567ffffffffffffffff8111156123cc57600080fd5b611e0084828501612186565b6000602082840312156123ea57600080fd5b5035919050565b6000806040838503121561240457600080fd5b823591506121eb6020840161215f565b6000815180845261242c8160208601602086016126ca565b601f01601f19169290920160200192915050565b600081516124528185602086016126ca565b9290920192915050565b600080845481600182811c91508083168061247857607f831692505b602080841082141561249857634e487b7160e01b86526022600452602486fd5b8180156124ac57600181146124bd576124ea565b60ff198616895284890196506124ea565b60008b81526020902060005b868110156124e25781548b8201529085019083016124c9565b505084890196505b50505050505061250e6124fd8286612440565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061254a90830184612414565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561258c57835183529284019291840191600101612570565b50909695505050505050565b602081526000611ba56020830184612414565b6020808252601390820152724e6f20636f6e7472616374206d696e74696e6760681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b602080825260159082015274139bdd08195b9bdd59da081b5a5b9d1cc81b19599d605a1b604082015260600190565b6000821982111561267b5761267b612760565b500190565b60008261268f5761268f612776565b500490565b60008160001904831182151516156126ae576126ae612760565b500290565b6000828210156126c5576126c5612760565b500390565b60005b838110156126e55781810151838201526020016126cd565b83811115610eda5750506000910152565b600181811c9082168061270a57607f821691505b6020821081141561272b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561274557612745612760565b5060010190565b60008261275b5761275b612776565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110f457600080fdfea2646970667358221220617202be434b8fbce2d14856dbeb7042c0d5b4801bd83fbbb06dff796c14e0a864736f6c63430008070033
Deployed Bytecode Sourcemap
50404:13539:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20139:615;;;;;;;;;;-1:-1:-1;20139:615:0;;;;;:::i;:::-;;:::i;:::-;;;8641:14:1;;8634:22;8616:41;;8604:2;8589:18;20139:615:0;;;;;;;;25786:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27732:204::-;;;;;;;;;;-1:-1:-1;27732:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7302:32:1;;;7284:51;;7272:2;7257:18;27732:204:0;7138:203:1;27280:386:0;;;;;;;;;;-1:-1:-1;27280:386:0;;;;;:::i;:::-;;:::i;:::-;;60632:110;;;;;;;;;;-1:-1:-1;60632:110:0;;;;;:::i;:::-;;:::i;61736:83::-;;;;;;;;;;-1:-1:-1;61736:83:0;;;;;:::i;:::-;;:::i;19193:315::-;;;;;;;;;;;;;:::i;:::-;;;15778:25:1;;;15766:2;15751:18;19193:315:0;15632:177:1;36997:2800:0;;;;;;;;;;-1:-1:-1;36997:2800:0;;;;;:::i;:::-;;:::i;62180:111::-;;;;;;;;;;-1:-1:-1;62180:111:0;;;;;:::i;:::-;;:::i;55733:571::-;;;;;;:::i;:::-;;:::i;54740:322::-;;;;;;:::i;:::-;;:::i;50600:50::-;;;;;;;;;;;;50648:2;50600:50;;50459:41;;;;;;;;;;;;50496:4;50459:41;;51161:30;;;;;;;;;;-1:-1:-1;51161:30:0;;;;;;;;;;;62299:350;;;:::i;28622:185::-;;;;;;;;;;-1:-1:-1;28622:185:0;;;;;:::i;:::-;;:::i;57820:689::-;;;;;;;;;;-1:-1:-1;57820:689:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;61047:130::-;;;;;;;;;;-1:-1:-1;61047:130:0;;;;;:::i;:::-;;:::i;51090:28::-;;;;;;;;;;-1:-1:-1;51090:28:0;;;;;;;;;;;60866:102;;;;;;;;;;-1:-1:-1;60866:102:0;;;;;:::i;:::-;;:::i;50965:84::-;;;;;;;;;;;;;:::i;51200:70::-;;;;;;;;;;-1:-1:-1;51200:70:0;;;;;;;-1:-1:-1;;;;;51200:70:0;;;51058:25;;;;;;;;;;-1:-1:-1;51058:25:0;;;;;;;;61185:155;;;;;;;;;;-1:-1:-1;61185:155:0;;;;;:::i;:::-;;:::i;25575:144::-;;;;;;;;;;-1:-1:-1;25575:144:0;;;;;:::i;:::-;;:::i;51279:46::-;;;;;;;;;;-1:-1:-1;51279:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;50507:34;;;;;;;;;;;;;;;;20818:224;;;;;;;;;;-1:-1:-1;20818:224:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;50712:32::-;;;;;;;;;;;;;;;;51332:47;;;;;;;;;;-1:-1:-1;51332:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;61922:123;;;;;;;;;;-1:-1:-1;61922:123:0;;;;;:::i;:::-;;:::i;55074:651::-;;;;;;:::i;:::-;;:::i;62051:121::-;;;;;;;;;;-1:-1:-1;62051:121:0;;;;;:::i;:::-;;:::i;50791:81::-;;;;;;;;;;;;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4125:7:0;4152:6;-1:-1:-1;;;;;4152:6:0;4079:87;;62793:146;;;;;;;;;;-1:-1:-1;62793:146:0;;;;;:::i;:::-;;:::i;61409:115::-;;;;;;;;;;-1:-1:-1;61409:115:0;;;;;:::i;:::-;;:::i;25955:104::-;;;;;;;;;;;;;:::i;28008:308::-;;;;;;;;;;-1:-1:-1;28008:308:0;;;;;:::i;:::-;;:::i;51127:27::-;;;;;;;;;;-1:-1:-1;51127:27:0;;;;;;;;;;;50550:41;;;;;;;;;;;;;;;;28878:399;;;;;;;;;;-1:-1:-1;28878:399:0;;;;;:::i;:::-;;:::i;60750:108::-;;;;;;;;;;-1:-1:-1;60750:108:0;;;;;:::i;:::-;;:::i;58517:608::-;;;;;;;;;;-1:-1:-1;58517:608:0;;;;;:::i;:::-;;:::i;61827:87::-;;;;;;;;;;-1:-1:-1;61827:87:0;;;;;:::i;:::-;;:::i;59312:97::-;;;;;;;;;;;;;:::i;28387:164::-;;;;;;;;;;-1:-1:-1;28387:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28508:25:0;;;28484:4;28508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28387:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;50753:25::-;;;;;;;;;;;;;:::i;20139:615::-;20224:4;-1:-1:-1;;;;;;;;;20524:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;20601:25:0;;;20524:102;:179;;;-1:-1:-1;;;;;;;;;;20678:25:0;;;20524:179;20504:199;20139:615;-1:-1:-1;;20139:615:0:o;25786:100::-;25840:13;25873:5;25866:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25786:100;:::o;27732:204::-;27800:7;27825:16;27833:7;27825;:16::i;:::-;27820:64;;27850:34;;-1:-1:-1;;;27850:34:0;;;;;;;;;;;27820:64;-1:-1:-1;27904:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27904:24:0;;27732:204::o;27280:386::-;27353:13;27369:16;27377:7;27369;:16::i;:::-;27353:32;-1:-1:-1;48180:10:0;-1:-1:-1;;;;;27402:28:0;;;27398:175;;27450:44;27467:5;48180:10;28387:164;:::i;27450:44::-;27445:128;;27522:35;;-1:-1:-1;;;27522:35:0;;;;;;;;;;;27445:128;27585:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;27585:29:0;-1:-1:-1;;;;;27585:29:0;;;;;;;;;27630:28;;27585:24;;27630:28;;;;;;;27342:324;27280:386;;:::o;60632:110::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;48180:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;60706:13:::1;:28:::0;60632:110::o;61736:83::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;48180:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;61796:6:::1;:15:::0;;-1:-1:-1;;61796:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;61736:83::o;19193:315::-;19459:12;;53191:1;19443:13;:28;-1:-1:-1;;19443:46:0;;19193:315::o;36997:2800::-;37131:27;37161;37180:7;37161:18;:27::i;:::-;37131:57;;37246:4;-1:-1:-1;;;;;37205:45:0;37221:19;-1:-1:-1;;;;;37205:45:0;;37201:86;;37259:28;;-1:-1:-1;;;37259:28:0;;;;;;;;;;;37201:86;37301:27;35727:21;;;35554:15;35769:4;35762:36;35851:4;35835:21;;35941:26;;48180:10;36694:30;;;-1:-1:-1;;;;;36392:26:0;;36673:19;;;36670:55;37480:174;;37567:43;37584:4;48180:10;28387:164;:::i;37567:43::-;37562:92;;37619:35;;-1:-1:-1;;;37619:35:0;;;;;;;;;;;37562:92;-1:-1:-1;;;;;37671:16:0;;37667:52;;37696:23;;-1:-1:-1;;;37696:23:0;;;;;;;;;;;37667:52;37868:15;37865:160;;;38008:1;37987:19;37980:30;37865:160;-1:-1:-1;;;;;38403:24:0;;;;;;;:18;:24;;;;;;38401:26;;-1:-1:-1;;38401:26:0;;;38472:22;;;;;;;;;38470:24;;-1:-1:-1;38470:24:0;;;25474:11;25450:22;25446:40;25433:62;-1:-1:-1;;;25433:62:0;38765:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;39059:46:0;;39055:626;;39163:1;39153:11;;39131:19;39286:30;;;:17;:30;;;;;;39282:384;;39424:13;;39409:11;:28;39405:242;;39571:30;;;;:17;:30;;;;;:52;;;39405:242;39112:569;39055:626;39728:7;39724:2;-1:-1:-1;;;;;39709:27:0;39718:4;-1:-1:-1;;;;;39709:27:0;;;;;;;;;;;37120:2677;;;36997:2800;;;:::o;62180:111::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;48180:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;62259:10:::1;:24:::0;;-1:-1:-1;;;;;62259:24:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;62259:24:0;;::::1;::::0;;;::::1;::::0;;62180:111::o;55733:571::-;63742:6;;55803:8;;63742:6;;63741:7;63733:38;;;;-1:-1:-1;;;63733:38:0;;;;;;;:::i;:::-;50496:4;63806:8;63790:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;63782:72;;;;-1:-1:-1;;;63782:72:0;;;;;;;:::i;:::-;63873:9;63886:10;63873:23;63865:55;;;;-1:-1:-1;;;63865:55:0;;;;;;;:::i;:::-;55832:10:::1;::::0;;;::::1;;;55824:43;;;::::0;-1:-1:-1;;;55824:43:0;;13750:2:1;55824:43:0::1;::::0;::::1;13732:21:1::0;13789:2;13769:18;;;13762:30;-1:-1:-1;;;13808:18:1;;;13801:50;13868:18;;55824:43:0::1;13548:344:1::0;55824:43:0::1;50648:2;55886:8;:33;;55878:63;;;::::0;-1:-1:-1;;;55878:63:0;;14099:2:1;55878:63:0::1;::::0;::::1;14081:21:1::0;14138:2;14118:18;;;14111:30;-1:-1:-1;;;14157:18:1;;;14150:47;14214:18;;55878:63:0::1;13897:341:1::0;55878:63:0::1;55970:11;::::0;;56025:10:::1;55954:13;56012:24:::0;;;:12:::1;:24;::::0;;;;;55970:11;;56073:20:::1;56085:8:::0;56012:24;56073:20:::1;:::i;:::-;:41;;56065:73;;;::::0;-1:-1:-1;;;56065:73:0;;10888:2:1;56065:73:0::1;::::0;::::1;10870:21:1::0;10927:2;10907:18;;;10900:30;-1:-1:-1;;;10946:18:1;;;10939:49;11005:18;;56065:73:0::1;10686:343:1::0;56065:73:0::1;56159:31;56173:16;56181:8:::0;56173:5;:16:::1;:::i;:::-;56159:13;:31::i;:::-;56231:20;56243:8:::0;56231:9;:20:::1;:::i;:::-;56216:10;56203:24;::::0;;;:12:::1;:24;::::0;;;;:49;;;;56265:31:::1;::::0;56287:8;56265:9:::1;:31::i;:::-;55813:491;;55733:571:::0;;:::o;54740:322::-;63742:6;;54806:8;;63742:6;;63741:7;63733:38;;;;-1:-1:-1;;;63733:38:0;;;;;;;:::i;:::-;50496:4;63806:8;63790:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;63782:72;;;;-1:-1:-1;;;63782:72:0;;;;;;;:::i;:::-;63873:9;63886:10;63873:23;63865:55;;;;-1:-1:-1;;;63865:55:0;;;;;;;:::i;:::-;54849:10:::1;::::0;;;::::1;-1:-1:-1::0;;;;;54849:10:0::1;54835;:24;54827:54;;;::::0;-1:-1:-1;;;54827:54:0;;10194:2:1;54827:54:0::1;::::0;::::1;10176:21:1::0;10233:2;10213:18;;;10206:30;-1:-1:-1;;;10252:18:1;;;10245:47;10309:18;;54827:54:0::1;9992:341:1::0;54827:54:0::1;54932:13;;54920:8;54900:17;;:28;;;;:::i;:::-;:45;;54892:76;;;::::0;-1:-1:-1;;;54892:76:0;;12708:2:1;54892:76:0::1;::::0;::::1;12690:21:1::0;12747:2;12727:18;;;12720:30;-1:-1:-1;;;12766:18:1;;;12759:48;12824:18;;54892:76:0::1;12506:342:1::0;54892:76:0::1;55002:8;54981:17;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;55023:31:0::1;::::0;-1:-1:-1;55033:10:0::1;55045:8:::0;55023:9:::1;:31::i;:::-;54740:322:::0;;:::o;62299:350::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;48180:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;62519:10:::1;::::0;62511:82:::1;::::0;62496:9:::1;::::0;62519:10;;::::1;-1:-1:-1::0;;;;;62519:10:0::1;::::0;62557:21:::1;::::0;62496:9;62511:82;62496:9;62511:82;62557:21;62519:10;62511:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62495:98;;;62612:4;62604:37;;;::::0;-1:-1:-1;;;62604:37:0;;9094:2:1;62604:37:0::1;::::0;::::1;9076:21:1::0;9133:2;9113:18;;;9106:30;-1:-1:-1;;;9152:18:1;;;9145:50;9212:18;;62604:37:0::1;8892:344:1::0;62604:37:0::1;62346:303;62299:350::o:0;28622:185::-;28760:39;28777:4;28783:2;28787:7;28760:39;;;;;;;;;;;;:16;:39::i;:::-;28622:185;;;:::o;57820:689::-;57880:16;57914:23;57940:17;57950:6;57940:9;:17::i;:::-;57914:43;;57968:30;58015:15;58001:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58001:30:0;-1:-1:-1;57968:63:0;-1:-1:-1;58067:1:0;58042:22;58119:350;58144:15;58126;:33;:65;;;;;50496:4;58163:14;:28;;58126:65;58119:350;;;58208:25;58236:23;58244:14;58236:7;:23::i;:::-;58208:51;;58301:6;-1:-1:-1;;;;;58280:27:0;:17;-1:-1:-1;;;;;58280:27:0;;58276:153;;;58361:14;58328:13;58342:15;58328:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;58396:17;;;;:::i;:::-;;;;58276:153;58441:16;;;;:::i;:::-;;;;58193:276;58119:350;;;-1:-1:-1;58488:13:0;;57820:689;-1:-1:-1;;;;57820:689:0:o;61047:130::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;48180:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;61139:30;;::::1;::::0;:9:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;60866:102::-:0;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;48180:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;60938:22;;::::1;::::0;:11:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;50965:84::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61185:155::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;48180:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;61279:8:::1;:20:::0;;-1:-1:-1;;61279:20:0::1;;::::0;::::1;;;;::::0;;61310:22;;::::1;::::0;:11:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;25575:144::-:0;25639:7;25682:27;25701:7;25682:18;:27::i;20818:224::-;20882:7;-1:-1:-1;;;;;20906:19:0;;20902:60;;20934:28;;-1:-1:-1;;;20934:28:0;;;;;;;;;;;20902:60;-1:-1:-1;;;;;;20980:25:0;;;;;:18;:25;;;;;;15373:13;20980:54;;20818:224::o;4730:103::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;48180:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;61922:123::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;48180:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;61989:10:::1;:19:::0;;-1:-1:-1;;62019:18:0;61989:19;;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;;62019:18:0;;;;;;::::1;::::0;;;::::1;::::0;;61922:123::o;55074:651::-;63742:6;;55142:8;;63742:6;;63741:7;63733:38;;;;-1:-1:-1;;;63733:38:0;;;;;;;:::i;:::-;50496:4;63806:8;63790:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;63782:72;;;;-1:-1:-1;;;63782:72:0;;;;;;;:::i;:::-;63873:9;63886:10;63873:23;63865:55;;;;-1:-1:-1;;;63865:55:0;;;;;;;:::i;:::-;55171:8:::1;::::0;;;::::1;;;55163:39;;;::::0;-1:-1:-1;;;55163:39:0;;11236:2:1;55163:39:0::1;::::0;::::1;11218:21:1::0;11275:2;11255:18;;;11248:30;-1:-1:-1;;;11294:18:1;;;11287:48;11352:18;;55163:39:0::1;11034:342:1::0;55163:39:0::1;55221:9;:14:::0;55213:45:::1;;;::::0;-1:-1:-1;;;55213:45:0;;13055:2:1;55213:45:0::1;::::0;::::1;13037:21:1::0;13094:2;13074:18;;;13067:30;-1:-1:-1;;;13113:18:1;;;13106:48;13171:18;;55213:45:0::1;12853:342:1::0;55213:45:0::1;55277:8;55289:2;55277:14;55269:39;;;::::0;-1:-1:-1;;;55269:39:0;;15493:2:1;55269:39:0::1;::::0;::::1;15475:21:1::0;15532:2;15512:18;;;15505:30;-1:-1:-1;;;15551:18:1;;;15544:42;15603:18;;55269:39:0::1;15291:336:1::0;55269:39:0::1;55321:17;55357:8;55341:13;:11;:13::i;:::-;:24;;;;:::i;:::-;55321:44;;55407:4;55394:9;:17;;55386:52;;;::::0;-1:-1:-1;;;55386:52:0;;14792:2:1;55386:52:0::1;::::0;::::1;14774:21:1::0;14831:2;14811:18;;;14804:30;-1:-1:-1;;;14850:18:1;;;14843:52;14912:18;;55386:52:0::1;14590:346:1::0;55386:52:0::1;55475:10;55460:26;::::0;;;:14:::1;:26;::::0;;;;;::::1;;55459:27;55451:59;;;::::0;-1:-1:-1;;;55451:59:0;;11944:2:1;55451:59:0::1;::::0;::::1;11926:21:1::0;11983:2;11963:18;;;11956:30;-1:-1:-1;;;12002:18:1;;;11995:49;12061:18;;55451:59:0::1;11742:343:1::0;55451:59:0::1;55546:10;55531:26;::::0;;;:14:::1;:26;::::0;;;;:33;;-1:-1:-1;;55531:33:0::1;55560:4;55531:33;::::0;;55593:4:::1;55580:17:::0;::::1;55577:97;;;55614:8;:16:::0;;-1:-1:-1;;55645:17:0;;::::1;::::0;;55577:97:::1;55686:31;55696:10;55708:8;55686:9;:31::i;62051:121::-:0;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;48180:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;62116:8:::1;:17:::0;;-1:-1:-1;;62144:20:0;62116:17;;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;;62144:20:0;;;;;;::::1;::::0;;;::::1;::::0;;62051:121::o;50791:81::-;;;;;;;:::i;62793:146::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;48180:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;63742:6:::1;::::0;62881:8;;63742:6:::1;;63741:7;63733:38;;;;-1:-1:-1::0;;;63733:38:0::1;;;;;;;:::i;:::-;50496:4;63806:8;63790:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;63782:72;;;;-1:-1:-1::0;;;63782:72:0::1;;;;;;;:::i;:::-;63873:9;63886:10;63873:23;63865:55;;;;-1:-1:-1::0;;;63865:55:0::1;;;;;;;:::i;:::-;62902:29:::2;62912:8;62922;62902:9;:29::i;61409:115::-:0;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;48180:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;61489:27;;::::1;::::0;:12:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;25955:104::-:0;26011:13;26044:7;26037:14;;;;;:::i;28008:308::-;-1:-1:-1;;;;;28107:31:0;;48180:10;28107:31;28103:61;;;28147:17;;-1:-1:-1;;;28147:17:0;;;;;;;;;;;28103:61;48180:10;28177:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;28177:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;28177:60:0;;;;;;;;;;28253:55;;8616:41:1;;;28177:49:0;;48180:10;28253:55;;8589:18:1;28253:55:0;;;;;;;28008:308;;:::o;28878:399::-;29045:31;29058:4;29064:2;29068:7;29045:12;:31::i;:::-;-1:-1:-1;;;;;29091:14:0;;;:19;29087:183;;29130:56;29161:4;29167:2;29171:7;29180:5;29130:30;:56::i;:::-;29125:145;;29214:40;;-1:-1:-1;;;29214:40:0;;;;;;;;;;;60750:108;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;48180:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;60824:11:::1;:26:::0;60750:108::o;58517:608::-;58583:13;58848:17;58856:8;58848:7;:17::i;:::-;58840:77;;;;-1:-1:-1;;;58840:77:0;;12292:2:1;58840:77:0;;;12274:21:1;12331:2;12311:18;;;12304:30;12370:34;12350:18;;;12343:62;-1:-1:-1;;;12421:18:1;;;12414:45;12476:19;;58840:77:0;12090:411:1;58840:77:0;58942:8;;;;;;;58938:180;;;58998:11;59011:26;59028:8;59011:16;:26::i;:::-;58981:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58967:81;;58517:608;;;:::o;58938:180::-;59097:9;59090:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58517:608;;;:::o;58938:180::-;58517:608;;;:::o;61827:87::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;48180:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;61889:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;61889:17:0;;::::1;::::0;;;::::1;::::0;;61827:87::o;59312:97::-;59356:13;59389:12;59382:19;;;;;:::i;4988:201::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;48180:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;9443:2:1;5069:73:0::1;::::0;::::1;9425:21:1::0;9482:2;9462:18;;;9455:30;9521:34;9501:18;;;9494:62;-1:-1:-1;;;9572:18:1;;;9565:36;9618:19;;5069:73:0::1;9241:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;50753:25::-:0;;;;;;;:::i;29532:273::-;29589:4;29645:7;53191:1;29626:26;;:66;;;;;29679:13;;29669:7;:23;29626:66;:152;;;;-1:-1:-1;;29730:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;29730:43:0;:48;;29532:273::o;22492:1129::-;22559:7;22594;;53191:1;22643:23;22639:915;;22696:13;;22689:4;:20;22685:869;;;22734:14;22751:23;;;:17;:23;;;;;;-1:-1:-1;;;22840:23:0;;22836:699;;23359:113;23366:11;23359:113;;-1:-1:-1;;;23437:6:0;23419:25;;;;:17;:25;;;;;;23359:113;;;23505:6;22492:1129;-1:-1:-1;;;22492:1129:0:o;22836:699::-;22711:843;22685:869;23582:31;;-1:-1:-1;;;23582:31:0;;;;;;;;;;;53208:359;53281:5;53269:9;:17;53265:295;;;53304:9;53327:10;53370:17;53382:5;53370:9;:17;:::i;:::-;53319:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53303:104;;;53430:4;53422:32;;;;-1:-1:-1;;;53422:32:0;;9850:2:1;53422:32:0;;;9832:21:1;9889:2;9869:18;;;9862:30;-1:-1:-1;;;9908:18:1;;;9901:45;9963:18;;53422:32:0;9648:339:1;53265:295:0;53497:5;53485:9;:17;53481:79;;;53519:29;;-1:-1:-1;;;53519:29:0;;13402:2:1;53519:29:0;;;13384:21:1;13441:2;13421:18;;;13414:30;-1:-1:-1;;;13460:18:1;;;13453:49;13519:18;;53519:29:0;13200:343:1;29889:104:0;29958:27;29968:2;29972:8;29958:27;;;;;;;;;;;;:9;:27::i;5349:191::-;5423:16;5442:6;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;5492:40;;5442:6;;;;;;;5492:40;;5423:16;5492:40;5412:128;5349:191;:::o;43748:716::-;43932:88;;-1:-1:-1;;;43932:88:0;;43911:4;;-1:-1:-1;;;;;43932:45:0;;;;;:88;;48180:10;;43999:4;;44005:7;;44014:5;;43932:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43932:88:0;;;;;;;;-1:-1:-1;;43932:88:0;;;;;;;;;;;;:::i;:::-;;;43928:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44215:13:0;;44211:235;;44261:40;;-1:-1:-1;;;44261:40:0;;;;;;;;;;;44211:235;44404:6;44398:13;44389:6;44385:2;44381:15;44374:38;43928:529;-1:-1:-1;;;;;;44091:64:0;-1:-1:-1;;;44091:64:0;;-1:-1:-1;43928:529:0;43748:716;;;;;;:::o;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;30409:681;30532:19;30538:2;30542:8;30532:5;:19::i;:::-;-1:-1:-1;;;;;30593:14:0;;;:19;30589:483;;30647:13;;30695:14;;;30728:233;30759:62;30798:1;30802:2;30806:7;;;;;;30815:5;30759:30;:62::i;:::-;30754:167;;30857:40;;-1:-1:-1;;;30857:40:0;;;;;;;;;;;30754:167;30956:3;30948:5;:11;30728:233;;31043:3;31026:13;;:20;31022:34;;31048:8;;;31022:34;30614:458;;30409:681;;;:::o;31363:1529::-;31451:13;;-1:-1:-1;;;;;31479:16:0;;31475:48;;31504:19;;-1:-1:-1;;;31504:19:0;;;;;;;;;;;31475:48;31538:13;31534:44;;31560:18;;-1:-1:-1;;;31560:18:0;;;;;;;;;;;31534:44;-1:-1:-1;;;;;32066:22:0;;;;;;:18;:22;;15510:2;32066:22;;:70;;32104:31;32092:44;;32066:70;;;25474:11;25450:22;25446:40;-1:-1:-1;27184:15:0;;27159:23;27155:45;25443:51;25433:62;32379:31;;;;:17;:31;;;;;:173;32397:12;32628:23;;;32666:101;32693:35;;32718:9;;;;;-1:-1:-1;;;;;32693:35:0;;;32710:1;;32693:35;;32710:1;;32693:35;32762:3;32752:7;:13;32666:101;;32783:13;:19;-1:-1:-1;28622:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:221;1036:5;1089:3;1082:4;1074:6;1070:17;1066:27;1056:55;;1107:1;1104;1097:12;1056:55;1129:79;1204:3;1195:6;1182:20;1175:4;1167:6;1163:17;1129:79;:::i;1219:186::-;1278:6;1331:2;1319:9;1310:7;1306:23;1302:32;1299:52;;;1347:1;1344;1337:12;1299:52;1370:29;1389:9;1370:29;:::i;1410:260::-;1478:6;1486;1539:2;1527:9;1518:7;1514:23;1510:32;1507:52;;;1555:1;1552;1545:12;1507:52;1578:29;1597:9;1578:29;:::i;:::-;1568:39;;1626:38;1660:2;1649:9;1645:18;1626:38;:::i;:::-;1616:48;;1410:260;;;;;:::o;1675:328::-;1752:6;1760;1768;1821:2;1809:9;1800:7;1796:23;1792:32;1789:52;;;1837:1;1834;1827:12;1789:52;1860:29;1879:9;1860:29;:::i;:::-;1850:39;;1908:38;1942:2;1931:9;1927:18;1908:38;:::i;:::-;1898:48;;1993:2;1982:9;1978:18;1965:32;1955:42;;1675:328;;;;;:::o;2008:666::-;2103:6;2111;2119;2127;2180:3;2168:9;2159:7;2155:23;2151:33;2148:53;;;2197:1;2194;2187:12;2148:53;2220:29;2239:9;2220:29;:::i;:::-;2210:39;;2268:38;2302:2;2291:9;2287:18;2268:38;:::i;:::-;2258:48;;2353:2;2342:9;2338:18;2325:32;2315:42;;2408:2;2397:9;2393:18;2380:32;2435:18;2427:6;2424:30;2421:50;;;2467:1;2464;2457:12;2421:50;2490:22;;2543:4;2535:13;;2531:27;-1:-1:-1;2521:55:1;;2572:1;2569;2562:12;2521:55;2595:73;2660:7;2655:2;2642:16;2637:2;2633;2629:11;2595:73;:::i;:::-;2585:83;;;2008:666;;;;;;;:::o;2679:254::-;2744:6;2752;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;:::-;2834:39;;2892:35;2923:2;2912:9;2908:18;2892:35;:::i;2938:254::-;3006:6;3014;3067:2;3055:9;3046:7;3042:23;3038:32;3035:52;;;3083:1;3080;3073:12;3035:52;3106:29;3125:9;3106:29;:::i;:::-;3096:39;3182:2;3167:18;;;;3154:32;;-1:-1:-1;;;2938:254:1:o;3197:180::-;3253:6;3306:2;3294:9;3285:7;3281:23;3277:32;3274:52;;;3322:1;3319;3312:12;3274:52;3345:26;3361:9;3345:26;:::i;3382:390::-;3457:6;3465;3518:2;3506:9;3497:7;3493:23;3489:32;3486:52;;;3534:1;3531;3524:12;3486:52;3557:26;3573:9;3557:26;:::i;:::-;3547:36;;3634:2;3623:9;3619:18;3606:32;3661:18;3653:6;3650:30;3647:50;;;3693:1;3690;3683:12;3647:50;3716;3758:7;3749:6;3738:9;3734:22;3716:50;:::i;:::-;3706:60;;;3382:390;;;;;:::o;3777:245::-;3835:6;3888:2;3876:9;3867:7;3863:23;3859:32;3856:52;;;3904:1;3901;3894:12;3856:52;3943:9;3930:23;3962:30;3986:5;3962:30;:::i;4027:249::-;4096:6;4149:2;4137:9;4128:7;4124:23;4120:32;4117:52;;;4165:1;4162;4155:12;4117:52;4197:9;4191:16;4216:30;4240:5;4216:30;:::i;4281:322::-;4350:6;4403:2;4391:9;4382:7;4378:23;4374:32;4371:52;;;4419:1;4416;4409:12;4371:52;4459:9;4446:23;4492:18;4484:6;4481:30;4478:50;;;4524:1;4521;4514:12;4478:50;4547;4589:7;4580:6;4569:9;4565:22;4547:50;:::i;4608:180::-;4667:6;4720:2;4708:9;4699:7;4695:23;4691:32;4688:52;;;4736:1;4733;4726:12;4688:52;-1:-1:-1;4759:23:1;;4608:180;-1:-1:-1;4608:180:1:o;4793:254::-;4861:6;4869;4922:2;4910:9;4901:7;4897:23;4893:32;4890:52;;;4938:1;4935;4928:12;4890:52;4974:9;4961:23;4951:33;;5003:38;5037:2;5026:9;5022:18;5003:38;:::i;5052:257::-;5093:3;5131:5;5125:12;5158:6;5153:3;5146:19;5174:63;5230:6;5223:4;5218:3;5214:14;5207:4;5200:5;5196:16;5174:63;:::i;:::-;5291:2;5270:15;-1:-1:-1;;5266:29:1;5257:39;;;;5298:4;5253:50;;5052:257;-1:-1:-1;;5052:257:1:o;5314:185::-;5356:3;5394:5;5388:12;5409:52;5454:6;5449:3;5442:4;5435:5;5431:16;5409:52;:::i;:::-;5477:16;;;;;5314:185;-1:-1:-1;;5314:185:1:o;5622:1301::-;5899:3;5928:1;5961:6;5955:13;5991:3;6013:1;6041:9;6037:2;6033:18;6023:28;;6101:2;6090:9;6086:18;6123;6113:61;;6167:4;6159:6;6155:17;6145:27;;6113:61;6193:2;6241;6233:6;6230:14;6210:18;6207:38;6204:165;;;-1:-1:-1;;;6268:33:1;;6324:4;6321:1;6314:15;6354:4;6275:3;6342:17;6204:165;6385:18;6412:104;;;;6530:1;6525:320;;;;6378:467;;6412:104;-1:-1:-1;;6445:24:1;;6433:37;;6490:16;;;;-1:-1:-1;6412:104:1;;6525:320;15887:1;15880:14;;;15924:4;15911:18;;6620:1;6634:165;6648:6;6645:1;6642:13;6634:165;;;6726:14;;6713:11;;;6706:35;6769:16;;;;6663:10;;6634:165;;;6638:3;;6828:6;6823:3;6819:16;6812:23;;6378:467;;;;;;;6861:56;6886:30;6912:3;6904:6;6886:30;:::i;:::-;-1:-1:-1;;;5564:20:1;;5609:1;5600:11;;5504:113;6861:56;6854:63;5622:1301;-1:-1:-1;;;;;5622:1301:1:o;7346:488::-;-1:-1:-1;;;;;7615:15:1;;;7597:34;;7667:15;;7662:2;7647:18;;7640:43;7714:2;7699:18;;7692:34;;;7762:3;7757:2;7742:18;;7735:31;;;7540:4;;7783:45;;7808:19;;7800:6;7783:45;:::i;:::-;7775:53;7346:488;-1:-1:-1;;;;;;7346:488:1:o;7839:632::-;8010:2;8062:21;;;8132:13;;8035:18;;;8154:22;;;7981:4;;8010:2;8233:15;;;;8207:2;8192:18;;;7981:4;8276:169;8290:6;8287:1;8284:13;8276:169;;;8351:13;;8339:26;;8420:15;;;;8385:12;;;;8312:1;8305:9;8276:169;;;-1:-1:-1;8462:3:1;;7839:632;-1:-1:-1;;;;;;7839:632:1:o;8668:219::-;8817:2;8806:9;8799:21;8780:4;8837:44;8877:2;8866:9;8862:18;8854:6;8837:44;:::i;10338:343::-;10540:2;10522:21;;;10579:2;10559:18;;;10552:30;-1:-1:-1;;;10613:2:1;10598:18;;10591:49;10672:2;10657:18;;10338:343::o;11381:356::-;11583:2;11565:21;;;11602:18;;;11595:30;11661:34;11656:2;11641:18;;11634:62;11728:2;11713:18;;11381:356::o;14243:342::-;14445:2;14427:21;;;14484:2;14464:18;;;14457:30;-1:-1:-1;;;14518:2:1;14503:18;;14496:48;14576:2;14561:18;;14243:342::o;14941:345::-;15143:2;15125:21;;;15182:2;15162:18;;;15155:30;-1:-1:-1;;;15216:2:1;15201:18;;15194:51;15277:2;15262:18;;14941:345::o;15940:128::-;15980:3;16011:1;16007:6;16004:1;16001:13;15998:39;;;16017:18;;:::i;:::-;-1:-1:-1;16053:9:1;;15940:128::o;16073:120::-;16113:1;16139;16129:35;;16144:18;;:::i;:::-;-1:-1:-1;16178:9:1;;16073:120::o;16198:168::-;16238:7;16304:1;16300;16296:6;16292:14;16289:1;16286:21;16281:1;16274:9;16267:17;16263:45;16260:71;;;16311:18;;:::i;:::-;-1:-1:-1;16351:9:1;;16198:168::o;16371:125::-;16411:4;16439:1;16436;16433:8;16430:34;;;16444:18;;:::i;:::-;-1:-1:-1;16481:9:1;;16371:125::o;16501:258::-;16573:1;16583:113;16597:6;16594:1;16591:13;16583:113;;;16673:11;;;16667:18;16654:11;;;16647:39;16619:2;16612:10;16583:113;;;16714:6;16711:1;16708:13;16705:48;;;-1:-1:-1;;16749:1:1;16731:16;;16724:27;16501:258::o;16764:380::-;16843:1;16839:12;;;;16886;;;16907:61;;16961:4;16953:6;16949:17;16939:27;;16907:61;17014:2;17006:6;17003:14;16983:18;16980:38;16977:161;;;17060:10;17055:3;17051:20;17048:1;17041:31;17095:4;17092:1;17085:15;17123:4;17120:1;17113:15;16977:161;;16764:380;;;:::o;17149:135::-;17188:3;-1:-1:-1;;17209:17:1;;17206:43;;;17229:18;;:::i;:::-;-1:-1:-1;17276:1:1;17265:13;;17149:135::o;17289:112::-;17321:1;17347;17337:35;;17352:18;;:::i;:::-;-1:-1:-1;17386:9:1;;17289:112::o;17406:127::-;17467:10;17462:3;17458:20;17455:1;17448:31;17498:4;17495:1;17488:15;17522:4;17519:1;17512:15;17538:127;17599:10;17594:3;17590:20;17587:1;17580:31;17630:4;17627:1;17620:15;17654:4;17651:1;17644:15;17670:127;17731:10;17726:3;17722:20;17719:1;17712:31;17762:4;17759:1;17752:15;17786:4;17783:1;17776:15;17802:127;17863:10;17858:3;17854:20;17851:1;17844:31;17894:4;17891:1;17884:15;17918:4;17915:1;17908:15;17934:131;-1:-1:-1;;;;;;18008:32:1;;17998:43;;17988:71;;18055:1;18052;18045:12
Swarm Source
ipfs://617202be434b8fbce2d14856dbeb7042c0d5b4801bd83fbbb06dff796c14e0a8
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.