Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
2,000 STEPN 3rd Realm
Holders
866
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 STEPN 3rd RealmLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
STEPN3rdRealm
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-18 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/STEPN3rdRealm.sol pragma solidity ^0.8.14; contract STEPN3rdRealm is ERC721A, Ownable { uint256 public mintPrice = 0.009 ether; string _baseTokenURI; bool public isActive = false; uint256 public MAX_SUPPLY = 2000; uint256 public constant FREE_MAX_SUPPLY = 1500; uint256 public constant MAX_FREE_PER_WALLET = 2; uint256 public constant MAX_FREE_PER_TX = 2; uint256 public maximumAllowedTokensPerPurchase = 20; uint256 public maximumAllowedTokensPerWallet = 20; constructor(string memory baseURI) ERC721A("STEPN3rdRealm", "STEPN 3rd Realm") { setBaseURI(baseURI); } modifier saleIsOpen { require(totalSupply() <= MAX_SUPPLY, "Sale has ended."); _; } function setMaximumAllowedTokens(uint256 _count) public onlyOwner { maximumAllowedTokensPerPurchase = _count; } function setMaximumAllowedTokensPerWallet(uint256 _count) public onlyOwner { maximumAllowedTokensPerWallet = _count; } function setMaxMintSupply(uint256 maxMintSupply) external onlyOwner { MAX_SUPPLY = maxMintSupply; } function setPrice(uint256 _price) public onlyOwner { mintPrice = _price; } function toggleSaleStatus() public onlyOwner { isActive = !isActive; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function mint(uint256 _count) public payable saleIsOpen { uint256 mintIndex = totalSupply(); require(isActive, "Sale is not active currently."); require(mintIndex + _count <= MAX_SUPPLY, "Total supply exceeded."); require(balanceOf(msg.sender) + _count <= maximumAllowedTokensPerWallet, "Max holding cap reached."); require( _count <= maximumAllowedTokensPerPurchase, "Exceeds maximum allowed tokens"); if(mintIndex < FREE_MAX_SUPPLY) { require(balanceOf(msg.sender) + _count <= MAX_FREE_PER_WALLET, "Max FREE holding cap reached."); require( _count <= MAX_FREE_PER_TX, "Exceeds FREE allowed tokens per TX"); } if(mintIndex > FREE_MAX_SUPPLY) { if(balanceOf(msg.sender) >= 2) { require(msg.value >= mintPrice * _count, "Insufficient ETH amount sent."); } } _safeMint(msg.sender, _count); } function withdraw() external onlyOwner { uint balance = address(this).balance; payable(owner()).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052661ff973cafa80006009556000600b60006101000a81548160ff0219169083151502179055506107d0600c556014600d556014600e553480156200004757600080fd5b50604051620034483803806200344883398181016040528101906200006d919062000562565b6040518060400160405280600d81526020017f535445504e3372645265616c6d000000000000000000000000000000000000008152506040518060400160405280600f81526020017f535445504e20337264205265616c6d00000000000000000000000000000000008152508160029080519060200190620000f192919062000315565b5080600390805190602001906200010a92919062000315565b506200011b6200015b60201b60201c565b600081905550505062000143620001376200016060201b60201c565b6200016860201b60201c565b62000154816200022e60201b60201c565b506200069a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200023e6200025a60201b60201c565b80600a90805190602001906200025692919062000315565b5050565b6200026a6200016060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000290620002eb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e09062000614565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003239062000665565b90600052602060002090601f01602090048101928262000347576000855562000393565b82601f106200036257805160ff191683800117855562000393565b8280016001018555821562000393579182015b828111156200039257825182559160200191906001019062000375565b5b509050620003a29190620003a6565b5090565b5b80821115620003c1576000816000905550600101620003a7565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200042e82620003e3565b810181811067ffffffffffffffff8211171562000450576200044f620003f4565b5b80604052505050565b600062000465620003c5565b905062000473828262000423565b919050565b600067ffffffffffffffff821115620004965762000495620003f4565b5b620004a182620003e3565b9050602081019050919050565b60005b83811015620004ce578082015181840152602081019050620004b1565b83811115620004de576000848401525b50505050565b6000620004fb620004f58462000478565b62000459565b9050828152602081018484840111156200051a5762000519620003de565b5b62000527848285620004ae565b509392505050565b600082601f830112620005475762000546620003d9565b5b815162000559848260208601620004e4565b91505092915050565b6000602082840312156200057b576200057a620003cf565b5b600082015167ffffffffffffffff8111156200059c576200059b620003d4565b5b620005aa848285016200052f565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620005fc602083620005b3565b91506200060982620005c4565b602082019050919050565b600060208201905081810360008301526200062f81620005ed565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200067e57607f821691505b60208210810362000694576200069362000636565b5b50919050565b612d9e80620006aa6000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063a0712d68116100a0578063cadf88181161006f578063cadf8818146106a4578063ccb22f09146106cf578063e985e9c5146106fa578063ea6eb83614610737578063f2fde38b14610760576101ee565b8063a0712d68146105f9578063a22cb46514610615578063b88d4fde1461063e578063c87b56dd14610667576101ee565b806391b7f5ed116100dc57806391b7f5ed1461054f57806395d89b411461057857806398710d1e146105a35780639a3bf728146105ce576101ee565b8063715018a6146104b95780637389fbb7146104d05780638069876d146104f95780638da5cb5b14610524576101ee565b806332cb6b0c1161018557806355f804b31161015457806355f804b3146103eb5780636352211e146104145780636817c76c1461045157806370a082311461047c576101ee565b806332cb6b0c146103575780633ccfd60b1461038257806342842e0e146103995780634dfea627146103c2576101ee565b8063095ea7b3116101c1578063095ea7b3146102af57806318160ddd146102d857806322f3e2d41461030357806323b872dd1461032e576101ee565b806301ffc9a7146101f3578063049c5c491461023057806306fdde0314610247578063081812fc14610272575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612021565b610789565b6040516102279190612069565b60405180910390f35b34801561023c57600080fd5b5061024561081b565b005b34801561025357600080fd5b5061025c61084f565b604051610269919061211d565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190612175565b6108e1565b6040516102a691906121e3565b60405180910390f35b3480156102bb57600080fd5b506102d660048036038101906102d1919061222a565b61095d565b005b3480156102e457600080fd5b506102ed610a9e565b6040516102fa9190612279565b60405180910390f35b34801561030f57600080fd5b50610318610ab5565b6040516103259190612069565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190612294565b610ac8565b005b34801561036357600080fd5b5061036c610dea565b6040516103799190612279565b60405180910390f35b34801561038e57600080fd5b50610397610df0565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190612294565b610e4e565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190612175565b610e6e565b005b3480156103f757600080fd5b50610412600480360381019061040d919061241c565b610e80565b005b34801561042057600080fd5b5061043b60048036038101906104369190612175565b610ea2565b60405161044891906121e3565b60405180910390f35b34801561045d57600080fd5b50610466610eb4565b6040516104739190612279565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190612465565b610eba565b6040516104b09190612279565b60405180910390f35b3480156104c557600080fd5b506104ce610f72565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190612175565b610f86565b005b34801561050557600080fd5b5061050e610f98565b60405161051b9190612279565b60405180910390f35b34801561053057600080fd5b50610539610f9e565b60405161054691906121e3565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190612175565b610fc8565b005b34801561058457600080fd5b5061058d610fda565b60405161059a919061211d565b60405180910390f35b3480156105af57600080fd5b506105b861106c565b6040516105c59190612279565b60405180910390f35b3480156105da57600080fd5b506105e3611071565b6040516105f09190612279565b60405180910390f35b610613600480360381019061060e9190612175565b611077565b005b34801561062157600080fd5b5061063c600480360381019061063791906124be565b61132b565b005b34801561064a57600080fd5b506106656004803603810190610660919061259f565b6114a2565b005b34801561067357600080fd5b5061068e60048036038101906106899190612175565b611515565b60405161069b919061211d565b60405180910390f35b3480156106b057600080fd5b506106b96115b3565b6040516106c69190612279565b60405180910390f35b3480156106db57600080fd5b506106e46115b9565b6040516106f19190612279565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190612622565b6115be565b60405161072e9190612069565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190612175565b611652565b005b34801561076c57600080fd5b5061078760048036038101906107829190612465565b611664565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108145750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6108236116e7565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b60606002805461085e90612691565b80601f016020809104026020016040519081016040528092919081815260200182805461088a90612691565b80156108d75780601f106108ac576101008083540402835291602001916108d7565b820191906000526020600020905b8154815290600101906020018083116108ba57829003601f168201915b5050505050905090565b60006108ec82611765565b610922576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096882610ea2565b90508073ffffffffffffffffffffffffffffffffffffffff166109896117c4565b73ffffffffffffffffffffffffffffffffffffffff16146109ec576109b5816109b06117c4565b6115be565b6109eb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610aa86117cc565b6001546000540303905090565b600b60009054906101000a900460ff1681565b6000610ad3826117d1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b3a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b468461189d565b91509150610b5c8187610b576117c4565b6118bf565b610ba857610b7186610b6c6117c4565b6115be565b610ba7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c0e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c1b8686866001611903565b8015610c2657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cf485610cd0888887611909565b7c020000000000000000000000000000000000000000000000000000000017611931565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d7a5760006001850190506000600460008381526020019081526020016000205403610d78576000548114610d77578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610de2868686600161195c565b505050505050565b600c5481565b610df86116e7565b6000479050610e05610f9e565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e4a573d6000803e3d6000fd5b5050565b610e69838383604051806020016040528060008152506114a2565b505050565b610e766116e7565b80600d8190555050565b610e886116e7565b80600a9080519060200190610e9e929190611f12565b5050565b6000610ead826117d1565b9050919050565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f21576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f7a6116e7565b610f846000611962565b565b610f8e6116e7565b80600c8190555050565b6105dc81565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fd06116e7565b8060098190555050565b606060038054610fe990612691565b80601f016020809104026020016040519081016040528092919081815260200182805461101590612691565b80156110625780601f1061103757610100808354040283529160200191611062565b820191906000526020600020905b81548152906001019060200180831161104557829003601f168201915b5050505050905090565b600281565b600d5481565b600c54611082610a9e565b11156110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba9061270e565b60405180910390fd5b60006110cd610a9e565b9050600b60009054906101000a900460ff1661111e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111159061277a565b60405180910390fd5b600c54828261112d91906127c9565b111561116e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111659061286b565b60405180910390fd5b600e548261117b33610eba565b61118591906127c9565b11156111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd906128d7565b60405180910390fd5b600d5482111561120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290612943565b60405180910390fd5b6105dc8110156112b15760028261122133610eba565b61122b91906127c9565b111561126c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611263906129af565b60405180910390fd5b60028211156112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a790612a41565b60405180910390fd5b5b6105dc81111561131d5760026112c633610eba565b1061131c57816009546112d99190612a61565b34101561131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290612b07565b60405180910390fd5b5b5b6113273383611a28565b5050565b6113336117c4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611397576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113a46117c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114516117c4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114969190612069565b60405180910390a35050565b6114ad848484610ac8565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461150f576114d884848484611a46565b61150e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061152082611765565b611556576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611560611b96565b9050600081510361158057604051806020016040528060008152506115ab565b8061158a84611c28565b60405160200161159b929190612b63565b6040516020818303038152906040525b915050919050565b600e5481565b600281565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61165a6116e7565b80600e8190555050565b61166c6116e7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d290612bf9565b60405180910390fd5b6116e481611962565b50565b6116ef611c82565b73ffffffffffffffffffffffffffffffffffffffff1661170d610f9e565b73ffffffffffffffffffffffffffffffffffffffff1614611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90612c65565b60405180910390fd5b565b6000816117706117cc565b1115801561177f575060005482105b80156117bd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806117e06117cc565b11611866576000548110156118655760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611863575b6000810361185957600460008360019003935083815260200190815260200160002054905061182f565b8092505050611898565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611920868684611c8a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a42828260405180602001604052806000815250611c93565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a6c6117c4565b8786866040518563ffffffff1660e01b8152600401611a8e9493929190612cda565b6020604051808303816000875af1925050508015611aca57506040513d601f19601f82011682018060405250810190611ac79190612d3b565b60015b611b43573d8060008114611afa576040519150601f19603f3d011682016040523d82523d6000602084013e611aff565b606091505b506000815103611b3b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611ba590612691565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd190612691565b8015611c1e5780601f10611bf357610100808354040283529160200191611c1e565b820191906000526020600020905b815481529060010190602001808311611c0157829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611c6e57600183039250600a81066030018353600a81049050611c4e565b508181036020830392508083525050919050565b600033905090565b60009392505050565b611c9d8383611d30565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d2b57600080549050600083820390505b611cdd6000868380600101945086611a46565b611d13576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611cca578160005414611d2857600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d9c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611dd6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611de36000848385611903565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e5a83611e4b6000866000611909565b611e5485611f02565b17611931565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611e7e57806000819055505050611efd600084838561195c565b505050565b60006001821460e11b9050919050565b828054611f1e90612691565b90600052602060002090601f016020900481019282611f405760008555611f87565b82601f10611f5957805160ff1916838001178555611f87565b82800160010185558215611f87579182015b82811115611f86578251825591602001919060010190611f6b565b5b509050611f949190611f98565b5090565b5b80821115611fb1576000816000905550600101611f99565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ffe81611fc9565b811461200957600080fd5b50565b60008135905061201b81611ff5565b92915050565b60006020828403121561203757612036611fbf565b5b60006120458482850161200c565b91505092915050565b60008115159050919050565b6120638161204e565b82525050565b600060208201905061207e600083018461205a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120be5780820151818401526020810190506120a3565b838111156120cd576000848401525b50505050565b6000601f19601f8301169050919050565b60006120ef82612084565b6120f9818561208f565b93506121098185602086016120a0565b612112816120d3565b840191505092915050565b6000602082019050818103600083015261213781846120e4565b905092915050565b6000819050919050565b6121528161213f565b811461215d57600080fd5b50565b60008135905061216f81612149565b92915050565b60006020828403121561218b5761218a611fbf565b5b600061219984828501612160565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121cd826121a2565b9050919050565b6121dd816121c2565b82525050565b60006020820190506121f860008301846121d4565b92915050565b612207816121c2565b811461221257600080fd5b50565b600081359050612224816121fe565b92915050565b6000806040838503121561224157612240611fbf565b5b600061224f85828601612215565b925050602061226085828601612160565b9150509250929050565b6122738161213f565b82525050565b600060208201905061228e600083018461226a565b92915050565b6000806000606084860312156122ad576122ac611fbf565b5b60006122bb86828701612215565b93505060206122cc86828701612215565b92505060406122dd86828701612160565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612329826120d3565b810181811067ffffffffffffffff82111715612348576123476122f1565b5b80604052505050565b600061235b611fb5565b90506123678282612320565b919050565b600067ffffffffffffffff821115612387576123866122f1565b5b612390826120d3565b9050602081019050919050565b82818337600083830152505050565b60006123bf6123ba8461236c565b612351565b9050828152602081018484840111156123db576123da6122ec565b5b6123e684828561239d565b509392505050565b600082601f830112612403576124026122e7565b5b81356124138482602086016123ac565b91505092915050565b60006020828403121561243257612431611fbf565b5b600082013567ffffffffffffffff8111156124505761244f611fc4565b5b61245c848285016123ee565b91505092915050565b60006020828403121561247b5761247a611fbf565b5b600061248984828501612215565b91505092915050565b61249b8161204e565b81146124a657600080fd5b50565b6000813590506124b881612492565b92915050565b600080604083850312156124d5576124d4611fbf565b5b60006124e385828601612215565b92505060206124f4858286016124a9565b9150509250929050565b600067ffffffffffffffff821115612519576125186122f1565b5b612522826120d3565b9050602081019050919050565b600061254261253d846124fe565b612351565b90508281526020810184848401111561255e5761255d6122ec565b5b61256984828561239d565b509392505050565b600082601f830112612586576125856122e7565b5b813561259684826020860161252f565b91505092915050565b600080600080608085870312156125b9576125b8611fbf565b5b60006125c787828801612215565b94505060206125d887828801612215565b93505060406125e987828801612160565b925050606085013567ffffffffffffffff81111561260a57612609611fc4565b5b61261687828801612571565b91505092959194509250565b6000806040838503121561263957612638611fbf565b5b600061264785828601612215565b925050602061265885828601612215565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126a957607f821691505b6020821081036126bc576126bb612662565b5b50919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b60006126f8600f8361208f565b9150612703826126c2565b602082019050919050565b60006020820190508181036000830152612727816126eb565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000612764601d8361208f565b915061276f8261272e565b602082019050919050565b6000602082019050818103600083015261279381612757565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127d48261213f565b91506127df8361213f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128145761281361279a565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b600061285560168361208f565b91506128608261281f565b602082019050919050565b6000602082019050818103600083015261288481612848565b9050919050565b7f4d617820686f6c64696e672063617020726561636865642e0000000000000000600082015250565b60006128c160188361208f565b91506128cc8261288b565b602082019050919050565b600060208201905081810360008301526128f0816128b4565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b600061292d601e8361208f565b9150612938826128f7565b602082019050919050565b6000602082019050818103600083015261295c81612920565b9050919050565b7f4d6178204652454520686f6c64696e672063617020726561636865642e000000600082015250565b6000612999601d8361208f565b91506129a482612963565b602082019050919050565b600060208201905081810360008301526129c88161298c565b9050919050565b7f45786365656473204652454520616c6c6f77656420746f6b656e73207065722060008201527f5458000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a2b60228361208f565b9150612a36826129cf565b604082019050919050565b60006020820190508181036000830152612a5a81612a1e565b9050919050565b6000612a6c8261213f565b9150612a778361213f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ab057612aaf61279a565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000612af1601d8361208f565b9150612afc82612abb565b602082019050919050565b60006020820190508181036000830152612b2081612ae4565b9050919050565b600081905092915050565b6000612b3d82612084565b612b478185612b27565b9350612b578185602086016120a0565b80840191505092915050565b6000612b6f8285612b32565b9150612b7b8284612b32565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612be360268361208f565b9150612bee82612b87565b604082019050919050565b60006020820190508181036000830152612c1281612bd6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c4f60208361208f565b9150612c5a82612c19565b602082019050919050565b60006020820190508181036000830152612c7e81612c42565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612cac82612c85565b612cb68185612c90565b9350612cc68185602086016120a0565b612ccf816120d3565b840191505092915050565b6000608082019050612cef60008301876121d4565b612cfc60208301866121d4565b612d09604083018561226a565b8181036060830152612d1b8184612ca1565b905095945050505050565b600081519050612d3581611ff5565b92915050565b600060208284031215612d5157612d50611fbf565b5b6000612d5f84828501612d26565b9150509291505056fea2646970667358221220873f98afb510c537eca69ad8e2e5bebfd2253cacaeba8a82cd46661ec4bc393e64736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063a0712d68116100a0578063cadf88181161006f578063cadf8818146106a4578063ccb22f09146106cf578063e985e9c5146106fa578063ea6eb83614610737578063f2fde38b14610760576101ee565b8063a0712d68146105f9578063a22cb46514610615578063b88d4fde1461063e578063c87b56dd14610667576101ee565b806391b7f5ed116100dc57806391b7f5ed1461054f57806395d89b411461057857806398710d1e146105a35780639a3bf728146105ce576101ee565b8063715018a6146104b95780637389fbb7146104d05780638069876d146104f95780638da5cb5b14610524576101ee565b806332cb6b0c1161018557806355f804b31161015457806355f804b3146103eb5780636352211e146104145780636817c76c1461045157806370a082311461047c576101ee565b806332cb6b0c146103575780633ccfd60b1461038257806342842e0e146103995780634dfea627146103c2576101ee565b8063095ea7b3116101c1578063095ea7b3146102af57806318160ddd146102d857806322f3e2d41461030357806323b872dd1461032e576101ee565b806301ffc9a7146101f3578063049c5c491461023057806306fdde0314610247578063081812fc14610272575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612021565b610789565b6040516102279190612069565b60405180910390f35b34801561023c57600080fd5b5061024561081b565b005b34801561025357600080fd5b5061025c61084f565b604051610269919061211d565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190612175565b6108e1565b6040516102a691906121e3565b60405180910390f35b3480156102bb57600080fd5b506102d660048036038101906102d1919061222a565b61095d565b005b3480156102e457600080fd5b506102ed610a9e565b6040516102fa9190612279565b60405180910390f35b34801561030f57600080fd5b50610318610ab5565b6040516103259190612069565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190612294565b610ac8565b005b34801561036357600080fd5b5061036c610dea565b6040516103799190612279565b60405180910390f35b34801561038e57600080fd5b50610397610df0565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190612294565b610e4e565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190612175565b610e6e565b005b3480156103f757600080fd5b50610412600480360381019061040d919061241c565b610e80565b005b34801561042057600080fd5b5061043b60048036038101906104369190612175565b610ea2565b60405161044891906121e3565b60405180910390f35b34801561045d57600080fd5b50610466610eb4565b6040516104739190612279565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190612465565b610eba565b6040516104b09190612279565b60405180910390f35b3480156104c557600080fd5b506104ce610f72565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190612175565b610f86565b005b34801561050557600080fd5b5061050e610f98565b60405161051b9190612279565b60405180910390f35b34801561053057600080fd5b50610539610f9e565b60405161054691906121e3565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190612175565b610fc8565b005b34801561058457600080fd5b5061058d610fda565b60405161059a919061211d565b60405180910390f35b3480156105af57600080fd5b506105b861106c565b6040516105c59190612279565b60405180910390f35b3480156105da57600080fd5b506105e3611071565b6040516105f09190612279565b60405180910390f35b610613600480360381019061060e9190612175565b611077565b005b34801561062157600080fd5b5061063c600480360381019061063791906124be565b61132b565b005b34801561064a57600080fd5b506106656004803603810190610660919061259f565b6114a2565b005b34801561067357600080fd5b5061068e60048036038101906106899190612175565b611515565b60405161069b919061211d565b60405180910390f35b3480156106b057600080fd5b506106b96115b3565b6040516106c69190612279565b60405180910390f35b3480156106db57600080fd5b506106e46115b9565b6040516106f19190612279565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190612622565b6115be565b60405161072e9190612069565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190612175565b611652565b005b34801561076c57600080fd5b5061078760048036038101906107829190612465565b611664565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108145750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6108236116e7565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b60606002805461085e90612691565b80601f016020809104026020016040519081016040528092919081815260200182805461088a90612691565b80156108d75780601f106108ac576101008083540402835291602001916108d7565b820191906000526020600020905b8154815290600101906020018083116108ba57829003601f168201915b5050505050905090565b60006108ec82611765565b610922576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096882610ea2565b90508073ffffffffffffffffffffffffffffffffffffffff166109896117c4565b73ffffffffffffffffffffffffffffffffffffffff16146109ec576109b5816109b06117c4565b6115be565b6109eb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610aa86117cc565b6001546000540303905090565b600b60009054906101000a900460ff1681565b6000610ad3826117d1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b3a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b468461189d565b91509150610b5c8187610b576117c4565b6118bf565b610ba857610b7186610b6c6117c4565b6115be565b610ba7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c0e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c1b8686866001611903565b8015610c2657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cf485610cd0888887611909565b7c020000000000000000000000000000000000000000000000000000000017611931565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d7a5760006001850190506000600460008381526020019081526020016000205403610d78576000548114610d77578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610de2868686600161195c565b505050505050565b600c5481565b610df86116e7565b6000479050610e05610f9e565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e4a573d6000803e3d6000fd5b5050565b610e69838383604051806020016040528060008152506114a2565b505050565b610e766116e7565b80600d8190555050565b610e886116e7565b80600a9080519060200190610e9e929190611f12565b5050565b6000610ead826117d1565b9050919050565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f21576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f7a6116e7565b610f846000611962565b565b610f8e6116e7565b80600c8190555050565b6105dc81565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fd06116e7565b8060098190555050565b606060038054610fe990612691565b80601f016020809104026020016040519081016040528092919081815260200182805461101590612691565b80156110625780601f1061103757610100808354040283529160200191611062565b820191906000526020600020905b81548152906001019060200180831161104557829003601f168201915b5050505050905090565b600281565b600d5481565b600c54611082610a9e565b11156110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba9061270e565b60405180910390fd5b60006110cd610a9e565b9050600b60009054906101000a900460ff1661111e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111159061277a565b60405180910390fd5b600c54828261112d91906127c9565b111561116e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111659061286b565b60405180910390fd5b600e548261117b33610eba565b61118591906127c9565b11156111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd906128d7565b60405180910390fd5b600d5482111561120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290612943565b60405180910390fd5b6105dc8110156112b15760028261122133610eba565b61122b91906127c9565b111561126c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611263906129af565b60405180910390fd5b60028211156112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a790612a41565b60405180910390fd5b5b6105dc81111561131d5760026112c633610eba565b1061131c57816009546112d99190612a61565b34101561131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290612b07565b60405180910390fd5b5b5b6113273383611a28565b5050565b6113336117c4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611397576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113a46117c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114516117c4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114969190612069565b60405180910390a35050565b6114ad848484610ac8565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461150f576114d884848484611a46565b61150e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061152082611765565b611556576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611560611b96565b9050600081510361158057604051806020016040528060008152506115ab565b8061158a84611c28565b60405160200161159b929190612b63565b6040516020818303038152906040525b915050919050565b600e5481565b600281565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61165a6116e7565b80600e8190555050565b61166c6116e7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d290612bf9565b60405180910390fd5b6116e481611962565b50565b6116ef611c82565b73ffffffffffffffffffffffffffffffffffffffff1661170d610f9e565b73ffffffffffffffffffffffffffffffffffffffff1614611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90612c65565b60405180910390fd5b565b6000816117706117cc565b1115801561177f575060005482105b80156117bd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806117e06117cc565b11611866576000548110156118655760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611863575b6000810361185957600460008360019003935083815260200190815260200160002054905061182f565b8092505050611898565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611920868684611c8a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a42828260405180602001604052806000815250611c93565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a6c6117c4565b8786866040518563ffffffff1660e01b8152600401611a8e9493929190612cda565b6020604051808303816000875af1925050508015611aca57506040513d601f19601f82011682018060405250810190611ac79190612d3b565b60015b611b43573d8060008114611afa576040519150601f19603f3d011682016040523d82523d6000602084013e611aff565b606091505b506000815103611b3b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611ba590612691565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd190612691565b8015611c1e5780601f10611bf357610100808354040283529160200191611c1e565b820191906000526020600020905b815481529060010190602001808311611c0157829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611c6e57600183039250600a81066030018353600a81049050611c4e565b508181036020830392508083525050919050565b600033905090565b60009392505050565b611c9d8383611d30565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d2b57600080549050600083820390505b611cdd6000868380600101945086611a46565b611d13576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611cca578160005414611d2857600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d9c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611dd6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611de36000848385611903565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e5a83611e4b6000866000611909565b611e5485611f02565b17611931565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611e7e57806000819055505050611efd600084838561195c565b505050565b60006001821460e11b9050919050565b828054611f1e90612691565b90600052602060002090601f016020900481019282611f405760008555611f87565b82601f10611f5957805160ff1916838001178555611f87565b82800160010185558215611f87579182015b82811115611f86578251825591602001919060010190611f6b565b5b509050611f949190611f98565b5090565b5b80821115611fb1576000816000905550600101611f99565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ffe81611fc9565b811461200957600080fd5b50565b60008135905061201b81611ff5565b92915050565b60006020828403121561203757612036611fbf565b5b60006120458482850161200c565b91505092915050565b60008115159050919050565b6120638161204e565b82525050565b600060208201905061207e600083018461205a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120be5780820151818401526020810190506120a3565b838111156120cd576000848401525b50505050565b6000601f19601f8301169050919050565b60006120ef82612084565b6120f9818561208f565b93506121098185602086016120a0565b612112816120d3565b840191505092915050565b6000602082019050818103600083015261213781846120e4565b905092915050565b6000819050919050565b6121528161213f565b811461215d57600080fd5b50565b60008135905061216f81612149565b92915050565b60006020828403121561218b5761218a611fbf565b5b600061219984828501612160565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121cd826121a2565b9050919050565b6121dd816121c2565b82525050565b60006020820190506121f860008301846121d4565b92915050565b612207816121c2565b811461221257600080fd5b50565b600081359050612224816121fe565b92915050565b6000806040838503121561224157612240611fbf565b5b600061224f85828601612215565b925050602061226085828601612160565b9150509250929050565b6122738161213f565b82525050565b600060208201905061228e600083018461226a565b92915050565b6000806000606084860312156122ad576122ac611fbf565b5b60006122bb86828701612215565b93505060206122cc86828701612215565b92505060406122dd86828701612160565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612329826120d3565b810181811067ffffffffffffffff82111715612348576123476122f1565b5b80604052505050565b600061235b611fb5565b90506123678282612320565b919050565b600067ffffffffffffffff821115612387576123866122f1565b5b612390826120d3565b9050602081019050919050565b82818337600083830152505050565b60006123bf6123ba8461236c565b612351565b9050828152602081018484840111156123db576123da6122ec565b5b6123e684828561239d565b509392505050565b600082601f830112612403576124026122e7565b5b81356124138482602086016123ac565b91505092915050565b60006020828403121561243257612431611fbf565b5b600082013567ffffffffffffffff8111156124505761244f611fc4565b5b61245c848285016123ee565b91505092915050565b60006020828403121561247b5761247a611fbf565b5b600061248984828501612215565b91505092915050565b61249b8161204e565b81146124a657600080fd5b50565b6000813590506124b881612492565b92915050565b600080604083850312156124d5576124d4611fbf565b5b60006124e385828601612215565b92505060206124f4858286016124a9565b9150509250929050565b600067ffffffffffffffff821115612519576125186122f1565b5b612522826120d3565b9050602081019050919050565b600061254261253d846124fe565b612351565b90508281526020810184848401111561255e5761255d6122ec565b5b61256984828561239d565b509392505050565b600082601f830112612586576125856122e7565b5b813561259684826020860161252f565b91505092915050565b600080600080608085870312156125b9576125b8611fbf565b5b60006125c787828801612215565b94505060206125d887828801612215565b93505060406125e987828801612160565b925050606085013567ffffffffffffffff81111561260a57612609611fc4565b5b61261687828801612571565b91505092959194509250565b6000806040838503121561263957612638611fbf565b5b600061264785828601612215565b925050602061265885828601612215565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126a957607f821691505b6020821081036126bc576126bb612662565b5b50919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b60006126f8600f8361208f565b9150612703826126c2565b602082019050919050565b60006020820190508181036000830152612727816126eb565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000612764601d8361208f565b915061276f8261272e565b602082019050919050565b6000602082019050818103600083015261279381612757565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127d48261213f565b91506127df8361213f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128145761281361279a565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b600061285560168361208f565b91506128608261281f565b602082019050919050565b6000602082019050818103600083015261288481612848565b9050919050565b7f4d617820686f6c64696e672063617020726561636865642e0000000000000000600082015250565b60006128c160188361208f565b91506128cc8261288b565b602082019050919050565b600060208201905081810360008301526128f0816128b4565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b600061292d601e8361208f565b9150612938826128f7565b602082019050919050565b6000602082019050818103600083015261295c81612920565b9050919050565b7f4d6178204652454520686f6c64696e672063617020726561636865642e000000600082015250565b6000612999601d8361208f565b91506129a482612963565b602082019050919050565b600060208201905081810360008301526129c88161298c565b9050919050565b7f45786365656473204652454520616c6c6f77656420746f6b656e73207065722060008201527f5458000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a2b60228361208f565b9150612a36826129cf565b604082019050919050565b60006020820190508181036000830152612a5a81612a1e565b9050919050565b6000612a6c8261213f565b9150612a778361213f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ab057612aaf61279a565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000612af1601d8361208f565b9150612afc82612abb565b602082019050919050565b60006020820190508181036000830152612b2081612ae4565b9050919050565b600081905092915050565b6000612b3d82612084565b612b478185612b27565b9350612b578185602086016120a0565b80840191505092915050565b6000612b6f8285612b32565b9150612b7b8284612b32565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612be360268361208f565b9150612bee82612b87565b604082019050919050565b60006020820190508181036000830152612c1281612bd6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c4f60208361208f565b9150612c5a82612c19565b602082019050919050565b60006020820190508181036000830152612c7e81612c42565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612cac82612c85565b612cb68185612c90565b9350612cc68185602086016120a0565b612ccf816120d3565b840191505092915050565b6000608082019050612cef60008301876121d4565b612cfc60208301866121d4565b612d09604083018561226a565b8181036060830152612d1b8184612ca1565b905095945050505050565b600081519050612d3581611ff5565b92915050565b600060208284031215612d5157612d50611fbf565b5b6000612d5f84828501612d26565b9150509291505056fea2646970667358221220873f98afb510c537eca69ad8e2e5bebfd2253cacaeba8a82cd46661ec4bc393e64736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
48391:2474:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18185:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49532:78;;;;;;;;;;;;;:::i;:::-;;23832:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25778:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25326:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17239:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48515:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35043:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48550:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50733:129;;;;;;;;;;;;;:::i;:::-;;26668:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49069:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49616:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23621:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48443:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18864:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;49328:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48587:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49444:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24001:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48638:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48738:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49834:893;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26054:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26924:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24176:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48794:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48690:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26433:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49196:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18185:615;18270:4;18585:10;18570:25;;:11;:25;;;;:102;;;;18662:10;18647:25;;:11;:25;;;;18570:102;:179;;;;18739:10;18724:25;;:11;:25;;;;18570:179;18550:199;;18185:615;;;:::o;49532:78::-;2014:13;:11;:13::i;:::-;49596:8:::1;;;;;;;;;;;49595:9;49584:8;;:20;;;;;;;;;;;;;;;;;;49532:78::o:0;23832:100::-;23886:13;23919:5;23912:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23832:100;:::o;25778:204::-;25846:7;25871:16;25879:7;25871;:16::i;:::-;25866:64;;25896:34;;;;;;;;;;;;;;25866:64;25950:15;:24;25966:7;25950:24;;;;;;;;;;;;;;;;;;;;;25943:31;;25778:204;;;:::o;25326:386::-;25399:13;25415:16;25423:7;25415;:16::i;:::-;25399:32;;25471:5;25448:28;;:19;:17;:19::i;:::-;:28;;;25444:175;;25496:44;25513:5;25520:19;:17;:19::i;:::-;25496:16;:44::i;:::-;25491:128;;25568:35;;;;;;;;;;;;;;25491:128;25444:175;25658:2;25631:15;:24;25647:7;25631:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25696:7;25692:2;25676:28;;25685:5;25676:28;;;;;;;;;;;;25388:324;25326:386;;:::o;17239:315::-;17292:7;17520:15;:13;:15::i;:::-;17505:12;;17489:13;;:28;:46;17482:53;;17239:315;:::o;48515:28::-;;;;;;;;;;;;;:::o;35043:2800::-;35177:27;35207;35226:7;35207:18;:27::i;:::-;35177:57;;35292:4;35251:45;;35267:19;35251:45;;;35247:86;;35305:28;;;;;;;;;;;;;;35247:86;35347:27;35376:23;35403:28;35423:7;35403:19;:28::i;:::-;35346:85;;;;35531:62;35550:15;35567:4;35573:19;:17;:19::i;:::-;35531:18;:62::i;:::-;35526:174;;35613:43;35630:4;35636:19;:17;:19::i;:::-;35613:16;:43::i;:::-;35608:92;;35665:35;;;;;;;;;;;;;;35608:92;35526:174;35731:1;35717:16;;:2;:16;;;35713:52;;35742:23;;;;;;;;;;;;;;35713:52;35778:43;35800:4;35806:2;35810:7;35819:1;35778:21;:43::i;:::-;35914:15;35911:160;;;36054:1;36033:19;36026:30;35911:160;36449:18;:24;36468:4;36449:24;;;;;;;;;;;;;;;;36447:26;;;;;;;;;;;;36518:18;:22;36537:2;36518:22;;;;;;;;;;;;;;;;36516:24;;;;;;;;;;;36840:145;36877:2;36925:45;36940:4;36946:2;36950:19;36925:14;:45::i;:::-;14467:8;36898:72;36840:18;:145::i;:::-;36811:17;:26;36829:7;36811:26;;;;;;;;;;;:174;;;;37155:1;14467:8;37105:19;:46;:51;37101:626;;37177:19;37209:1;37199:7;:11;37177:33;;37366:1;37332:17;:30;37350:11;37332:30;;;;;;;;;;;;:35;37328:384;;37470:13;;37455:11;:28;37451:242;;37650:19;37617:17;:30;37635:11;37617:30;;;;;;;;;;;:52;;;;37451:242;37328:384;37158:569;37101:626;37774:7;37770:2;37755:27;;37764:4;37755:27;;;;;;;;;;;;37793:42;37814:4;37820:2;37824:7;37833:1;37793:20;:42::i;:::-;35166:2677;;;35043:2800;;;:::o;48550:32::-;;;;:::o;50733:129::-;2014:13;:11;:13::i;:::-;50779:12:::1;50794:21;50779:36;;50830:7;:5;:7::i;:::-;50822:25;;:34;50848:7;50822:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;50772:90;50733:129::o:0;26668:185::-;26806:39;26823:4;26829:2;26833:7;26806:39;;;;;;;;;;;;:16;:39::i;:::-;26668:185;;;:::o;49069:119::-;2014:13;:11;:13::i;:::-;49176:6:::1;49142:31;:40;;;;49069:119:::0;:::o;49616:96::-;2014:13;:11;:13::i;:::-;49699:7:::1;49683:13;:23;;;;;;;;;;;;:::i;:::-;;49616:96:::0;:::o;23621:144::-;23685:7;23728:27;23747:7;23728:18;:27::i;:::-;23705:52;;23621:144;;;:::o;48443:38::-;;;;:::o;18864:224::-;18928:7;18969:1;18952:19;;:5;:19;;;18948:60;;18980:28;;;;;;;;;;;;;;18948:60;13419:13;19026:18;:25;19045:5;19026:25;;;;;;;;;;;;;;;;:54;19019:61;;18864:224;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;49328:108::-;2014:13;:11;:13::i;:::-;49417::::1;49404:10;:26;;;;49328:108:::0;:::o;48587:46::-;48629:4;48587:46;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;49444:82::-;2014:13;:11;:13::i;:::-;49514:6:::1;49502:9;:18;;;;49444:82:::0;:::o;24001:104::-;24057:13;24090:7;24083:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24001:104;:::o;48638:47::-;48684:1;48638:47;:::o;48738:51::-;;;;:::o;49834:893::-;49019:10;;49002:13;:11;:13::i;:::-;:27;;48994:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49897:17:::1;49917:13;:11;:13::i;:::-;49897:33;;49947:8;;;;;;;;;;;49939:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;50026:10;;50016:6;50004:9;:18;;;;:::i;:::-;:32;;49996:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;50112:29;;50102:6;50078:21;50088:10;50078:9;:21::i;:::-;:30;;;;:::i;:::-;:63;;50070:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;50196:31;;50186:6;:41;;50177:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48629:4;50274:9;:27;50271:226;;;48684:1;50344:6;50320:21;50330:10;50320:9;:21::i;:::-;:30;;;;:::i;:::-;:53;;50312:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;48732:1;50425:6;:25;;50416:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;50271:226;48629:4;50508:9;:27;50505:173;;;50574:1;50549:21;50559:10;50549:9;:21::i;:::-;:26;50546:125;;50621:6;50609:9;;:18;;;;:::i;:::-;50596:9;:31;;50588:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;50546:125;50505:173;50686:29;50696:10;50708:6;50686:9;:29::i;:::-;49890:837;49834:893:::0;:::o;26054:308::-;26165:19;:17;:19::i;:::-;26153:31;;:8;:31;;;26149:61;;26193:17;;;;;;;;;;;;;;26149:61;26275:8;26223:18;:39;26242:19;:17;:19::i;:::-;26223:39;;;;;;;;;;;;;;;:49;26263:8;26223:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26335:8;26299:55;;26314:19;:17;:19::i;:::-;26299:55;;;26345:8;26299:55;;;;;;:::i;:::-;;;;;;;;26054:308;;:::o;26924:399::-;27091:31;27104:4;27110:2;27114:7;27091:12;:31::i;:::-;27155:1;27137:2;:14;;;:19;27133:183;;27176:56;27207:4;27213:2;27217:7;27226:5;27176:30;:56::i;:::-;27171:145;;27260:40;;;;;;;;;;;;;;27171:145;27133:183;26924:399;;;;:::o;24176:318::-;24249:13;24280:16;24288:7;24280;:16::i;:::-;24275:59;;24305:29;;;;;;;;;;;;;;24275:59;24347:21;24371:10;:8;:10::i;:::-;24347:34;;24424:1;24405:7;24399:21;:26;:87;;;;;;;;;;;;;;;;;24452:7;24461:18;24471:7;24461:9;:18::i;:::-;24435:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24399:87;24392:94;;;24176:318;;;:::o;48794:49::-;;;;:::o;48690:43::-;48732:1;48690:43;:::o;26433:164::-;26530:4;26554:18;:25;26573:5;26554:25;;;;;;;;;;;;;;;:35;26580:8;26554:35;;;;;;;;;;;;;;;;;;;;;;;;;26547:42;;26433:164;;;;:::o;49196:126::-;2014:13;:11;:13::i;:::-;49310:6:::1;49278:29;:38;;;;49196:126:::0;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;::::0;3115:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;27578:273::-;27635:4;27691:7;27672:15;:13;:15::i;:::-;:26;;:66;;;;;27725:13;;27715:7;:23;27672:66;:152;;;;;27823:1;14189:8;27776:17;:26;27794:7;27776:26;;;;;;;;;;;;:43;:48;27672:152;27652:172;;27578:273;;;:::o;46139:105::-;46199:7;46226:10;46219:17;;46139:105;:::o;16763:92::-;16819:7;16763:92;:::o;20538:1129::-;20605:7;20625:12;20640:7;20625:22;;20708:4;20689:15;:13;:15::i;:::-;:23;20685:915;;20742:13;;20735:4;:20;20731:869;;;20780:14;20797:17;:23;20815:4;20797:23;;;;;;;;;;;;20780:40;;20913:1;14189:8;20886:6;:23;:28;20882:699;;21405:113;21422:1;21412:6;:11;21405:113;;21465:17;:25;21483:6;;;;;;;21465:25;;;;;;;;;;;;21456:34;;21405:113;;;21551:6;21544:13;;;;;;20882:699;20757:843;20731:869;20685:915;21628:31;;;;;;;;;;;;;;20538:1129;;;;:::o;33379:652::-;33474:27;33503:23;33544:53;33600:15;33544:71;;33786:7;33780:4;33773:21;33821:22;33815:4;33808:36;33897:4;33891;33881:21;33858:44;;33993:19;33987:26;33968:45;;33724:300;33379:652;;;:::o;34144:645::-;34286:11;34448:15;34442:4;34438:26;34430:34;;34607:15;34596:9;34592:31;34579:44;;34754:15;34743:9;34740:30;34733:4;34722:9;34719:19;34716:55;34706:65;;34144:645;;;;;:::o;44972:159::-;;;;;:::o;43284:309::-;43419:7;43439:16;14590:3;43465:19;:40;;43439:67;;14590:3;43532:31;43543:4;43549:2;43553:9;43532:10;:31::i;:::-;43524:40;;:61;;43517:68;;;43284:309;;;;;:::o;23112:447::-;23192:14;23360:15;23353:5;23349:27;23340:36;;23534:5;23520:11;23496:22;23492:40;23489:51;23482:5;23479:62;23469:72;;23112:447;;;;:::o;45790:158::-;;;;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;27935:104::-;28004:27;28014:2;28018:8;28004:27;;;;;;;;;;;;:9;:27::i;:::-;27935:104;;:::o;41794:716::-;41957:4;42003:2;41978:45;;;42024:19;:17;:19::i;:::-;42045:4;42051:7;42060:5;41978:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41974:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42278:1;42261:6;:13;:18;42257:235;;42307:40;;;;;;;;;;;;;;42257:235;42450:6;42444:13;42435:6;42431:2;42427:15;42420:38;41974:529;42147:54;;;42137:64;;;:6;:64;;;;42130:71;;;41794:716;;;;;;:::o;49720:108::-;49780:13;49809;49802:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49720:108;:::o;46350:1960::-;46407:17;46826:3;46819:4;46813:11;46809:21;46802:28;;46917:3;46911:4;46904:17;47023:3;47479:5;47609:1;47604:3;47600:11;47593:18;;47746:2;47740:4;47736:13;47732:2;47728:22;47723:3;47715:36;47787:2;47781:4;47777:13;47769:21;;47371:697;47806:4;47371:697;;;47997:1;47992:3;47988:11;47981:18;;48048:2;48042:4;48038:13;48034:2;48030:22;48025:3;48017:36;47901:2;47895:4;47891:13;47883:21;;47371:697;;;47375:430;48107:3;48102;48098:13;48222:2;48217:3;48213:12;48206:19;;48285:6;48280:3;48273:19;46446:1857;;46350:1960;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;44169:147::-;44306:6;44169:147;;;;;:::o;28455:681::-;28578:19;28584:2;28588:8;28578:5;:19::i;:::-;28657:1;28639:2;:14;;;:19;28635:483;;28679:11;28693:13;;28679:27;;28725:13;28747:8;28741:3;:14;28725:30;;28774:233;28805:62;28844:1;28848:2;28852:7;;;;;;28861:5;28805:30;:62::i;:::-;28800:167;;28903:40;;;;;;;;;;;;;;28800:167;29002:3;28994:5;:11;28774:233;;29089:3;29072:13;;:20;29068:34;;29094:8;;;29068:34;28660:458;;28635:483;28455:681;;;:::o;29409:1529::-;29474:20;29497:13;;29474:36;;29539:1;29525:16;;:2;:16;;;29521:48;;29550:19;;;;;;;;;;;;;;29521:48;29596:1;29584:8;:13;29580:44;;29606:18;;;;;;;;;;;;;;29580:44;29637:61;29667:1;29671:2;29675:12;29689:8;29637:21;:61::i;:::-;30180:1;13556:2;30151:1;:25;;30150:31;30138:8;:44;30112:18;:22;30131:2;30112:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;30459:139;30496:2;30550:33;30573:1;30577:2;30581:1;30550:14;:33::i;:::-;30517:30;30538:8;30517:20;:30::i;:::-;:66;30459:18;:139::i;:::-;30425:17;:31;30443:12;30425:31;;;;;;;;;;;:173;;;;30615:15;30633:12;30615:30;;30660:11;30689:8;30674:12;:23;30660:37;;30712:101;30764:9;;;;;;30760:2;30739:35;;30756:1;30739:35;;;;;;;;;;;;30808:3;30798:7;:13;30712:101;;30845:3;30829:13;:19;;;;29886:974;;30870:60;30899:1;30903:2;30907:12;30921:8;30870:20;:60::i;:::-;29463:1475;29409:1529;;:::o;24942:322::-;25012:14;25243:1;25233:8;25230:15;25205:23;25201:45;25191:55;;24942:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:165::-;12773:17;12769:1;12761:6;12757:14;12750:41;12633:165;:::o;12804:366::-;12946:3;12967:67;13031:2;13026:3;12967:67;:::i;:::-;12960:74;;13043:93;13132:3;13043:93;:::i;:::-;13161:2;13156:3;13152:12;13145:19;;12804:366;;;:::o;13176:419::-;13342:4;13380:2;13369:9;13365:18;13357:26;;13429:9;13423:4;13419:20;13415:1;13404:9;13400:17;13393:47;13457:131;13583:4;13457:131;:::i;:::-;13449:139;;13176:419;;;:::o;13601:179::-;13741:31;13737:1;13729:6;13725:14;13718:55;13601:179;:::o;13786:366::-;13928:3;13949:67;14013:2;14008:3;13949:67;:::i;:::-;13942:74;;14025:93;14114:3;14025:93;:::i;:::-;14143:2;14138:3;14134:12;14127:19;;13786:366;;;:::o;14158:419::-;14324:4;14362:2;14351:9;14347:18;14339:26;;14411:9;14405:4;14401:20;14397:1;14386:9;14382:17;14375:47;14439:131;14565:4;14439:131;:::i;:::-;14431:139;;14158:419;;;:::o;14583:180::-;14631:77;14628:1;14621:88;14728:4;14725:1;14718:15;14752:4;14749:1;14742:15;14769:305;14809:3;14828:20;14846:1;14828:20;:::i;:::-;14823:25;;14862:20;14880:1;14862:20;:::i;:::-;14857:25;;15016:1;14948:66;14944:74;14941:1;14938:81;14935:107;;;15022:18;;:::i;:::-;14935:107;15066:1;15063;15059:9;15052:16;;14769:305;;;;:::o;15080:172::-;15220:24;15216:1;15208:6;15204:14;15197:48;15080:172;:::o;15258:366::-;15400:3;15421:67;15485:2;15480:3;15421:67;:::i;:::-;15414:74;;15497:93;15586:3;15497:93;:::i;:::-;15615:2;15610:3;15606:12;15599:19;;15258:366;;;:::o;15630:419::-;15796:4;15834:2;15823:9;15819:18;15811:26;;15883:9;15877:4;15873:20;15869:1;15858:9;15854:17;15847:47;15911:131;16037:4;15911:131;:::i;:::-;15903:139;;15630:419;;;:::o;16055:174::-;16195:26;16191:1;16183:6;16179:14;16172:50;16055:174;:::o;16235:366::-;16377:3;16398:67;16462:2;16457:3;16398:67;:::i;:::-;16391:74;;16474:93;16563:3;16474:93;:::i;:::-;16592:2;16587:3;16583:12;16576:19;;16235:366;;;:::o;16607:419::-;16773:4;16811:2;16800:9;16796:18;16788:26;;16860:9;16854:4;16850:20;16846:1;16835:9;16831:17;16824:47;16888:131;17014:4;16888:131;:::i;:::-;16880:139;;16607:419;;;:::o;17032:180::-;17172:32;17168:1;17160:6;17156:14;17149:56;17032:180;:::o;17218:366::-;17360:3;17381:67;17445:2;17440:3;17381:67;:::i;:::-;17374:74;;17457:93;17546:3;17457:93;:::i;:::-;17575:2;17570:3;17566:12;17559:19;;17218:366;;;:::o;17590:419::-;17756:4;17794:2;17783:9;17779:18;17771:26;;17843:9;17837:4;17833:20;17829:1;17818:9;17814:17;17807:47;17871:131;17997:4;17871:131;:::i;:::-;17863:139;;17590:419;;;:::o;18015:179::-;18155:31;18151:1;18143:6;18139:14;18132:55;18015:179;:::o;18200:366::-;18342:3;18363:67;18427:2;18422:3;18363:67;:::i;:::-;18356:74;;18439:93;18528:3;18439:93;:::i;:::-;18557:2;18552:3;18548:12;18541:19;;18200:366;;;:::o;18572:419::-;18738:4;18776:2;18765:9;18761:18;18753:26;;18825:9;18819:4;18815:20;18811:1;18800:9;18796:17;18789:47;18853:131;18979:4;18853:131;:::i;:::-;18845:139;;18572:419;;;:::o;18997:221::-;19137:34;19133:1;19125:6;19121:14;19114:58;19206:4;19201:2;19193:6;19189:15;19182:29;18997:221;:::o;19224:366::-;19366:3;19387:67;19451:2;19446:3;19387:67;:::i;:::-;19380:74;;19463:93;19552:3;19463:93;:::i;:::-;19581:2;19576:3;19572:12;19565:19;;19224:366;;;:::o;19596:419::-;19762:4;19800:2;19789:9;19785:18;19777:26;;19849:9;19843:4;19839:20;19835:1;19824:9;19820:17;19813:47;19877:131;20003:4;19877:131;:::i;:::-;19869:139;;19596:419;;;:::o;20021:348::-;20061:7;20084:20;20102:1;20084:20;:::i;:::-;20079:25;;20118:20;20136:1;20118:20;:::i;:::-;20113:25;;20306:1;20238:66;20234:74;20231:1;20228:81;20223:1;20216:9;20209:17;20205:105;20202:131;;;20313:18;;:::i;:::-;20202:131;20361:1;20358;20354:9;20343:20;;20021:348;;;;:::o;20375:179::-;20515:31;20511:1;20503:6;20499:14;20492:55;20375:179;:::o;20560:366::-;20702:3;20723:67;20787:2;20782:3;20723:67;:::i;:::-;20716:74;;20799:93;20888:3;20799:93;:::i;:::-;20917:2;20912:3;20908:12;20901:19;;20560:366;;;:::o;20932:419::-;21098:4;21136:2;21125:9;21121:18;21113:26;;21185:9;21179:4;21175:20;21171:1;21160:9;21156:17;21149:47;21213:131;21339:4;21213:131;:::i;:::-;21205:139;;20932:419;;;:::o;21357:148::-;21459:11;21496:3;21481:18;;21357:148;;;;:::o;21511:377::-;21617:3;21645:39;21678:5;21645:39;:::i;:::-;21700:89;21782:6;21777:3;21700:89;:::i;:::-;21693:96;;21798:52;21843:6;21838:3;21831:4;21824:5;21820:16;21798:52;:::i;:::-;21875:6;21870:3;21866:16;21859:23;;21621:267;21511:377;;;;:::o;21894:435::-;22074:3;22096:95;22187:3;22178:6;22096:95;:::i;:::-;22089:102;;22208:95;22299:3;22290:6;22208:95;:::i;:::-;22201:102;;22320:3;22313:10;;21894:435;;;;;:::o;22335:225::-;22475:34;22471:1;22463:6;22459:14;22452:58;22544:8;22539:2;22531:6;22527:15;22520:33;22335:225;:::o;22566:366::-;22708:3;22729:67;22793:2;22788:3;22729:67;:::i;:::-;22722:74;;22805:93;22894:3;22805:93;:::i;:::-;22923:2;22918:3;22914:12;22907:19;;22566:366;;;:::o;22938:419::-;23104:4;23142:2;23131:9;23127:18;23119:26;;23191:9;23185:4;23181:20;23177:1;23166:9;23162:17;23155:47;23219:131;23345:4;23219:131;:::i;:::-;23211:139;;22938:419;;;:::o;23363:182::-;23503:34;23499:1;23491:6;23487:14;23480:58;23363:182;:::o;23551:366::-;23693:3;23714:67;23778:2;23773:3;23714:67;:::i;:::-;23707:74;;23790:93;23879:3;23790:93;:::i;:::-;23908:2;23903:3;23899:12;23892:19;;23551:366;;;:::o;23923:419::-;24089:4;24127:2;24116:9;24112:18;24104:26;;24176:9;24170:4;24166:20;24162:1;24151:9;24147:17;24140:47;24204:131;24330:4;24204:131;:::i;:::-;24196:139;;23923:419;;;:::o;24348:98::-;24399:6;24433:5;24427:12;24417:22;;24348:98;;;:::o;24452:168::-;24535:11;24569:6;24564:3;24557:19;24609:4;24604:3;24600:14;24585:29;;24452:168;;;;:::o;24626:360::-;24712:3;24740:38;24772:5;24740:38;:::i;:::-;24794:70;24857:6;24852:3;24794:70;:::i;:::-;24787:77;;24873:52;24918:6;24913:3;24906:4;24899:5;24895:16;24873:52;:::i;:::-;24950:29;24972:6;24950:29;:::i;:::-;24945:3;24941:39;24934:46;;24716:270;24626:360;;;;:::o;24992:640::-;25187:4;25225:3;25214:9;25210:19;25202:27;;25239:71;25307:1;25296:9;25292:17;25283:6;25239:71;:::i;:::-;25320:72;25388:2;25377:9;25373:18;25364:6;25320:72;:::i;:::-;25402;25470:2;25459:9;25455:18;25446:6;25402:72;:::i;:::-;25521:9;25515:4;25511:20;25506:2;25495:9;25491:18;25484:48;25549:76;25620:4;25611:6;25549:76;:::i;:::-;25541:84;;24992:640;;;;;;;:::o;25638:141::-;25694:5;25725:6;25719:13;25710:22;;25741:32;25767:5;25741:32;:::i;:::-;25638:141;;;;:::o;25785:349::-;25854:6;25903:2;25891:9;25882:7;25878:23;25874:32;25871:119;;;25909:79;;:::i;:::-;25871:119;26029:1;26054:63;26109:7;26100:6;26089:9;26085:22;26054:63;:::i;:::-;26044:73;;26000:127;25785:349;;;;:::o
Swarm Source
ipfs://873f98afb510c537eca69ad8e2e5bebfd2253cacaeba8a82cd46661ec4bc393e
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.