ERC-721
Overview
Max Total Supply
435 PSSMP
Holders
427
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PSSMPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PSSMintPassNFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-28 */ // Sources flattened with hardhat v2.6.2 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), 'Ownable: caller is not the owner'); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), 'Ownable: new owner is the zero address' ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, 'Address: insufficient balance' ); (bool success, ) = recipient.call{value: amount}(''); require( success, 'Address: unable to send value, recipient may have reverted' ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, 'Address: low-level call failed'); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, 'Address: low-level call with value failed' ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, 'Address: insufficient balance for call' ); require(isContract(target), 'Address: call to non-contract'); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, 'Address: low-level static call failed' ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), 'Address: static call to non-contract'); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, 'Address: low-level delegate call failed' ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), 'Address: delegate call to non-contract'); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] 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/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), 'ERC721: balance query for the zero address' ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), 'ERC721: owner query for nonexistent token' ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), 'ERC721Metadata: URI query for nonexistent token' ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, 'ERC721: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721: approve caller is not owner nor approved for all' ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), 'ERC721: approved query for nonexistent token' ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), 'ERC721: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved' ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved' ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), 'ERC721: operator query for nonexistent token' ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ''); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), 'ERC721: transfer to non ERC721Receiver implementer' ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), 'ERC721: mint to the zero address'); require(!_exists(tokenId), 'ERC721: token already minted'); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, 'ERC721: transfer of token that is not own' ); require(to != address(0), 'ERC721: transfer to the zero address'); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( 'ERC721: transfer to non ERC721Receiver implementer' ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require( index < ERC721.balanceOf(owner), 'ERC721Enumerable: owner index out of bounds' ); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require( index < ERC721Enumerable.totalSupply(), 'ERC721Enumerable: global index out of bounds' ); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File contracts/OpenSeaTradableNFT.sol pragma solidity ^0.8.0; contract OpenSeaOwnableDelegateProxy {} contract OpenSeaProxyRegistry { mapping(address => OpenSeaOwnableDelegateProxy) public proxies; } contract OpenSeaTradableNFT { address openSeaProxyRegistryAddress; function _setProxyRegistryAddress(address _openSeaProxyRegistryAddress) internal { openSeaProxyRegistryAddress = _openSeaProxyRegistryAddress; } function isApprovedForAll(address owner, address operator) public view virtual returns (bool) { // Whitelist OpenSea proxy contract for easy trading. OpenSeaProxyRegistry openSeaProxyRegistry = OpenSeaProxyRegistry( openSeaProxyRegistryAddress ); if (address(openSeaProxyRegistry.proxies(owner)) == operator) { return true; } return false; } } // File contracts/PSSMintPass.sol pragma solidity ^0.8.0; contract PSSMintPassNFT is Ownable, ERC721Enumerable, OpenSeaTradableNFT { string public baseURI = ''; mapping(address => bool) public claimed; constructor( string memory _initialBaseURI, address _openSeaProxyRegistryAddress ) ERC721('PSS MintPass', 'PSSMP') { baseURI = _initialBaseURI; OpenSeaTradableNFT._setProxyRegistryAddress( _openSeaProxyRegistryAddress ); } function isApprovedForAll(address owner, address operator) public view override(ERC721, OpenSeaTradableNFT) returns (bool) { if (OpenSeaTradableNFT.isApprovedForAll(owner, operator)) { return true; } return ERC721.isApprovedForAll(owner, operator); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), 'ERC721Metadata: URI query for nonexistent token' ); return bytes(baseURI).length > 0 ? string(abi.encodePacked(_baseURI(), 'metadata.json')) : ''; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function mint(address[] memory addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { if (claimed[addresses[i]]) continue; uint256 mintIndex = totalSupply(); _safeMint(addresses[i], mintIndex); claimed[addresses[i]] = true; } } function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initialBaseURI","type":"string"},{"internalType":"address","name":"_openSeaProxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","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":[{"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":"address[]","name":"addresses","type":"address[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b91600c9162000181565b503480156200002957600080fd5b5060405162002c0238038062002c028339810160408190526200004c9162000244565b6040518060400160405280600c81526020016b505353204d696e745061737360a01b8152506040518060400160405280600581526020016405053534d560dc1b815250620000a9620000a36200010b60201b60201c565b6200010f565b8151620000be90600190602085019062000181565b508051620000d490600290602084019062000181565b50508251620000ec9150600c90602085019062000181565b5062000103816200015f60201b6200124b1760201c565b505062000388565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b8280546200018f9062000335565b90600052602060002090601f016020900481019282620001b35760008555620001fe565b82601f10620001ce57805160ff1916838001178555620001fe565b82800160010185558215620001fe579182015b82811115620001fe578251825591602001919060010190620001e1565b506200020c92915062000210565b5090565b5b808211156200020c576000815560010162000211565b80516001600160a01b03811681146200023f57600080fd5b919050565b600080604083850312156200025857600080fd5b82516001600160401b03808211156200027057600080fd5b818501915085601f8301126200028557600080fd5b8151818111156200029a576200029a62000372565b604051601f8201601f19908116603f01168101908382118183101715620002c557620002c562000372565b81604052828152602093508884848701011115620002e257600080fd5b600091505b82821015620003065784820184015181830185015290830190620002e7565b82821115620003185760008484830101525b95506200032a91505085820162000227565b925050509250929050565b600181811c908216806200034a57607f821691505b602082108114156200036c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61286a80620003986000396000f3fe608060405234801561001057600080fd5b506004361061018d5760003560e01c80636c0360eb116100e3578063b88d4fde1161008c578063c884ef8311610066578063c884ef8314610335578063e985e9c514610358578063f2fde38b1461036b57600080fd5b8063b88d4fde146102fc578063bd075b841461030f578063c87b56dd1461032257600080fd5b80638da5cb5b116100bd5780638da5cb5b146102c357806395d89b41146102e1578063a22cb465146102e957600080fd5b80636c0360eb146102a057806370a08231146102a8578063715018a6146102bb57600080fd5b806323b872dd116101455780634f6ccce71161011f5780634f6ccce71461026757806355f804b31461027a5780636352211e1461028d57600080fd5b806323b872dd1461022e5780632f745c591461024157806342842e0e1461025457600080fd5b8063081812fc11610176578063081812fc146101cf578063095ea7b31461020757806318160ddd1461021c57600080fd5b806301ffc9a71461019257806306fdde03146101ba575b600080fd5b6101a56101a0366004612451565b61037e565b60405190151581526020015b60405180910390f35b6101c26103da565b6040516101b191906125de565b6101e26101dd3660046124f1565b61046c565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101b1565b61021a61021536600461236c565b61054b565b005b6009545b6040519081526020016101b1565b61021a61023c366004612278565b6106d8565b61022061024f36600461236c565b610779565b61021a610262366004612278565b610848565b6102206102753660046124f1565b610863565b61021a6102883660046124a8565b610921565b6101e261029b3660046124f1565b6109b9565b6101c2610a6b565b6102206102b6366004612222565b610af9565b61021a610bc7565b60005473ffffffffffffffffffffffffffffffffffffffff166101e2565b6101c2610c54565b61021a6102f7366004612339565b610c63565b61021a61030a3660046122b9565b610d7a565b61021a61031d366004612398565b610e22565b6101c26103303660046124f1565b610fb8565b6101a5610343366004612222565b600d6020526000908152604090205460ff1681565b6101a561036636600461223f565b6110c4565b61021a610379366004612222565b61111b565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806103d457506103d482611292565b92915050565b6060600180546103e99061269b565b80601f01602080910402602001604051908101604052809291908181526020018280546104159061269b565b80156104625780601f1061043757610100808354040283529160200191610462565b820191906000526020600020905b81548152906001019060200180831161044557829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610556826109b9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610519565b3373ffffffffffffffffffffffffffffffffffffffff8216148061063d575061063d81336110c4565b6106c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610519565b6106d38383611375565b505050565b6106e23382611415565b61076e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610519565b6106d3838383611558565b600061078483610af9565b8210610812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610519565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600760209081526040808320938352929052205490565b6106d383838360405180602001604052806000815250610d7a565b600061086e60095490565b82106108fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610519565b6009828154811061090f5761090f612786565b90600052602060002001549050919050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610519565b80516109b590600c906020840190612113565b5050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16806103d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610519565b600c8054610a789061269b565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa49061269b565b8015610af15780601f10610ac657610100808354040283529160200191610af1565b820191906000526020600020905b815481529060010190602001808311610ad457829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216610b9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610519565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff163314610c48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610519565b610c5260006117ca565b565b6060600280546103e99061269b565b73ffffffffffffffffffffffffffffffffffffffff8216331415610ce3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610519565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d843383611415565b610e10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610519565b610e1c8484848461183f565b50505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610ea3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610519565b60005b81518110156109b557600d6000838381518110610ec557610ec5612786565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff1682528101919091526040016000205460ff1615610f0357610fa6565b6000610f0e60095490565b9050610f33838381518110610f2557610f25612786565b6020026020010151826118e2565b6001600d6000858581518110610f4b57610f4b612786565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505b80610fb0816126ef565b915050610ea6565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff1661106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610519565b6000600c805461107b9061269b565b90501161109757604051806020016040528060008152506103d4565b61109f6118fc565b6040516020016110af9190612554565b60405160208183030381529060405292915050565b60006110d0838361190b565b156110dd575060016103d4565b73ffffffffffffffffffffffffffffffffffffffff80841660009081526006602090815260408083209386168352929052205460ff165b9392505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610519565b73ffffffffffffffffffffffffffffffffffffffff811661123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610519565b611248816117ca565b50565b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061132557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806103d457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146103d4565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906113cf826109b9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff166114c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610519565b60006114d1836109b9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061154057508373ffffffffffffffffffffffffffffffffffffffff166115288461046c565b73ffffffffffffffffffffffffffffffffffffffff16145b80611550575061155081856110c4565b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611578826109b9565b73ffffffffffffffffffffffffffffffffffffffff161461161b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610519565b73ffffffffffffffffffffffffffffffffffffffff82166116bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610519565b6116c88383836119e6565b6116d3600082611375565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600460205260408120805460019290611709908490612658565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290611744908490612640565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61184a848484611558565b61185684848484611aec565b610e1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610519565b6109b5828260405180602001604052806000815250611ceb565b6060600c80546103e99061269b565b600b546040517fc455279100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561197e57600080fd5b505afa158015611992573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b6919061248b565b73ffffffffffffffffffffffffffffffffffffffff1614156119dc5760019150506103d4565b5060009392505050565b73ffffffffffffffffffffffffffffffffffffffff8316611a4e57611a4981600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611a8b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611a8b57611a8b8382611d8e565b73ffffffffffffffffffffffffffffffffffffffff8216611aaf576106d381611e45565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146106d3576106d38282611ef4565b600073ffffffffffffffffffffffffffffffffffffffff84163b15611ce0576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611b63903390899088908890600401612595565b602060405180830381600087803b158015611b7d57600080fd5b505af1925050508015611bcb575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611bc89181019061246e565b60015b611c95573d808015611bf9576040519150601f19603f3d011682016040523d82523d6000602084013e611bfe565b606091505b508051611c8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610519565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611550565b506001949350505050565b611cf58383611f45565b611d026000848484611aec565b6106d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610519565b60006001611d9b84610af9565b611da59190612658565b600083815260086020526040902054909150808214611e055773ffffffffffffffffffffffffffffffffffffffff841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b50600091825260086020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600781528383209183525290812055565b600954600090611e5790600190612658565b6000838152600a602052604081205460098054939450909284908110611e7f57611e7f612786565b906000526020600020015490508060098381548110611ea057611ea0612786565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611ed857611ed8612757565b6001900381819060005260206000200160009055905550505050565b6000611eff83610af9565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b73ffffffffffffffffffffffffffffffffffffffff8216611fc2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610519565b60008181526003602052604090205473ffffffffffffffffffffffffffffffffffffffff161561204e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610519565b61205a600083836119e6565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290612090908490612640565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461211f9061269b565b90600052602060002090601f0160209004810192826121415760008555612187565b82601f1061215a57805160ff1916838001178555612187565b82800160010185558215612187579182015b8281111561218757825182559160200191906001019061216c565b50612193929150612197565b5090565b5b808211156121935760008155600101612198565b600067ffffffffffffffff8311156121c6576121c66127b5565b6121f760207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f860116016125f1565b905082815283838301111561220b57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561223457600080fd5b8135611114816127e4565b6000806040838503121561225257600080fd5b823561225d816127e4565b9150602083013561226d816127e4565b809150509250929050565b60008060006060848603121561228d57600080fd5b8335612298816127e4565b925060208401356122a8816127e4565b929592945050506040919091013590565b600080600080608085870312156122cf57600080fd5b84356122da816127e4565b935060208501356122ea816127e4565b925060408501359150606085013567ffffffffffffffff81111561230d57600080fd5b8501601f8101871361231e57600080fd5b61232d878235602084016121ac565b91505092959194509250565b6000806040838503121561234c57600080fd5b8235612357816127e4565b91506020830135801515811461226d57600080fd5b6000806040838503121561237f57600080fd5b823561238a816127e4565b946020939093013593505050565b600060208083850312156123ab57600080fd5b823567ffffffffffffffff808211156123c357600080fd5b818501915085601f8301126123d757600080fd5b8135818111156123e9576123e96127b5565b8060051b91506123fa8483016125f1565b8181528481019084860184860187018a101561241557600080fd5b600095505b83861015612444578035945061242f856127e4565b8483526001959095019491860191860161241a565b5098975050505050505050565b60006020828403121561246357600080fd5b813561111481612806565b60006020828403121561248057600080fd5b815161111481612806565b60006020828403121561249d57600080fd5b8151611114816127e4565b6000602082840312156124ba57600080fd5b813567ffffffffffffffff8111156124d157600080fd5b8201601f810184136124e257600080fd5b611550848235602084016121ac565b60006020828403121561250357600080fd5b5035919050565b6000815180845261252281602086016020860161266f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000825161256681846020870161266f565b7f6d657461646174612e6a736f6e00000000000000000000000000000000000000920191825250600d01919050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526125d4608083018461250a565b9695505050505050565b602081526000611114602083018461250a565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715612638576126386127b5565b604052919050565b6000821982111561265357612653612728565b500190565b60008282101561266a5761266a612728565b500390565b60005b8381101561268a578181015183820152602001612672565b83811115610e1c5750506000910152565b600181811c908216806126af57607f821691505b602082108114156126e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561272157612721612728565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff8116811461124857600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461124857600080fdfea26469706673582212200fe2bb622273a3de62f533ad82789f3454857851ffef7a13309ec2a079c81dbf64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f7261772e67697468756275736572636f6e74656e742e636f6d2f5072696d6174652d536f6369616c2d536f63696574792f6e66742d6173736574732f6d61737465722f4d696e74506173732f000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018d5760003560e01c80636c0360eb116100e3578063b88d4fde1161008c578063c884ef8311610066578063c884ef8314610335578063e985e9c514610358578063f2fde38b1461036b57600080fd5b8063b88d4fde146102fc578063bd075b841461030f578063c87b56dd1461032257600080fd5b80638da5cb5b116100bd5780638da5cb5b146102c357806395d89b41146102e1578063a22cb465146102e957600080fd5b80636c0360eb146102a057806370a08231146102a8578063715018a6146102bb57600080fd5b806323b872dd116101455780634f6ccce71161011f5780634f6ccce71461026757806355f804b31461027a5780636352211e1461028d57600080fd5b806323b872dd1461022e5780632f745c591461024157806342842e0e1461025457600080fd5b8063081812fc11610176578063081812fc146101cf578063095ea7b31461020757806318160ddd1461021c57600080fd5b806301ffc9a71461019257806306fdde03146101ba575b600080fd5b6101a56101a0366004612451565b61037e565b60405190151581526020015b60405180910390f35b6101c26103da565b6040516101b191906125de565b6101e26101dd3660046124f1565b61046c565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101b1565b61021a61021536600461236c565b61054b565b005b6009545b6040519081526020016101b1565b61021a61023c366004612278565b6106d8565b61022061024f36600461236c565b610779565b61021a610262366004612278565b610848565b6102206102753660046124f1565b610863565b61021a6102883660046124a8565b610921565b6101e261029b3660046124f1565b6109b9565b6101c2610a6b565b6102206102b6366004612222565b610af9565b61021a610bc7565b60005473ffffffffffffffffffffffffffffffffffffffff166101e2565b6101c2610c54565b61021a6102f7366004612339565b610c63565b61021a61030a3660046122b9565b610d7a565b61021a61031d366004612398565b610e22565b6101c26103303660046124f1565b610fb8565b6101a5610343366004612222565b600d6020526000908152604090205460ff1681565b6101a561036636600461223f565b6110c4565b61021a610379366004612222565b61111b565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806103d457506103d482611292565b92915050565b6060600180546103e99061269b565b80601f01602080910402602001604051908101604052809291908181526020018280546104159061269b565b80156104625780601f1061043757610100808354040283529160200191610462565b820191906000526020600020905b81548152906001019060200180831161044557829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610556826109b9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610519565b3373ffffffffffffffffffffffffffffffffffffffff8216148061063d575061063d81336110c4565b6106c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610519565b6106d38383611375565b505050565b6106e23382611415565b61076e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610519565b6106d3838383611558565b600061078483610af9565b8210610812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610519565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600760209081526040808320938352929052205490565b6106d383838360405180602001604052806000815250610d7a565b600061086e60095490565b82106108fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610519565b6009828154811061090f5761090f612786565b90600052602060002001549050919050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610519565b80516109b590600c906020840190612113565b5050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16806103d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610519565b600c8054610a789061269b565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa49061269b565b8015610af15780601f10610ac657610100808354040283529160200191610af1565b820191906000526020600020905b815481529060010190602001808311610ad457829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216610b9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610519565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff163314610c48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610519565b610c5260006117ca565b565b6060600280546103e99061269b565b73ffffffffffffffffffffffffffffffffffffffff8216331415610ce3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610519565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d843383611415565b610e10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610519565b610e1c8484848461183f565b50505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610ea3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610519565b60005b81518110156109b557600d6000838381518110610ec557610ec5612786565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff1682528101919091526040016000205460ff1615610f0357610fa6565b6000610f0e60095490565b9050610f33838381518110610f2557610f25612786565b6020026020010151826118e2565b6001600d6000858581518110610f4b57610f4b612786565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505b80610fb0816126ef565b915050610ea6565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff1661106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610519565b6000600c805461107b9061269b565b90501161109757604051806020016040528060008152506103d4565b61109f6118fc565b6040516020016110af9190612554565b60405160208183030381529060405292915050565b60006110d0838361190b565b156110dd575060016103d4565b73ffffffffffffffffffffffffffffffffffffffff80841660009081526006602090815260408083209386168352929052205460ff165b9392505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610519565b73ffffffffffffffffffffffffffffffffffffffff811661123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610519565b611248816117ca565b50565b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061132557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806103d457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146103d4565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906113cf826109b9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff166114c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610519565b60006114d1836109b9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061154057508373ffffffffffffffffffffffffffffffffffffffff166115288461046c565b73ffffffffffffffffffffffffffffffffffffffff16145b80611550575061155081856110c4565b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611578826109b9565b73ffffffffffffffffffffffffffffffffffffffff161461161b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610519565b73ffffffffffffffffffffffffffffffffffffffff82166116bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610519565b6116c88383836119e6565b6116d3600082611375565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600460205260408120805460019290611709908490612658565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290611744908490612640565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61184a848484611558565b61185684848484611aec565b610e1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610519565b6109b5828260405180602001604052806000815250611ceb565b6060600c80546103e99061269b565b600b546040517fc455279100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561197e57600080fd5b505afa158015611992573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b6919061248b565b73ffffffffffffffffffffffffffffffffffffffff1614156119dc5760019150506103d4565b5060009392505050565b73ffffffffffffffffffffffffffffffffffffffff8316611a4e57611a4981600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611a8b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611a8b57611a8b8382611d8e565b73ffffffffffffffffffffffffffffffffffffffff8216611aaf576106d381611e45565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146106d3576106d38282611ef4565b600073ffffffffffffffffffffffffffffffffffffffff84163b15611ce0576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611b63903390899088908890600401612595565b602060405180830381600087803b158015611b7d57600080fd5b505af1925050508015611bcb575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611bc89181019061246e565b60015b611c95573d808015611bf9576040519150601f19603f3d011682016040523d82523d6000602084013e611bfe565b606091505b508051611c8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610519565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611550565b506001949350505050565b611cf58383611f45565b611d026000848484611aec565b6106d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610519565b60006001611d9b84610af9565b611da59190612658565b600083815260086020526040902054909150808214611e055773ffffffffffffffffffffffffffffffffffffffff841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b50600091825260086020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600781528383209183525290812055565b600954600090611e5790600190612658565b6000838152600a602052604081205460098054939450909284908110611e7f57611e7f612786565b906000526020600020015490508060098381548110611ea057611ea0612786565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611ed857611ed8612757565b6001900381819060005260206000200160009055905550505050565b6000611eff83610af9565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b73ffffffffffffffffffffffffffffffffffffffff8216611fc2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610519565b60008181526003602052604090205473ffffffffffffffffffffffffffffffffffffffff161561204e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610519565b61205a600083836119e6565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290612090908490612640565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461211f9061269b565b90600052602060002090601f0160209004810192826121415760008555612187565b82601f1061215a57805160ff1916838001178555612187565b82800160010185558215612187579182015b8281111561218757825182559160200191906001019061216c565b50612193929150612197565b5090565b5b808211156121935760008155600101612198565b600067ffffffffffffffff8311156121c6576121c66127b5565b6121f760207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f860116016125f1565b905082815283838301111561220b57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561223457600080fd5b8135611114816127e4565b6000806040838503121561225257600080fd5b823561225d816127e4565b9150602083013561226d816127e4565b809150509250929050565b60008060006060848603121561228d57600080fd5b8335612298816127e4565b925060208401356122a8816127e4565b929592945050506040919091013590565b600080600080608085870312156122cf57600080fd5b84356122da816127e4565b935060208501356122ea816127e4565b925060408501359150606085013567ffffffffffffffff81111561230d57600080fd5b8501601f8101871361231e57600080fd5b61232d878235602084016121ac565b91505092959194509250565b6000806040838503121561234c57600080fd5b8235612357816127e4565b91506020830135801515811461226d57600080fd5b6000806040838503121561237f57600080fd5b823561238a816127e4565b946020939093013593505050565b600060208083850312156123ab57600080fd5b823567ffffffffffffffff808211156123c357600080fd5b818501915085601f8301126123d757600080fd5b8135818111156123e9576123e96127b5565b8060051b91506123fa8483016125f1565b8181528481019084860184860187018a101561241557600080fd5b600095505b83861015612444578035945061242f856127e4565b8483526001959095019491860191860161241a565b5098975050505050505050565b60006020828403121561246357600080fd5b813561111481612806565b60006020828403121561248057600080fd5b815161111481612806565b60006020828403121561249d57600080fd5b8151611114816127e4565b6000602082840312156124ba57600080fd5b813567ffffffffffffffff8111156124d157600080fd5b8201601f810184136124e257600080fd5b611550848235602084016121ac565b60006020828403121561250357600080fd5b5035919050565b6000815180845261252281602086016020860161266f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000825161256681846020870161266f565b7f6d657461646174612e6a736f6e00000000000000000000000000000000000000920191825250600d01919050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526125d4608083018461250a565b9695505050505050565b602081526000611114602083018461250a565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715612638576126386127b5565b604052919050565b6000821982111561265357612653612728565b500190565b60008282101561266a5761266a612728565b500390565b60005b8381101561268a578181015183820152602001612672565b83811115610e1c5750506000910152565b600181811c908216806126af57607f821691505b602082108114156126e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561272157612721612728565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff8116811461124857600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461124857600080fdfea26469706673582212200fe2bb622273a3de62f533ad82789f3454857851ffef7a13309ec2a079c81dbf64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f7261772e67697468756275736572636f6e74656e742e636f6d2f5072696d6174652d536f6369616c2d536f63696574792f6e66742d6173736574732f6d61737465722f4d696e74506173732f000000000000000000000000
-----Decoded View---------------
Arg [0] : _initialBaseURI (string): https://raw.githubusercontent.com/Primate-Social-Society/nft-assets/master/MintPass/
Arg [1] : _openSeaProxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000054
Arg [3] : 68747470733a2f2f7261772e67697468756275736572636f6e74656e742e636f
Arg [4] : 6d2f5072696d6174652d536f6369616c2d536f63696574792f6e66742d617373
Arg [5] : 6574732f6d61737465722f4d696e74506173732f000000000000000000000000
Deployed Bytecode Sourcemap
46248:1801:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38816:300;;;;;;:::i;:::-;;:::i;:::-;;;7293:14:1;;7286:22;7268:41;;7256:2;7241:18;38816:300:0;;;;;;;;24956:100;;;:::i;:::-;;;;;;;:::i;26649:308::-;;;;;;:::i;:::-;;:::i;:::-;;;6557:42:1;6545:55;;;6527:74;;6515:2;6500:18;26649:308:0;6381:226:1;26172:411:0;;;;;;:::i;:::-;;:::i;:::-;;39619:113;39707:10;:17;39619:113;;;14897:25:1;;;14885:2;14870:18;39619:113:0;14751:177:1;27708:376:0;;;;;;:::i;:::-;;:::i;39200:343::-;;;;;;:::i;:::-;;:::i;28155:185::-;;;;;;:::i;:::-;;:::i;39809:320::-;;;;;;:::i;:::-;;:::i;47940:106::-;;;;;;:::i;:::-;;:::i;24563:326::-;;;;;;:::i;:::-;;:::i;46328:26::-;;;:::i;24206:295::-;;;;;;:::i;:::-;;:::i;2614:94::-;;;:::i;1963:87::-;2009:7;2036:6;;;1963:87;;25125:104;;;:::i;27029:327::-;;;;;;:::i;:::-;;:::i;28411:365::-;;;;;;:::i;:::-;;:::i;47602:330::-;;;;;;:::i;:::-;;:::i;47055:423::-;;;;;;:::i;:::-;;:::i;46363:39::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;46709:338;;;;;;:::i;:::-;;:::i;2863:229::-;;;;;;:::i;:::-;;:::i;38816:300::-;38963:4;39005:50;;;39020:35;39005:50;;:103;;;39072:36;39096:11;39072:23;:36::i;:::-;38985:123;38816:300;-1:-1:-1;;38816:300:0:o;24956:100::-;25010:13;25043:5;25036:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24956:100;:::o;26649:308::-;26770:7;30412:16;;;:7;:16;;;;;;:30;:16;26795:110;;;;;;;12120:2:1;26795:110:0;;;12102:21:1;12159:2;12139:18;;;12132:30;12198:34;12178:18;;;12171:62;12269:14;12249:18;;;12242:42;12301:19;;26795:110:0;;;;;;;;;-1:-1:-1;26925:24:0;;;;:15;:24;;;;;;;;;26649:308::o;26172:411::-;26253:13;26269:23;26284:7;26269:14;:23::i;:::-;26253:39;;26317:5;26311:11;;:2;:11;;;;26303:57;;;;;;;13720:2:1;26303:57:0;;;13702:21:1;13759:2;13739:18;;;13732:30;13798:34;13778:18;;;13771:62;13869:3;13849:18;;;13842:31;13890:19;;26303:57:0;13518:397:1;26303:57:0;806:10;26395:21;;;;;:62;;-1:-1:-1;26420:37:0;26437:5;806:10;46709:338;:::i;26420:37::-;26373:168;;;;;;;10513:2:1;26373:168:0;;;10495:21:1;10552:2;10532:18;;;10525:30;10591:34;10571:18;;;10564:62;10662:26;10642:18;;;10635:54;10706:19;;26373:168:0;10311:420:1;26373:168:0;26554:21;26563:2;26567:7;26554:8;:21::i;:::-;26242:341;26172:411;;:::o;27708:376::-;27917:41;806:10;27950:7;27917:18;:41::i;:::-;27895:140;;;;;;;14122:2:1;27895:140:0;;;14104:21:1;14161:2;14141:18;;;14134:30;14200:34;14180:18;;;14173:62;14271:19;14251:18;;;14244:47;14308:19;;27895:140:0;13920:413:1;27895:140:0;28048:28;28058:4;28064:2;28068:7;28048:9;:28::i;39200:343::-;39342:7;39397:23;39414:5;39397:16;:23::i;:::-;39389:5;:31;39367:124;;;;;;;7746:2:1;39367:124:0;;;7728:21:1;7785:2;7765:18;;;7758:30;7824:34;7804:18;;;7797:62;7895:13;7875:18;;;7868:41;7926:19;;39367:124:0;7544:407:1;39367:124:0;-1:-1:-1;39509:19:0;;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39200:343::o;28155:185::-;28293:39;28310:4;28316:2;28320:7;28293:39;;;;;;;;;;;;:16;:39::i;39809:320::-;39929:7;39984:30;39707:10;:17;;39619:113;39984:30;39976:5;:38;39954:132;;;;;;;14540:2:1;39954:132:0;;;14522:21:1;14579:2;14559:18;;;14552:30;14618:34;14598:18;;;14591:62;14689:14;14669:18;;;14662:42;14721:19;;39954:132:0;14338:408:1;39954:132:0;40104:10;40115:5;40104:17;;;;;;;;:::i;:::-;;;;;;;;;40097:24;;39809:320;;;:::o;47940:106::-;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;12533:2:1;2175:68:0;;;12515:21:1;;;12552:18;;;12545:30;12611:34;12591:18;;;12584:62;12663:18;;2175:68:0;12331:356:1;2175:68:0;48017:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47940:106:::0;:::o;24563:326::-;24680:7;24721:16;;;:7;:16;;;;;;;;24770:19;24748:110;;;;;;;11349:2:1;24748:110:0;;;11331:21:1;11388:2;11368:18;;;11361:30;11427:34;11407:18;;;11400:62;11498:11;11478:18;;;11471:39;11527:19;;24748:110:0;11147:405:1;46328:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24206:295::-;24323:7;24370:19;;;24348:111;;;;;;;10938:2:1;24348:111:0;;;10920:21:1;10977:2;10957:18;;;10950:30;11016:34;10996:18;;;10989:62;11087:12;11067:18;;;11060:40;11117:19;;24348:111:0;10736:406:1;24348:111:0;-1:-1:-1;24477:16:0;;;;;;:9;:16;;;;;;;24206:295::o;2614:94::-;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;12533:2:1;2175:68:0;;;12515:21:1;;;12552:18;;;12545:30;12611:34;12591:18;;;12584:62;12663:18;;2175:68:0;12331:356:1;2175:68:0;2679:21:::1;2697:1;2679:9;:21::i;:::-;2614:94::o:0;25125:104::-;25181:13;25214:7;25207:14;;;;;:::i;27029:327::-;27164:24;;;806:10;27164:24;;27156:62;;;;;;;9746:2:1;27156:62:0;;;9728:21:1;9785:2;9765:18;;;9758:30;9824:27;9804:18;;;9797:55;9869:18;;27156:62:0;9544:349:1;27156:62:0;806:10;27231:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;27300:48;;7268:41:1;;;27231:42:0;;806:10;27300:48;;7241:18:1;27300:48:0;;;;;;;27029:327;;:::o;28411:365::-;28600:41;806:10;28633:7;28600:18;:41::i;:::-;28578:140;;;;;;;14122:2:1;28578:140:0;;;14104:21:1;14161:2;14141:18;;;14134:30;14200:34;14180:18;;;14173:62;14271:19;14251:18;;;14244:47;14308:19;;28578:140:0;13920:413:1;28578:140:0;28729:39;28743:4;28749:2;28753:7;28762:5;28729:13;:39::i;:::-;28411:365;;;;:::o;47602:330::-;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;12533:2:1;2175:68:0;;;12515:21:1;;;12552:18;;;12545:30;12611:34;12591:18;;;12584:62;12663:18;;2175:68:0;12331:356:1;2175:68:0;47679:9:::1;47674:251;47698:9;:16;47694:1;:20;47674:251;;;47740:7;:21;47748:9;47758:1;47748:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;47740:21:::1;;::::0;;;::::1;::::0;;;;;;-1:-1:-1;47740:21:0;;::::1;;47736:35;;;47763:8;;47736:35;47788:17;47808:13;39707:10:::0;:17;;39619:113;47808:13:::1;47788:33;;47836:34;47846:9;47856:1;47846:12;;;;;;;;:::i;:::-;;;;;;;47860:9;47836;:34::i;:::-;47909:4;47885:7;:21;47893:9;47903:1;47893:12;;;;;;;;:::i;:::-;;;;;;;47885:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;47721:204;47674:251;47716:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47674:251;;47055:423:::0;30388:4;30412:16;;;:7;:16;;;;;;47173:13;;30412:30;:16;47204:113;;;;;;;13304:2:1;47204:113:0;;;13286:21:1;13343:2;13323:18;;;13316:30;13382:34;13362:18;;;13355:62;13453:17;13433:18;;;13426:45;13488:19;;47204:113:0;13102:411:1;47204:113:0;47374:1;47356:7;47350:21;;;;;:::i;:::-;;;:25;:120;;;;;;;;;;;;;;;;;47419:10;:8;:10::i;:::-;47402:45;;;;;;;;:::i;:::-;;;;;;;;;;;;;47330:140;47055:423;-1:-1:-1;;47055:423:0:o;46709:338::-;46862:4;46888:52;46924:5;46931:8;46888:35;:52::i;:::-;46884:96;;;-1:-1:-1;46964:4:0;46957:11;;46884:96;27598:25;;;;27569:4;27598:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;46999:40;46992:47;46709:338;-1:-1:-1;;;46709:338:0:o;2863:229::-;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;12533:2:1;2175:68:0;;;12515:21:1;;;12552:18;;;12545:30;12611:34;12591:18;;;12584:62;12663:18;;2175:68:0;12331:356:1;2175:68:0;2966:22:::1;::::0;::::1;2944:110;;;::::0;::::1;::::0;;8577:2:1;2944:110:0::1;::::0;::::1;8559:21:1::0;8616:2;8596:18;;;8589:30;8655:34;8635:18;;;8628:62;8726:8;8706:18;;;8699:36;8752:19;;2944:110:0::1;8375:402:1::0;2944:110:0::1;3065:19;3075:8;3065:9;:19::i;:::-;2863:229:::0;:::o;45528:172::-;45634:27;:58;;;;;;;;;;;;;;;45528:172::o;23787:355::-;23934:4;23976:40;;;23991:25;23976:40;;:105;;-1:-1:-1;24033:48:0;;;24048:33;24033:48;23976:105;:158;;;-1:-1:-1;22427:25:0;22412:40;;;;24098:36;22253:207;34446:174;34521:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;34575:23;34521:24;34575:14;:23::i;:::-;34566:46;;;;;;;;;;;;34446:174;;:::o;30617:452::-;30746:4;30412:16;;;:7;:16;;;;;;:30;:16;30768:110;;;;;;;10100:2:1;30768:110:0;;;10082:21:1;10139:2;10119:18;;;10112:30;10178:34;10158:18;;;10151:62;10249:14;10229:18;;;10222:42;10281:19;;30768:110:0;9898:408:1;30768:110:0;30889:13;30905:23;30920:7;30905:14;:23::i;:::-;30889:39;;30958:5;30947:16;;:7;:16;;;:64;;;;31004:7;30980:31;;:20;30992:7;30980:11;:20::i;:::-;:31;;;30947:64;:113;;;;31028:32;31045:5;31052:7;31028:16;:32::i;:::-;30939:122;30617:452;-1:-1:-1;;;;30617:452:0:o;33713:615::-;33886:4;33859:31;;:23;33874:7;33859:14;:23::i;:::-;:31;;;33837:122;;;;;;;12894:2:1;33837:122:0;;;12876:21:1;12933:2;12913:18;;;12906:30;12972:34;12952:18;;;12945:62;13043:11;13023:18;;;13016:39;13072:19;;33837:122:0;12692:405:1;33837:122:0;33978:16;;;33970:65;;;;;;;9341:2:1;33970:65:0;;;9323:21:1;9380:2;9360:18;;;9353:30;9419:34;9399:18;;;9392:62;9490:6;9470:18;;;9463:34;9514:19;;33970:65:0;9139:400:1;33970:65:0;34048:39;34069:4;34075:2;34079:7;34048:20;:39::i;:::-;34152:29;34169:1;34173:7;34152:8;:29::i;:::-;34194:15;;;;;;;:9;:15;;;;;:20;;34213:1;;34194:15;:20;;34213:1;;34194:20;:::i;:::-;;;;-1:-1:-1;;34225:13:0;;;;;;;:9;:13;;;;;:18;;34242:1;;34225:13;:18;;34242:1;;34225:18;:::i;:::-;;;;-1:-1:-1;;34254:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;34293:27;;34254:16;;34293:27;;;;;;;33713:615;;;:::o;3100:173::-;3156:16;3175:6;;;3192:17;;;;;;;;;;3225:40;;3175:6;;;;;;;3225:40;;3156:16;3225:40;3145:128;3100:173;:::o;29658:352::-;29815:28;29825:4;29831:2;29835:7;29815:9;:28::i;:::-;29876:48;29899:4;29905:2;29909:7;29918:5;29876:22;:48::i;:::-;29854:148;;;;;;;8158:2:1;29854:148:0;;;8140:21:1;8197:2;8177:18;;;8170:30;8236:34;8216:18;;;8209:62;8307:20;8287:18;;;8280:48;8345:19;;29854:148:0;7956:414:1;31411:110:0;31487:26;31497:2;31501:7;31487:26;;;;;;;;;;;;:9;:26::i;47486:108::-;47546:13;47579:7;47572:14;;;;;:::i;45708:469::-;45996:27;;46057:35;;;;;45996:27;6545:55:1;;;46057:35:0;;;6527:74:1;45832:4:0;;45996:27;;;46049:56;;;;45996:27;;46057:28;;6500:18:1;;46057:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46049:56;;;46045:100;;;46129:4;46122:11;;;;;46045:100;-1:-1:-1;46164:5:0;;45708:469;-1:-1:-1;;;45708:469:0:o;40742:589::-;40948:18;;;40944:187;;40983:40;41015:7;42158:10;:17;;42131:24;;;;:15;:24;;;;;:44;;;42186:24;;;;;;;;;;;;42054:164;40983:40;40944:187;;;41053:2;41045:10;;:4;:10;;;41041:90;;41072:47;41105:4;41111:7;41072:32;:47::i;:::-;41145:16;;;41141:183;;41178:45;41215:7;41178:36;:45::i;41141:183::-;41251:4;41245:10;;:2;:10;;;41241:83;;41272:40;41300:2;41304:7;41272:27;:40::i;35185:980::-;35340:4;35361:13;;;11876:20;11924:8;35357:801;;35414:175;;;;;:36;;;;;;:175;;806:10;;35508:4;;35535:7;;35565:5;;35414:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35414:175:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35393:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35772:13:0;;35768:320;;35815:108;;;;;8158:2:1;35815:108:0;;;8140:21:1;8197:2;8177:18;;;8170:30;8236:34;8216:18;;;8209:62;8307:20;8287:18;;;8280:48;8345:19;;35815:108:0;7956:414:1;35768:320:0;36038:6;36032:13;36023:6;36019:2;36015:15;36008:38;35393:710;35653:51;;35663:41;35653:51;;-1:-1:-1;35646:58:0;;35357:801;-1:-1:-1;36142:4:0;35185:980;;;;;;:::o;31748:321::-;31878:18;31884:2;31888:7;31878:5;:18::i;:::-;31929:54;31960:1;31964:2;31968:7;31977:5;31929:22;:54::i;:::-;31907:154;;;;;;;8158:2:1;31907:154:0;;;8140:21:1;8197:2;8177:18;;;8170:30;8236:34;8216:18;;;8209:62;8307:20;8287:18;;;8280:48;8345:19;;31907:154:0;7956:414:1;42845:1002:0;43125:22;43175:1;43150:22;43167:4;43150:16;:22::i;:::-;:26;;;;:::i;:::-;43187:18;43208:26;;;:17;:26;;;;;;43125:51;;-1:-1:-1;43341:28:0;;;43337:328;;43408:18;;;43386:19;43408:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43459:30;;;;;;:44;;;43576:30;;:17;:30;;;;;:43;;;43337:328;-1:-1:-1;43761:26:0;;;;:17;:26;;;;;;;;43754:33;;;43805:18;;;;;;:12;:18;;;;;:34;;;;;;;43798:41;42845:1002::o;44142:1079::-;44420:10;:17;44395:22;;44420:21;;44440:1;;44420:21;:::i;:::-;44452:18;44473:24;;;:15;:24;;;;;;44846:10;:26;;44395:46;;-1:-1:-1;44473:24:0;;44395:46;;44846:26;;;;;;:::i;:::-;;;;;;;;;44824:48;;44910:11;44885:10;44896;44885:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44990:28;;;:15;:28;;;;;;;:41;;;45162:24;;;;;45155:31;45197:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44213:1008;;;44142:1079;:::o;41632:221::-;41717:14;41734:20;41751:2;41734:16;:20::i;:::-;41765:16;;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41810:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41632:221:0:o;32405:382::-;32485:16;;;32477:61;;;;;;;11759:2:1;32477:61:0;;;11741:21:1;;;11778:18;;;11771:30;11837:34;11817:18;;;11810:62;11889:18;;32477:61:0;11557:356:1;32477:61:0;30388:4;30412:16;;;:7;:16;;;;;;:30;:16;:30;32549:58;;;;;;;8984:2:1;32549:58:0;;;8966:21:1;9023:2;9003:18;;;8996:30;9062;9042:18;;;9035:58;9110:18;;32549:58:0;8782:352:1;32549:58:0;32620:45;32649:1;32653:2;32657:7;32620:20;:45::i;:::-;32678:13;;;;;;;:9;:13;;;;;:18;;32695:1;;32678:13;:18;;32695:1;;32678:18;:::i;:::-;;;;-1:-1:-1;;32707:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;32746:33;;32707:16;;;32746:33;;32707:16;;32746:33;32405:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:465:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:116;282:4;213:66;208:2;200:6;196:15;192:88;188:99;172:116;:::i;:::-;163:125;;311:6;304:5;297:21;351:3;342:6;337:3;333:16;330:25;327:45;;;368:1;365;358:12;327:45;417:6;412:3;405:4;398:5;394:16;381:43;471:1;464:4;455:6;448:5;444:18;440:29;433:40;14:465;;;;;:::o;484:247::-;543:6;596:2;584:9;575:7;571:23;567:32;564:52;;;612:1;609;602:12;564:52;651:9;638:23;670:31;695:5;670:31;:::i;736:388::-;804:6;812;865:2;853:9;844:7;840:23;836:32;833:52;;;881:1;878;871:12;833:52;920:9;907:23;939:31;964:5;939:31;:::i;:::-;989:5;-1:-1:-1;1046:2:1;1031:18;;1018:32;1059:33;1018:32;1059:33;:::i;:::-;1111:7;1101:17;;;736:388;;;;;:::o;1129:456::-;1206:6;1214;1222;1275:2;1263:9;1254:7;1250:23;1246:32;1243:52;;;1291:1;1288;1281:12;1243:52;1330:9;1317:23;1349:31;1374:5;1349:31;:::i;:::-;1399:5;-1:-1:-1;1456:2:1;1441:18;;1428:32;1469:33;1428:32;1469:33;:::i;:::-;1129:456;;1521:7;;-1:-1:-1;;;1575:2:1;1560:18;;;;1547:32;;1129:456::o;1590:794::-;1685:6;1693;1701;1709;1762:3;1750:9;1741:7;1737:23;1733:33;1730:53;;;1779:1;1776;1769:12;1730:53;1818:9;1805:23;1837:31;1862:5;1837:31;:::i;:::-;1887:5;-1:-1:-1;1944:2:1;1929:18;;1916:32;1957:33;1916:32;1957:33;:::i;:::-;2009:7;-1:-1:-1;2063:2:1;2048:18;;2035:32;;-1:-1:-1;2118:2:1;2103:18;;2090:32;2145:18;2134:30;;2131:50;;;2177:1;2174;2167:12;2131:50;2200:22;;2253:4;2245:13;;2241:27;-1:-1:-1;2231:55:1;;2282:1;2279;2272:12;2231:55;2305:73;2370:7;2365:2;2352:16;2347:2;2343;2339:11;2305:73;:::i;:::-;2295:83;;;1590:794;;;;;;;:::o;2389:416::-;2454:6;2462;2515:2;2503:9;2494:7;2490:23;2486:32;2483:52;;;2531:1;2528;2521:12;2483:52;2570:9;2557:23;2589:31;2614:5;2589:31;:::i;:::-;2639:5;-1:-1:-1;2696:2:1;2681:18;;2668:32;2738:15;;2731:23;2719:36;;2709:64;;2769:1;2766;2759:12;2810:315;2878:6;2886;2939:2;2927:9;2918:7;2914:23;2910:32;2907:52;;;2955:1;2952;2945:12;2907:52;2994:9;2981:23;3013:31;3038:5;3013:31;:::i;:::-;3063:5;3115:2;3100:18;;;;3087:32;;-1:-1:-1;;;2810:315:1:o;3130:1032::-;3214:6;3245:2;3288;3276:9;3267:7;3263:23;3259:32;3256:52;;;3304:1;3301;3294:12;3256:52;3344:9;3331:23;3373:18;3414:2;3406:6;3403:14;3400:34;;;3430:1;3427;3420:12;3400:34;3468:6;3457:9;3453:22;3443:32;;3513:7;3506:4;3502:2;3498:13;3494:27;3484:55;;3535:1;3532;3525:12;3484:55;3571:2;3558:16;3593:2;3589;3586:10;3583:36;;;3599:18;;:::i;:::-;3645:2;3642:1;3638:10;3628:20;;3668:28;3692:2;3688;3684:11;3668:28;:::i;:::-;3730:15;;;3761:12;;;;3793:11;;;3823;;;3819:20;;3816:33;-1:-1:-1;3813:53:1;;;3862:1;3859;3852:12;3813:53;3884:1;3875:10;;3894:238;3908:2;3905:1;3902:9;3894:238;;;3979:3;3966:17;3953:30;;3996:31;4021:5;3996:31;:::i;:::-;4040:18;;;3926:1;3919:9;;;;;4078:12;;;;4110;;3894:238;;;-1:-1:-1;4151:5:1;3130:1032;-1:-1:-1;;;;;;;;3130:1032:1:o;4167:245::-;4225:6;4278:2;4266:9;4257:7;4253:23;4249:32;4246:52;;;4294:1;4291;4284:12;4246:52;4333:9;4320:23;4352:30;4376:5;4352:30;:::i;4417:249::-;4486:6;4539:2;4527:9;4518:7;4514:23;4510:32;4507:52;;;4555:1;4552;4545:12;4507:52;4587:9;4581:16;4606:30;4630:5;4606:30;:::i;4671:287::-;4777:6;4830:2;4818:9;4809:7;4805:23;4801:32;4798:52;;;4846:1;4843;4836:12;4798:52;4878:9;4872:16;4897:31;4922:5;4897:31;:::i;4963:450::-;5032:6;5085:2;5073:9;5064:7;5060:23;5056:32;5053:52;;;5101:1;5098;5091:12;5053:52;5141:9;5128:23;5174:18;5166:6;5163:30;5160:50;;;5206:1;5203;5196:12;5160:50;5229:22;;5282:4;5274:13;;5270:27;-1:-1:-1;5260:55:1;;5311:1;5308;5301:12;5260:55;5334:73;5399:7;5394:2;5381:16;5376:2;5372;5368:11;5334:73;:::i;5418:180::-;5477:6;5530:2;5518:9;5509:7;5505:23;5501:32;5498:52;;;5546:1;5543;5536:12;5498:52;-1:-1:-1;5569:23:1;;5418:180;-1:-1:-1;5418:180:1:o;5603:316::-;5644:3;5682:5;5676:12;5709:6;5704:3;5697:19;5725:63;5781:6;5774:4;5769:3;5765:14;5758:4;5751:5;5747:16;5725:63;:::i;:::-;5833:2;5821:15;5838:66;5817:88;5808:98;;;;5908:4;5804:109;;5603:316;-1:-1:-1;;5603:316:1:o;5924:452::-;6156:3;6194:6;6188:13;6210:53;6256:6;6251:3;6244:4;6236:6;6232:17;6210:53;:::i;:::-;6324:15;6285:16;;6310:30;;;-1:-1:-1;6367:2:1;6356:14;;5924:452;-1:-1:-1;5924:452:1:o;6612:511::-;6806:4;6835:42;6916:2;6908:6;6904:15;6893:9;6886:34;6968:2;6960:6;6956:15;6951:2;6940:9;6936:18;6929:43;;7008:6;7003:2;6992:9;6988:18;6981:34;7051:3;7046:2;7035:9;7031:18;7024:31;7072:45;7112:3;7101:9;7097:19;7089:6;7072:45;:::i;:::-;7064:53;6612:511;-1:-1:-1;;;;;;6612:511:1:o;7320:219::-;7469:2;7458:9;7451:21;7432:4;7489:44;7529:2;7518:9;7514:18;7506:6;7489:44;:::i;14933:334::-;15004:2;14998:9;15060:2;15050:13;;15065:66;15046:86;15034:99;;15163:18;15148:34;;15184:22;;;15145:62;15142:88;;;15210:18;;:::i;:::-;15246:2;15239:22;14933:334;;-1:-1:-1;14933:334:1:o;15272:128::-;15312:3;15343:1;15339:6;15336:1;15333:13;15330:39;;;15349:18;;:::i;:::-;-1:-1:-1;15385:9:1;;15272:128::o;15405:125::-;15445:4;15473:1;15470;15467:8;15464:34;;;15478:18;;:::i;:::-;-1:-1:-1;15515:9:1;;15405:125::o;15535:258::-;15607:1;15617:113;15631:6;15628:1;15625:13;15617:113;;;15707:11;;;15701:18;15688:11;;;15681:39;15653:2;15646:10;15617:113;;;15748:6;15745:1;15742:13;15739:48;;;-1:-1:-1;;15783:1:1;15765:16;;15758:27;15535:258::o;15798:437::-;15877:1;15873:12;;;;15920;;;15941:61;;15995:4;15987:6;15983:17;15973:27;;15941:61;16048:2;16040:6;16037:14;16017:18;16014:38;16011:218;;;16085:77;16082:1;16075:88;16186:4;16183:1;16176:15;16214:4;16211:1;16204:15;16011:218;;15798:437;;;:::o;16240:195::-;16279:3;16310:66;16303:5;16300:77;16297:103;;;16380:18;;:::i;:::-;-1:-1:-1;16427:1:1;16416:13;;16240:195::o;16440:184::-;16492:77;16489:1;16482:88;16589:4;16586:1;16579:15;16613:4;16610:1;16603:15;16629:184;16681:77;16678:1;16671:88;16778:4;16775:1;16768:15;16802:4;16799:1;16792:15;16818:184;16870:77;16867:1;16860:88;16967:4;16964:1;16957:15;16991:4;16988:1;16981:15;17007:184;17059:77;17056:1;17049:88;17156:4;17153:1;17146:15;17180:4;17177:1;17170:15;17196:154;17282:42;17275:5;17271:54;17264:5;17261:65;17251:93;;17340:1;17337;17330:12;17355:177;17440:66;17433:5;17429:78;17422:5;17419:89;17409:117;;17522:1;17519;17512:12
Swarm Source
ipfs://0fe2bb622273a3de62f533ad82789f3454857851ffef7a13309ec2a079c81dbf
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.