Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 70 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 17570892 | 632 days ago | IN | 0 ETH | 0.00072342 | ||||
Set Approval For... | 16095489 | 839 days ago | IN | 0 ETH | 0.00058004 | ||||
Set Approval For... | 15037419 | 997 days ago | IN | 0 ETH | 0.00217658 | ||||
Set Approval For... | 14870914 | 1025 days ago | IN | 0 ETH | 0.00075274 | ||||
Withdraw | 13921630 | 1174 days ago | IN | 0 ETH | 0.00314519 | ||||
Mint Sale NFT | 13918715 | 1174 days ago | IN | 0.4 ETH | 0.05242513 | ||||
Transfer From | 13882860 | 1180 days ago | IN | 0 ETH | 0.00499756 | ||||
Transfer From | 13882826 | 1180 days ago | IN | 0 ETH | 0.00573794 | ||||
Transfer From | 13860253 | 1183 days ago | IN | 0 ETH | 0.00582621 | ||||
Transfer From | 13860071 | 1183 days ago | IN | 0 ETH | 0.00582328 | ||||
Transfer From | 13859712 | 1183 days ago | IN | 0 ETH | 0.00622426 | ||||
Transfer From | 13857954 | 1184 days ago | IN | 0 ETH | 0.00617017 | ||||
Transfer From | 13857928 | 1184 days ago | IN | 0 ETH | 0.00706984 | ||||
Mint Reserve NFT | 13855191 | 1184 days ago | IN | 0 ETH | 0.01216013 | ||||
Set Approval For... | 13854200 | 1184 days ago | IN | 0 ETH | 0.0023284 | ||||
Mint Reserve NFT | 13852892 | 1185 days ago | IN | 0 ETH | 0.00883864 | ||||
Set Sale Status | 13850426 | 1185 days ago | IN | 0 ETH | 0.0030657 | ||||
Set Approval For... | 13850325 | 1185 days ago | IN | 0 ETH | 0.00302587 | ||||
Set Base URI | 13850272 | 1185 days ago | IN | 0 ETH | 0.00182955 | ||||
Set Sale Status | 13850163 | 1185 days ago | IN | 0 ETH | 0.00229255 | ||||
Withdraw | 13850072 | 1185 days ago | IN | 0 ETH | 0.00191225 | ||||
Set Approval For... | 13850014 | 1185 days ago | IN | 0 ETH | 0.00289809 | ||||
Mint Sale NFT | 13849835 | 1185 days ago | IN | 0.4 ETH | 0.07329925 | ||||
Set Approval For... | 13849052 | 1185 days ago | IN | 0 ETH | 0.00260398 | ||||
Withdraw | 13848955 | 1185 days ago | IN | 0 ETH | 0.00188636 |
Loading...
Loading
Contract Name:
MerryApesClub
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./ERC721Enumerable.sol"; import "./ERC721Burnable.sol"; import "./Ownable.sol"; import "./SafeMath.sol"; import "./Counters.sol"; import "./ERC721Pausable.sol"; contract MerryApesClub is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable { using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIdTracker; uint256 public SALE_NFT = 8888; uint256 public RESERVE_NFT = 1112; uint256 public MAX_NFT = RESERVE_NFT.add(SALE_NFT); uint256 public MAX_BY_MINT_SALE = 20; uint256 public FREE_NFT = 1; uint256 public FREE_NFT_RANGE = 5; uint256 public SALE_MINTED; uint256 public RESERVE_MINTED; uint256 public SALE_PRICE = 8 * 10**16; string public baseTokenURI; struct User { uint256 salemint; } mapping (address => User) public users; bool public saleEnable = false; event CreateApes(uint256 indexed id); constructor(string memory baseURI) ERC721("Merry Apes Club", "Apes") { setBaseURI(baseURI); pause(true); } modifier saleIsOpen { if (_msgSender() != owner()) { require(!paused(), "Pausable: paused"); } _; } function _totalSupply() internal view returns (uint) { return _tokenIdTracker.current(); } function mintReserveNFT(uint256 _count) public onlyOwner{ require( RESERVE_MINTED + _count <= RESERVE_NFT, "Max limit" ); for (uint256 i = 0; i < _count; i++) { _mintAnElement(msg.sender); RESERVE_MINTED++; } } function mintSaleNFT(uint256 _count) public payable saleIsOpen { uint256 total = SALE_MINTED; require( saleEnable, "Sale is not enable" ); require( users[msg.sender].salemint.add(_count) <= MAX_BY_MINT_SALE, "Exceeds max mint limit per wallet" ); require( msg.value >= SALE_PRICE.mul(_count), "Value below price" ); if(_count >= FREE_NFT_RANGE) { uint256 totalFree = _count.div(FREE_NFT_RANGE); totalFree = totalFree.mul(FREE_NFT); _count = _count.add(totalFree); } require( total.add(_count) <= SALE_NFT, "Exceeds max sale limit" ); for (uint256 i = 0; i < _count; i++) { _mintAnElement(msg.sender); SALE_MINTED++; } users[msg.sender].salemint = users[msg.sender].salemint.add(_count); } function _mintAnElement(address _to) private { uint id = _totalSupply(); _tokenIdTracker.increment(); _safeMint(_to, id); emit CreateApes(id); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function walletOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function pause(bool val) public onlyOwner { if (val == true) { _pause(); return; } _unpause(); } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } function updateSalePrice(uint256 newPrice) external onlyOwner { SALE_PRICE = newPrice; } function setSaleStatus(bool _status) public onlyOwner { require(saleEnable != _status); saleEnable = _status; } function updateSaleMintLimit(uint256 newLimit) external onlyOwner { require(SALE_NFT >= newLimit, "Incorrect value"); MAX_BY_MINT_SALE = newLimit; } function updateGiveawayLimit(uint256 newLimit) external onlyOwner { require(RESERVE_MINTED <= newLimit, "Incorrect value"); RESERVE_NFT = newLimit; } function updateSaleLimit(uint256 newLimit) external onlyOwner { require(SALE_MINTED <= newLimit, "Incorrect value"); SALE_NFT = newLimit; } function updateFreeNFTLimit(uint256 newLimit) external onlyOwner { require(MAX_NFT >= newLimit, "Incorrect value"); FREE_NFT = newLimit; } function updateFreeNFTRange(uint256 newLimit) external onlyOwner { FREE_NFT_RANGE = newLimit; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./Pausable.sol"; import "./Ownable.sol"; /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Ownable, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (_msgSender() != owner()) { require(!paused(), "ERC721Pausable: token transfer while paused"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"CreateApes","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"FREE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_NFT_RANGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintReserveNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"saleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateFreeNFTLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateFreeNFTRange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateGiveawayLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateSaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"users","outputs":[{"internalType":"uint256","name":"salemint","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526122b8600c55610458600d556200002e600c54600d546200013860201b620015421790919060201c565b600e556014600f8190556001601055600560115567011c37937e08000090556017805460ff191690553480156200006457600080fd5b50604051620033e5380380620033e5833981016040819052620000879162000421565b604080518082018252600f81526e26b2b9393c9020b832b99021b63ab160891b6020808301918252835180850190945260048452634170657360e01b908401528151919291620000da916000916200037b565b508051620000f09060019060208401906200037b565b5050506200010d620001076200014d60201b60201c565b62000151565b600a805460ff60a01b191690556200012581620001a3565b6200013160016200020b565b5062000612565b60006200014682846200059a565b9392505050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001ad6200014d565b6001600160a01b0316620001c06200027a565b6001600160a01b031614620001f25760405162461bcd60e51b8152600401620001e99062000565565b60405180910390fd5b8051620002079060159060208401906200037b565b5050565b620002156200014d565b6001600160a01b0316620002286200027a565b6001600160a01b031614620002515760405162461bcd60e51b8152600401620001e99062000565565b600181151514156200026d576200026762000289565b62000277565b620002776200030a565b50565b600a546001600160a01b031690565b620002936200036b565b15620002b35760405162461bcd60e51b8152600401620001e9906200053b565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002f16200014d565b604051620003009190620004f0565b60405180910390a1565b620003146200036b565b620003335760405162461bcd60e51b8152600401620001e99062000504565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa620002f16200014d565b600a54600160a01b900460ff1690565b8280546200038990620005bf565b90600052602060002090601f016020900481019282620003ad5760008555620003f8565b82601f10620003c857805160ff1916838001178555620003f8565b82800160010185558215620003f8579182015b82811115620003f8578251825591602001919060010190620003db565b50620004069291506200040a565b5090565b5b808211156200040657600081556001016200040b565b6000602080838503121562000434578182fd5b82516001600160401b03808211156200044b578384fd5b818501915085601f8301126200045f578384fd5b815181811115620004745762000474620005fc565b604051601f8201601f19168101850183811182821017156200049a576200049a620005fc565b6040528181528382018501881015620004b1578586fd5b8592505b81831015620004d45783830185015181840186015291840191620004b5565b81831115620004e557858583830101525b979650505050505050565b6001600160a01b0391909116815260200190565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115620005ba57634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620005d457607f821691505b60208210811415620005f657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612dc380620006226000396000f3fe60806040526004361061027d5760003560e01c806370a082311161014f578063a9526862116100c1578063e29879a81161007a578063e29879a814610706578063e985e9c514610726578063eee3a92a14610746578063f176baaa14610766578063f2fde38b14610786578063fe4ca847146107a65761027d565b8063a952686214610669578063b3aa76a01461067c578063b88d4fde14610691578063c87b56dd146106b1578063d547cfb7146106d1578063d897833e146106e65761027d565b80638d007f69116101135780638d007f69146105d55780638da5cb5b146105ea57806395d89b41146105ff578063995b8ef614610614578063a22cb46514610629578063a87430ba146106495761027d565b806370a082311461054b578063715018a61461056b5780637ec0912e146105805780637f205a74146105a0578063825dd981146105b55761027d565b806338295b87116101f35780634f6ccce7116101ac5780634f6ccce7146104ac57806350d20f9a146104cc57806355f804b3146104e15780635c975abb146105015780636352211e146105165780636fdaddf1146105365761027d565b806338295b87146103f55780633ccfd60b1461040a578063414c377b1461041f57806342842e0e1461043f57806342966c681461045f578063438b63001461047f5761027d565b8063095ea7b311610245578063095ea7b31461034b5780630990e5341461036b5780631781400a1461038057806318160ddd146103a057806323b872dd146103b55780632f745c59146103d55761027d565b806301ffc9a71461028257806302329a29146102b857806306fdde03146102da578063081812fc146102fc57806308e5e45b14610329575b600080fd5b34801561028e57600080fd5b506102a261029d36600461238c565b6107bb565b6040516102af9190612512565b60405180910390f35b3480156102c457600080fd5b506102d86102d3366004612372565b6107ce565b005b3480156102e657600080fd5b506102ef610839565b6040516102af919061251d565b34801561030857600080fd5b5061031c61031736600461240a565b6108cb565b6040516102af919061247d565b34801561033557600080fd5b5061033e61090e565b6040516102af9190612c34565b34801561035757600080fd5b506102d8610366366004612349565b610914565b34801561037757600080fd5b5061033e6109ac565b34801561038c57600080fd5b506102d861039b36600461240a565b6109b2565b3480156103ac57600080fd5b5061033e6109f6565b3480156103c157600080fd5b506102d86103d036600461226c565b6109fc565b3480156103e157600080fd5b5061033e6103f0366004612349565b610a34565b34801561040157600080fd5b5061033e610a86565b34801561041657600080fd5b506102d8610a8c565b34801561042b57600080fd5b506102d861043a36600461240a565b610afe565b34801561044b57600080fd5b506102d861045a36600461226c565b610b64565b34801561046b57600080fd5b506102d861047a36600461240a565b610b7f565b34801561048b57600080fd5b5061049f61049a366004612220565b610baf565b6040516102af91906124ce565b3480156104b857600080fd5b5061033e6104c736600461240a565b610c6d565b3480156104d857600080fd5b5061033e610cc8565b3480156104ed57600080fd5b506102d86104fc3660046123c4565b610cce565b34801561050d57600080fd5b506102a2610d20565b34801561052257600080fd5b5061031c61053136600461240a565b610d30565b34801561054257600080fd5b5061033e610d65565b34801561055757600080fd5b5061033e610566366004612220565b610d6b565b34801561057757600080fd5b506102d8610daf565b34801561058c57600080fd5b506102d861059b36600461240a565b610dfa565b3480156105ac57600080fd5b5061033e610e3e565b3480156105c157600080fd5b506102d86105d036600461240a565b610e44565b3480156105e157600080fd5b5061033e610eee565b3480156105f657600080fd5b5061031c610ef4565b34801561060b57600080fd5b506102ef610f03565b34801561062057600080fd5b5061033e610f12565b34801561063557600080fd5b506102d8610644366004612320565b610f18565b34801561065557600080fd5b5061033e610664366004612220565b610fe6565b6102d861067736600461240a565b610ff8565b34801561068857600080fd5b5061033e6111ad565b34801561069d57600080fd5b506102d86106ac3660046122a7565b6111b3565b3480156106bd57600080fd5b506102ef6106cc36600461240a565b6111f2565b3480156106dd57600080fd5b506102ef611275565b3480156106f257600080fd5b506102d8610701366004612372565b611303565b34801561071257600080fd5b506102d861072136600461240a565b61136b565b34801561073257600080fd5b506102a261074136600461223a565b6113d1565b34801561075257600080fd5b506102d861076136600461240a565b6113ff565b34801561077257600080fd5b506102d861078136600461240a565b611465565b34801561079257600080fd5b506102d86107a1366004612220565b6114cb565b3480156107b257600080fd5b506102a2611539565b60006107c68261154e565b90505b919050565b6107d6611573565b6001600160a01b03166107e7610ef4565b6001600160a01b0316146108165760405162461bcd60e51b815260040161080d9061299d565b60405180910390fd5b6001811515141561082e57610829611577565b610836565b6108366115ef565b50565b60606000805461084890612ccb565b80601f016020809104026020016040519081016040528092919081815260200182805461087490612ccb565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d682611649565b6108f25760405162461bcd60e51b815260040161080d90612928565b506000908152600460205260409020546001600160a01b031690565b600f5481565b600061091f82610d30565b9050806001600160a01b0316836001600160a01b031614156109535760405162461bcd60e51b815260040161080d90612a95565b806001600160a01b0316610965611573565b6001600160a01b03161480610981575061098181610741611573565b61099d5760405162461bcd60e51b815260040161080d90612803565b6109a78383611666565b505050565b60125481565b6109ba611573565b6001600160a01b03166109cb610ef4565b6001600160a01b0316146109f15760405162461bcd60e51b815260040161080d9061299d565b601155565b60085490565b610a0d610a07611573565b826116d4565b610a295760405162461bcd60e51b815260040161080d90612ad6565b6109a7838383611759565b6000610a3f83610d6b565b8210610a5d5760405162461bcd60e51b815260040161080d906125a9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60135481565b610a94611573565b6001600160a01b0316610aa5610ef4565b6001600160a01b031614610acb5760405162461bcd60e51b815260040161080d9061299d565b6040514790339082156108fc029083906000818181858888f19350505050158015610afa573d6000803e3d6000fd5b5050565b610b06611573565b6001600160a01b0316610b17610ef4565b6001600160a01b031614610b3d5760405162461bcd60e51b815260040161080d9061299d565b806012541115610b5f5760405162461bcd60e51b815260040161080d90612974565b600c55565b6109a7838383604051806020016040528060008152506111b3565b610b8a610a07611573565b610ba65760405162461bcd60e51b815260040161080d90612be4565b61083681611886565b60606000610bbc83610d6b565b905060008167ffffffffffffffff811115610be757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c10578160200160208202803683370190505b50905060005b82811015610c6557610c288582610a34565b828281518110610c4857634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610c5d81612d06565b915050610c16565b509392505050565b6000610c776109f6565b8210610c955760405162461bcd60e51b815260040161080d90612b68565b60088281548110610cb657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b60115481565b610cd6611573565b6001600160a01b0316610ce7610ef4565b6001600160a01b031614610d0d5760405162461bcd60e51b815260040161080d9061299d565b8051610afa9060159060208401906120f0565b600a54600160a01b900460ff1690565b6000818152600260205260408120546001600160a01b0316806107c65760405162461bcd60e51b815260040161080d906128aa565b600e5481565b60006001600160a01b038216610d935760405162461bcd60e51b815260040161080d90612860565b506001600160a01b031660009081526003602052604090205490565b610db7611573565b6001600160a01b0316610dc8610ef4565b6001600160a01b031614610dee5760405162461bcd60e51b815260040161080d9061299d565b610df8600061192d565b565b610e02611573565b6001600160a01b0316610e13610ef4565b6001600160a01b031614610e395760405162461bcd60e51b815260040161080d9061299d565b601455565b60145481565b610e4c611573565b6001600160a01b0316610e5d610ef4565b6001600160a01b031614610e835760405162461bcd60e51b815260040161080d9061299d565b600d5481601354610e949190612c3d565b1115610eb25760405162461bcd60e51b815260040161080d9061273e565b60005b81811015610afa57610ec63361197f565b60138054906000610ed683612d06565b91905055508080610ee690612d06565b915050610eb5565b600d5481565b600a546001600160a01b031690565b60606001805461084890612ccb565b600c5481565b610f20611573565b6001600160a01b0316826001600160a01b03161415610f515760405162461bcd60e51b815260040161080d90612707565b8060056000610f5e611573565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610fa2611573565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fda9190612512565b60405180910390a35050565b60166020526000908152604090205481565b611000610ef4565b6001600160a01b0316611011611573565b6001600160a01b03161461104457611027610d20565b156110445760405162461bcd60e51b815260040161080d906127d9565b60125460175460ff166110695760405162461bcd60e51b815260040161080d90612761565b600f54336000908152601660205260409020546110869084611542565b11156110a45760405162461bcd60e51b815260040161080d90612b27565b6014546110b190836119ce565b3410156110d05760405162461bcd60e51b815260040161080d90612a6a565b60115482106111175760006110f0601154846119da90919063ffffffff16565b9050611107601054826119ce90919063ffffffff16565b90506111138382611542565b9250505b600c546111248284611542565b11156111425760405162461bcd60e51b815260040161080d90612bb4565b60005b8281101561117e576111563361197f565b6012805490600061116683612d06565b9190505550808061117690612d06565b915050611145565b50336000908152601660205260409020546111999083611542565b336000908152601660205260409020555050565b60105481565b6111c46111be611573565b836116d4565b6111e05760405162461bcd60e51b815260040161080d90612ad6565b6111ec848484846119e6565b50505050565b60606111fd82611649565b6112195760405162461bcd60e51b815260040161080d90612a1b565b6000611223611a19565b90506000815111611243576040518060200160405280600081525061126e565b8061124d84611a28565b60405160200161125e92919061244e565b6040516020818303038152906040525b9392505050565b6015805461128290612ccb565b80601f01602080910402602001604051908101604052809291908181526020018280546112ae90612ccb565b80156112fb5780601f106112d0576101008083540402835291602001916112fb565b820191906000526020600020905b8154815290600101906020018083116112de57829003601f168201915b505050505081565b61130b611573565b6001600160a01b031661131c610ef4565b6001600160a01b0316146113425760405162461bcd60e51b815260040161080d9061299d565b60175460ff161515811515141561135857600080fd5b6017805460ff1916911515919091179055565b611373611573565b6001600160a01b0316611384610ef4565b6001600160a01b0316146113aa5760405162461bcd60e51b815260040161080d9061299d565b8060135411156113cc5760405162461bcd60e51b815260040161080d90612974565b600d55565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611407611573565b6001600160a01b0316611418610ef4565b6001600160a01b03161461143e5760405162461bcd60e51b815260040161080d9061299d565b80600e5410156114605760405162461bcd60e51b815260040161080d90612974565b601055565b61146d611573565b6001600160a01b031661147e610ef4565b6001600160a01b0316146114a45760405162461bcd60e51b815260040161080d9061299d565b80600c5410156114c65760405162461bcd60e51b815260040161080d90612974565b600f55565b6114d3611573565b6001600160a01b03166114e4610ef4565b6001600160a01b03161461150a5760405162461bcd60e51b815260040161080d9061299d565b6001600160a01b0381166115305760405162461bcd60e51b815260040161080d90612646565b6108368161192d565b60175460ff1681565b600061126e8284612c3d565b60006001600160e01b0319821663780e9d6360e01b14806107c657506107c682611b43565b3390565b61157f610d20565b1561159c5760405162461bcd60e51b815260040161080d906127d9565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115d8611573565b6040516115e5919061247d565b60405180910390a1565b6115f7610d20565b6116135760405162461bcd60e51b815260040161080d9061257b565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6115d8611573565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061169b82610d30565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116df82611649565b6116fb5760405162461bcd60e51b815260040161080d9061278d565b600061170683610d30565b9050806001600160a01b0316846001600160a01b031614806117415750836001600160a01b0316611736846108cb565b6001600160a01b0316145b80611751575061175181856113d1565b949350505050565b826001600160a01b031661176c82610d30565b6001600160a01b0316146117925760405162461bcd60e51b815260040161080d906129d2565b6001600160a01b0382166117b85760405162461bcd60e51b815260040161080d906126c3565b6117c3838383611b83565b6117ce600082611666565b6001600160a01b03831660009081526003602052604081208054600192906117f7908490612c88565b90915550506001600160a01b0382166000908152600360205260408120805460019290611825908490612c3d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061189182610d30565b905061189f81600084611b83565b6118aa600083611666565b6001600160a01b03811660009081526003602052604081208054600192906118d3908490612c88565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611989611b8e565b9050611995600b611b9f565b61199f8282611ba8565b60405181907fe626f95ac408a788c699a93ef8fc33412ad6b6a1fad626f5ec94161630b001c190600090a25050565b600061126e8284612c69565b600061126e8284612c55565b6119f1848484611759565b6119fd84848484611bc2565b6111ec5760405162461bcd60e51b815260040161080d906125f4565b60606015805461084890612ccb565b606081611a4d57506040805180820190915260018152600360fc1b60208201526107c9565b8160005b8115611a775780611a6181612d06565b9150611a709050600a83612c55565b9150611a51565b60008167ffffffffffffffff811115611aa057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611aca576020820181803683370190505b5090505b841561175157611adf600183612c88565b9150611aec600a86612d21565b611af7906030612c3d565b60f81b818381518110611b1a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611b3c600a86612c55565b9450611ace565b60006001600160e01b031982166380ac58cd60e01b1480611b7457506001600160e01b03198216635b5e139f60e01b145b806107c657506107c682611cdd565b6109a7838383611cf6565b6000611b9a600b611d4d565b905090565b80546001019055565b610afa828260405180602001604052806000815250611d51565b6000611bd6846001600160a01b0316611d84565b15611cd257836001600160a01b031663150b7a02611bf2611573565b8786866040518563ffffffff1660e01b8152600401611c149493929190612491565b602060405180830381600087803b158015611c2e57600080fd5b505af1925050508015611c5e575060408051601f3d908101601f19168201909252611c5b918101906123a8565b60015b611cb8573d808015611c8c576040519150601f19603f3d011682016040523d82523d6000602084013e611c91565b606091505b508051611cb05760405162461bcd60e51b815260040161080d906125f4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611751565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611d01838383611d8a565b611d09610ef4565b6001600160a01b0316611d1a611573565b6001600160a01b0316146109a757611d30610d20565b156109a75760405162461bcd60e51b815260040161080d90612530565b5490565b611d5b8383611e13565b611d686000848484611bc2565b6109a75760405162461bcd60e51b815260040161080d906125f4565b3b151590565b611d958383836109a7565b6001600160a01b038316611db157611dac81611ef2565b611dd4565b816001600160a01b0316836001600160a01b031614611dd457611dd48382611f36565b6001600160a01b038216611df057611deb81611fd3565b6109a7565b826001600160a01b0316826001600160a01b0316146109a7576109a782826120ac565b6001600160a01b038216611e395760405162461bcd60e51b815260040161080d906128f3565b611e4281611649565b15611e5f5760405162461bcd60e51b815260040161080d9061268c565b611e6b60008383611b83565b6001600160a01b0382166000908152600360205260408120805460019290611e94908490612c3d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611f4384610d6b565b611f4d9190612c88565b600083815260076020526040902054909150808214611fa0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fe590600190612c88565b6000838152600960205260408120546008805493945090928490811061201b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061204a57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061209057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120b783610d6b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546120fc90612ccb565b90600052602060002090601f01602090048101928261211e5760008555612164565b82601f1061213757805160ff1916838001178555612164565b82800160010185558215612164579182015b82811115612164578251825591602001919060010190612149565b50612170929150612174565b5090565b5b808211156121705760008155600101612175565b600067ffffffffffffffff808411156121a4576121a4612d61565b604051601f8501601f1916810160200182811182821017156121c8576121c8612d61565b6040528481529150818385018610156121e057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107c957600080fd5b803580151581146107c957600080fd5b600060208284031215612231578081fd5b61126e826121f9565b6000806040838503121561224c578081fd5b612255836121f9565b9150612263602084016121f9565b90509250929050565b600080600060608486031215612280578081fd5b612289846121f9565b9250612297602085016121f9565b9150604084013590509250925092565b600080600080608085870312156122bc578081fd5b6122c5856121f9565b93506122d3602086016121f9565b925060408501359150606085013567ffffffffffffffff8111156122f5578182fd5b8501601f81018713612305578182fd5b61231487823560208401612189565b91505092959194509250565b60008060408385031215612332578182fd5b61233b836121f9565b915061226360208401612210565b6000806040838503121561235b578182fd5b612364836121f9565b946020939093013593505050565b600060208284031215612383578081fd5b61126e82612210565b60006020828403121561239d578081fd5b813561126e81612d77565b6000602082840312156123b9578081fd5b815161126e81612d77565b6000602082840312156123d5578081fd5b813567ffffffffffffffff8111156123eb578182fd5b8201601f810184136123fb578182fd5b61175184823560208401612189565b60006020828403121561241b578081fd5b5035919050565b6000815180845261243a816020860160208601612c9f565b601f01601f19169290920160200192915050565b60008351612460818460208801612c9f565b835190830190612474818360208801612c9f565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124c490830184612422565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612506578351835292840192918401916001016124ea565b50909695505050505050565b901515815260200190565b60006020825261126e6020830184612422565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b602080825260169082015275115e18d959591cc81b585e081cd85b19481b1a5b5a5d60521b604082015260600190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b90815260200190565b60008219821115612c5057612c50612d35565b500190565b600082612c6457612c64612d4b565b500490565b6000816000190483118215151615612c8357612c83612d35565b500290565b600082821015612c9a57612c9a612d35565b500390565b60005b83811015612cba578181015183820152602001612ca2565b838111156111ec5750506000910152565b600281046001821680612cdf57607f821691505b60208210811415612d0057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d1a57612d1a612d35565b5060010190565b600082612d3057612d30612d4b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461083657600080fdfea2646970667358221220d9007a3f355593384f05c005206a6442cfd5e93fa6a25427ad9dc90d312288e164736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d547652705148683837774c577873386e687539514d79417446434d584553564641683858696a4661647046382f00000000000000000000
Deployed Bytecode
0x60806040526004361061027d5760003560e01c806370a082311161014f578063a9526862116100c1578063e29879a81161007a578063e29879a814610706578063e985e9c514610726578063eee3a92a14610746578063f176baaa14610766578063f2fde38b14610786578063fe4ca847146107a65761027d565b8063a952686214610669578063b3aa76a01461067c578063b88d4fde14610691578063c87b56dd146106b1578063d547cfb7146106d1578063d897833e146106e65761027d565b80638d007f69116101135780638d007f69146105d55780638da5cb5b146105ea57806395d89b41146105ff578063995b8ef614610614578063a22cb46514610629578063a87430ba146106495761027d565b806370a082311461054b578063715018a61461056b5780637ec0912e146105805780637f205a74146105a0578063825dd981146105b55761027d565b806338295b87116101f35780634f6ccce7116101ac5780634f6ccce7146104ac57806350d20f9a146104cc57806355f804b3146104e15780635c975abb146105015780636352211e146105165780636fdaddf1146105365761027d565b806338295b87146103f55780633ccfd60b1461040a578063414c377b1461041f57806342842e0e1461043f57806342966c681461045f578063438b63001461047f5761027d565b8063095ea7b311610245578063095ea7b31461034b5780630990e5341461036b5780631781400a1461038057806318160ddd146103a057806323b872dd146103b55780632f745c59146103d55761027d565b806301ffc9a71461028257806302329a29146102b857806306fdde03146102da578063081812fc146102fc57806308e5e45b14610329575b600080fd5b34801561028e57600080fd5b506102a261029d36600461238c565b6107bb565b6040516102af9190612512565b60405180910390f35b3480156102c457600080fd5b506102d86102d3366004612372565b6107ce565b005b3480156102e657600080fd5b506102ef610839565b6040516102af919061251d565b34801561030857600080fd5b5061031c61031736600461240a565b6108cb565b6040516102af919061247d565b34801561033557600080fd5b5061033e61090e565b6040516102af9190612c34565b34801561035757600080fd5b506102d8610366366004612349565b610914565b34801561037757600080fd5b5061033e6109ac565b34801561038c57600080fd5b506102d861039b36600461240a565b6109b2565b3480156103ac57600080fd5b5061033e6109f6565b3480156103c157600080fd5b506102d86103d036600461226c565b6109fc565b3480156103e157600080fd5b5061033e6103f0366004612349565b610a34565b34801561040157600080fd5b5061033e610a86565b34801561041657600080fd5b506102d8610a8c565b34801561042b57600080fd5b506102d861043a36600461240a565b610afe565b34801561044b57600080fd5b506102d861045a36600461226c565b610b64565b34801561046b57600080fd5b506102d861047a36600461240a565b610b7f565b34801561048b57600080fd5b5061049f61049a366004612220565b610baf565b6040516102af91906124ce565b3480156104b857600080fd5b5061033e6104c736600461240a565b610c6d565b3480156104d857600080fd5b5061033e610cc8565b3480156104ed57600080fd5b506102d86104fc3660046123c4565b610cce565b34801561050d57600080fd5b506102a2610d20565b34801561052257600080fd5b5061031c61053136600461240a565b610d30565b34801561054257600080fd5b5061033e610d65565b34801561055757600080fd5b5061033e610566366004612220565b610d6b565b34801561057757600080fd5b506102d8610daf565b34801561058c57600080fd5b506102d861059b36600461240a565b610dfa565b3480156105ac57600080fd5b5061033e610e3e565b3480156105c157600080fd5b506102d86105d036600461240a565b610e44565b3480156105e157600080fd5b5061033e610eee565b3480156105f657600080fd5b5061031c610ef4565b34801561060b57600080fd5b506102ef610f03565b34801561062057600080fd5b5061033e610f12565b34801561063557600080fd5b506102d8610644366004612320565b610f18565b34801561065557600080fd5b5061033e610664366004612220565b610fe6565b6102d861067736600461240a565b610ff8565b34801561068857600080fd5b5061033e6111ad565b34801561069d57600080fd5b506102d86106ac3660046122a7565b6111b3565b3480156106bd57600080fd5b506102ef6106cc36600461240a565b6111f2565b3480156106dd57600080fd5b506102ef611275565b3480156106f257600080fd5b506102d8610701366004612372565b611303565b34801561071257600080fd5b506102d861072136600461240a565b61136b565b34801561073257600080fd5b506102a261074136600461223a565b6113d1565b34801561075257600080fd5b506102d861076136600461240a565b6113ff565b34801561077257600080fd5b506102d861078136600461240a565b611465565b34801561079257600080fd5b506102d86107a1366004612220565b6114cb565b3480156107b257600080fd5b506102a2611539565b60006107c68261154e565b90505b919050565b6107d6611573565b6001600160a01b03166107e7610ef4565b6001600160a01b0316146108165760405162461bcd60e51b815260040161080d9061299d565b60405180910390fd5b6001811515141561082e57610829611577565b610836565b6108366115ef565b50565b60606000805461084890612ccb565b80601f016020809104026020016040519081016040528092919081815260200182805461087490612ccb565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d682611649565b6108f25760405162461bcd60e51b815260040161080d90612928565b506000908152600460205260409020546001600160a01b031690565b600f5481565b600061091f82610d30565b9050806001600160a01b0316836001600160a01b031614156109535760405162461bcd60e51b815260040161080d90612a95565b806001600160a01b0316610965611573565b6001600160a01b03161480610981575061098181610741611573565b61099d5760405162461bcd60e51b815260040161080d90612803565b6109a78383611666565b505050565b60125481565b6109ba611573565b6001600160a01b03166109cb610ef4565b6001600160a01b0316146109f15760405162461bcd60e51b815260040161080d9061299d565b601155565b60085490565b610a0d610a07611573565b826116d4565b610a295760405162461bcd60e51b815260040161080d90612ad6565b6109a7838383611759565b6000610a3f83610d6b565b8210610a5d5760405162461bcd60e51b815260040161080d906125a9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60135481565b610a94611573565b6001600160a01b0316610aa5610ef4565b6001600160a01b031614610acb5760405162461bcd60e51b815260040161080d9061299d565b6040514790339082156108fc029083906000818181858888f19350505050158015610afa573d6000803e3d6000fd5b5050565b610b06611573565b6001600160a01b0316610b17610ef4565b6001600160a01b031614610b3d5760405162461bcd60e51b815260040161080d9061299d565b806012541115610b5f5760405162461bcd60e51b815260040161080d90612974565b600c55565b6109a7838383604051806020016040528060008152506111b3565b610b8a610a07611573565b610ba65760405162461bcd60e51b815260040161080d90612be4565b61083681611886565b60606000610bbc83610d6b565b905060008167ffffffffffffffff811115610be757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c10578160200160208202803683370190505b50905060005b82811015610c6557610c288582610a34565b828281518110610c4857634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610c5d81612d06565b915050610c16565b509392505050565b6000610c776109f6565b8210610c955760405162461bcd60e51b815260040161080d90612b68565b60088281548110610cb657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b60115481565b610cd6611573565b6001600160a01b0316610ce7610ef4565b6001600160a01b031614610d0d5760405162461bcd60e51b815260040161080d9061299d565b8051610afa9060159060208401906120f0565b600a54600160a01b900460ff1690565b6000818152600260205260408120546001600160a01b0316806107c65760405162461bcd60e51b815260040161080d906128aa565b600e5481565b60006001600160a01b038216610d935760405162461bcd60e51b815260040161080d90612860565b506001600160a01b031660009081526003602052604090205490565b610db7611573565b6001600160a01b0316610dc8610ef4565b6001600160a01b031614610dee5760405162461bcd60e51b815260040161080d9061299d565b610df8600061192d565b565b610e02611573565b6001600160a01b0316610e13610ef4565b6001600160a01b031614610e395760405162461bcd60e51b815260040161080d9061299d565b601455565b60145481565b610e4c611573565b6001600160a01b0316610e5d610ef4565b6001600160a01b031614610e835760405162461bcd60e51b815260040161080d9061299d565b600d5481601354610e949190612c3d565b1115610eb25760405162461bcd60e51b815260040161080d9061273e565b60005b81811015610afa57610ec63361197f565b60138054906000610ed683612d06565b91905055508080610ee690612d06565b915050610eb5565b600d5481565b600a546001600160a01b031690565b60606001805461084890612ccb565b600c5481565b610f20611573565b6001600160a01b0316826001600160a01b03161415610f515760405162461bcd60e51b815260040161080d90612707565b8060056000610f5e611573565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610fa2611573565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fda9190612512565b60405180910390a35050565b60166020526000908152604090205481565b611000610ef4565b6001600160a01b0316611011611573565b6001600160a01b03161461104457611027610d20565b156110445760405162461bcd60e51b815260040161080d906127d9565b60125460175460ff166110695760405162461bcd60e51b815260040161080d90612761565b600f54336000908152601660205260409020546110869084611542565b11156110a45760405162461bcd60e51b815260040161080d90612b27565b6014546110b190836119ce565b3410156110d05760405162461bcd60e51b815260040161080d90612a6a565b60115482106111175760006110f0601154846119da90919063ffffffff16565b9050611107601054826119ce90919063ffffffff16565b90506111138382611542565b9250505b600c546111248284611542565b11156111425760405162461bcd60e51b815260040161080d90612bb4565b60005b8281101561117e576111563361197f565b6012805490600061116683612d06565b9190505550808061117690612d06565b915050611145565b50336000908152601660205260409020546111999083611542565b336000908152601660205260409020555050565b60105481565b6111c46111be611573565b836116d4565b6111e05760405162461bcd60e51b815260040161080d90612ad6565b6111ec848484846119e6565b50505050565b60606111fd82611649565b6112195760405162461bcd60e51b815260040161080d90612a1b565b6000611223611a19565b90506000815111611243576040518060200160405280600081525061126e565b8061124d84611a28565b60405160200161125e92919061244e565b6040516020818303038152906040525b9392505050565b6015805461128290612ccb565b80601f01602080910402602001604051908101604052809291908181526020018280546112ae90612ccb565b80156112fb5780601f106112d0576101008083540402835291602001916112fb565b820191906000526020600020905b8154815290600101906020018083116112de57829003601f168201915b505050505081565b61130b611573565b6001600160a01b031661131c610ef4565b6001600160a01b0316146113425760405162461bcd60e51b815260040161080d9061299d565b60175460ff161515811515141561135857600080fd5b6017805460ff1916911515919091179055565b611373611573565b6001600160a01b0316611384610ef4565b6001600160a01b0316146113aa5760405162461bcd60e51b815260040161080d9061299d565b8060135411156113cc5760405162461bcd60e51b815260040161080d90612974565b600d55565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611407611573565b6001600160a01b0316611418610ef4565b6001600160a01b03161461143e5760405162461bcd60e51b815260040161080d9061299d565b80600e5410156114605760405162461bcd60e51b815260040161080d90612974565b601055565b61146d611573565b6001600160a01b031661147e610ef4565b6001600160a01b0316146114a45760405162461bcd60e51b815260040161080d9061299d565b80600c5410156114c65760405162461bcd60e51b815260040161080d90612974565b600f55565b6114d3611573565b6001600160a01b03166114e4610ef4565b6001600160a01b03161461150a5760405162461bcd60e51b815260040161080d9061299d565b6001600160a01b0381166115305760405162461bcd60e51b815260040161080d90612646565b6108368161192d565b60175460ff1681565b600061126e8284612c3d565b60006001600160e01b0319821663780e9d6360e01b14806107c657506107c682611b43565b3390565b61157f610d20565b1561159c5760405162461bcd60e51b815260040161080d906127d9565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115d8611573565b6040516115e5919061247d565b60405180910390a1565b6115f7610d20565b6116135760405162461bcd60e51b815260040161080d9061257b565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6115d8611573565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061169b82610d30565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116df82611649565b6116fb5760405162461bcd60e51b815260040161080d9061278d565b600061170683610d30565b9050806001600160a01b0316846001600160a01b031614806117415750836001600160a01b0316611736846108cb565b6001600160a01b0316145b80611751575061175181856113d1565b949350505050565b826001600160a01b031661176c82610d30565b6001600160a01b0316146117925760405162461bcd60e51b815260040161080d906129d2565b6001600160a01b0382166117b85760405162461bcd60e51b815260040161080d906126c3565b6117c3838383611b83565b6117ce600082611666565b6001600160a01b03831660009081526003602052604081208054600192906117f7908490612c88565b90915550506001600160a01b0382166000908152600360205260408120805460019290611825908490612c3d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061189182610d30565b905061189f81600084611b83565b6118aa600083611666565b6001600160a01b03811660009081526003602052604081208054600192906118d3908490612c88565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611989611b8e565b9050611995600b611b9f565b61199f8282611ba8565b60405181907fe626f95ac408a788c699a93ef8fc33412ad6b6a1fad626f5ec94161630b001c190600090a25050565b600061126e8284612c69565b600061126e8284612c55565b6119f1848484611759565b6119fd84848484611bc2565b6111ec5760405162461bcd60e51b815260040161080d906125f4565b60606015805461084890612ccb565b606081611a4d57506040805180820190915260018152600360fc1b60208201526107c9565b8160005b8115611a775780611a6181612d06565b9150611a709050600a83612c55565b9150611a51565b60008167ffffffffffffffff811115611aa057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611aca576020820181803683370190505b5090505b841561175157611adf600183612c88565b9150611aec600a86612d21565b611af7906030612c3d565b60f81b818381518110611b1a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611b3c600a86612c55565b9450611ace565b60006001600160e01b031982166380ac58cd60e01b1480611b7457506001600160e01b03198216635b5e139f60e01b145b806107c657506107c682611cdd565b6109a7838383611cf6565b6000611b9a600b611d4d565b905090565b80546001019055565b610afa828260405180602001604052806000815250611d51565b6000611bd6846001600160a01b0316611d84565b15611cd257836001600160a01b031663150b7a02611bf2611573565b8786866040518563ffffffff1660e01b8152600401611c149493929190612491565b602060405180830381600087803b158015611c2e57600080fd5b505af1925050508015611c5e575060408051601f3d908101601f19168201909252611c5b918101906123a8565b60015b611cb8573d808015611c8c576040519150601f19603f3d011682016040523d82523d6000602084013e611c91565b606091505b508051611cb05760405162461bcd60e51b815260040161080d906125f4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611751565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611d01838383611d8a565b611d09610ef4565b6001600160a01b0316611d1a611573565b6001600160a01b0316146109a757611d30610d20565b156109a75760405162461bcd60e51b815260040161080d90612530565b5490565b611d5b8383611e13565b611d686000848484611bc2565b6109a75760405162461bcd60e51b815260040161080d906125f4565b3b151590565b611d958383836109a7565b6001600160a01b038316611db157611dac81611ef2565b611dd4565b816001600160a01b0316836001600160a01b031614611dd457611dd48382611f36565b6001600160a01b038216611df057611deb81611fd3565b6109a7565b826001600160a01b0316826001600160a01b0316146109a7576109a782826120ac565b6001600160a01b038216611e395760405162461bcd60e51b815260040161080d906128f3565b611e4281611649565b15611e5f5760405162461bcd60e51b815260040161080d9061268c565b611e6b60008383611b83565b6001600160a01b0382166000908152600360205260408120805460019290611e94908490612c3d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611f4384610d6b565b611f4d9190612c88565b600083815260076020526040902054909150808214611fa0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fe590600190612c88565b6000838152600960205260408120546008805493945090928490811061201b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061204a57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061209057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120b783610d6b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546120fc90612ccb565b90600052602060002090601f01602090048101928261211e5760008555612164565b82601f1061213757805160ff1916838001178555612164565b82800160010185558215612164579182015b82811115612164578251825591602001919060010190612149565b50612170929150612174565b5090565b5b808211156121705760008155600101612175565b600067ffffffffffffffff808411156121a4576121a4612d61565b604051601f8501601f1916810160200182811182821017156121c8576121c8612d61565b6040528481529150818385018610156121e057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107c957600080fd5b803580151581146107c957600080fd5b600060208284031215612231578081fd5b61126e826121f9565b6000806040838503121561224c578081fd5b612255836121f9565b9150612263602084016121f9565b90509250929050565b600080600060608486031215612280578081fd5b612289846121f9565b9250612297602085016121f9565b9150604084013590509250925092565b600080600080608085870312156122bc578081fd5b6122c5856121f9565b93506122d3602086016121f9565b925060408501359150606085013567ffffffffffffffff8111156122f5578182fd5b8501601f81018713612305578182fd5b61231487823560208401612189565b91505092959194509250565b60008060408385031215612332578182fd5b61233b836121f9565b915061226360208401612210565b6000806040838503121561235b578182fd5b612364836121f9565b946020939093013593505050565b600060208284031215612383578081fd5b61126e82612210565b60006020828403121561239d578081fd5b813561126e81612d77565b6000602082840312156123b9578081fd5b815161126e81612d77565b6000602082840312156123d5578081fd5b813567ffffffffffffffff8111156123eb578182fd5b8201601f810184136123fb578182fd5b61175184823560208401612189565b60006020828403121561241b578081fd5b5035919050565b6000815180845261243a816020860160208601612c9f565b601f01601f19169290920160200192915050565b60008351612460818460208801612c9f565b835190830190612474818360208801612c9f565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124c490830184612422565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612506578351835292840192918401916001016124ea565b50909695505050505050565b901515815260200190565b60006020825261126e6020830184612422565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b602080825260169082015275115e18d959591cc81b585e081cd85b19481b1a5b5a5d60521b604082015260600190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b90815260200190565b60008219821115612c5057612c50612d35565b500190565b600082612c6457612c64612d4b565b500490565b6000816000190483118215151615612c8357612c83612d35565b500290565b600082821015612c9a57612c9a612d35565b500390565b60005b83811015612cba578181015183820152602001612ca2565b838111156111ec5750506000910152565b600281046001821680612cdf57607f821691505b60208210811415612d0057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d1a57612d1a612d35565b5060010190565b600082612d3057612d30612d4b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461083657600080fdfea2646970667358221220d9007a3f355593384f05c005206a6442cfd5e93fa6a25427ad9dc90d312288e164736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d547652705148683837774c577873386e687539514d79417446434d584553564641683858696a4661647046382f00000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmTvRpQHh87wLWxs8nhu9QMyAtFCMXESVFAh8XijFadpF8/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d547652705148683837774c577873386e687539514d7941
Arg [3] : 7446434d584553564641683858696a4661647046382f00000000000000000000
Deployed Bytecode Sourcemap
263:4878:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3924:179;;;;;;;;;;-1:-1:-1;3924:179:13;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3362:154;;;;;;;;;;-1:-1:-1;3362:154:13;;;;;:::i;:::-;;:::i;:::-;;2426:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3985:221::-;;;;;;;;;;-1:-1:-1;3985:221:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;604:36:13:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3508:411:4:-;;;;;;;;;;-1:-1:-1;3508:411:4;;;;;:::i;:::-;;:::i;718:26:13:-;;;;;;;;;;;;;:::i;5029:109::-;;;;;;;;;;-1:-1:-1;5029:109:13;;;;;:::i;:::-;;:::i;1577:113:6:-;;;;;;;;;;;;;:::i;4875:339:4:-;;;;;;;;;;-1:-1:-1;4875:339:4;;;;;:::i;:::-;;:::i;1245:256:6:-;;;;;;;;;;-1:-1:-1;1245:256:6;;;;;:::i;:::-;;:::i;748:29:13:-;;;;;;;;;;;;;:::i;3525:143::-;;;;;;;;;;;;;:::i;4701:158::-;;;;;;;;;;-1:-1:-1;4701:158:13;;;;;:::i;:::-;;:::i;5285:185:4:-;;;;;;;;;;-1:-1:-1;5285:185:4;;;;;:::i;:::-;;:::i;456:245:5:-;;;;;;;;;;-1:-1:-1;456:245:5;;;;;:::i;:::-;;:::i;3005:349:13:-;;;;;;;;;;-1:-1:-1;3005:349:13;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1767:233:6:-;;;;;;;;;;-1:-1:-1;1767:233:6;;;;;:::i;:::-;;:::i;678:33:13:-;;;;;;;;;;;;;:::i;2895:101::-;;;;;;;;;;-1:-1:-1;2895:101:13;;;;;:::i;:::-;;:::i;1072:86:15:-;;;;;;;;;;;;;:::i;2120:239:4:-;;;;;;;;;;-1:-1:-1;2120:239:4;;;;;:::i;:::-;;:::i;547:50:13:-;;;;;;;;;;;;;:::i;1850:208:4:-;;;;;;;;;;-1:-1:-1;1850:208:4;;;;;:::i;:::-;;:::i;1650:94:14:-;;;;;;;;;;;;;:::i;4112:102:13:-;;;;;;;;;;-1:-1:-1;4112:102:13;;;;;:::i;:::-;;:::i;784:38::-;;;;;;;;;;;;;:::i;1435:295::-;;;;;;;;;;-1:-1:-1;1435:295:13;;;;;:::i;:::-;;:::i;510:33::-;;;;;;;;;;;;;:::i;999:87:14:-;;;;;;;;;;;;;:::i;2595:104:4:-;;;;;;;;;;;;;:::i;476:30:13:-;;;;;;;;;;;;;:::i;4278:295:4:-;;;;;;;;;;-1:-1:-1;4278:295:4;;;;;:::i;:::-;;:::i;912:38:13:-;;;;;;;;;;-1:-1:-1;912:38:13;;;;;:::i;:::-;;:::i;1736:835::-;;;;;;:::i;:::-;;:::i;647:27::-;;;;;;;;;;;;;:::i;5541:328:4:-;;;;;;;;;;-1:-1:-1;5541:328:4;;;;;:::i;:::-;;:::i;2770:334::-;;;;;;;;;;-1:-1:-1;2770:334:4;;;;;:::i;:::-;;:::i;832:26:13:-;;;;;;;;;;;;;:::i;4220:128::-;;;;;;;;;;-1:-1:-1;4220:128:13;;;;;:::i;:::-;;:::i;4528:167::-;;;;;;;;;;-1:-1:-1;4528:167:13;;;;;:::i;:::-;;:::i;4644:164:4:-;;;;;;;;;;-1:-1:-1;4644:164:4;;;;;:::i;:::-;;:::i;4865:158:13:-;;;;;;;;;;-1:-1:-1;4865:158:13;;;;;:::i;:::-;;:::i;4354:168::-;;;;;;;;;;-1:-1:-1;4354:168:13;;;;;:::i;:::-;;:::i;1899:192:14:-;;;;;;;;;;-1:-1:-1;1899:192:14;;;;;:::i;:::-;;:::i;954:30:13:-;;;;;;;;;;;;;:::i;3924:179::-;4035:4;4059:36;4083:11;4059:23;:36::i;:::-;4052:43;;3924:179;;;;:::o;3362:154::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;;;;;;;;;3426:4:13::1;3419:11:::0;::::1;;;3415:73;;;3447:8;:6;:8::i;:::-;3470:7;;3415:73;3498:10;:8;:10::i;:::-;3362:154:::0;:::o;2426:100:4:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;4089:16;4097:7;4089;:16::i;:::-;4081:73;;;;-1:-1:-1;;;4081:73:4;;;;;;;:::i;:::-;-1:-1:-1;4174:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4174:24:4;;3985:221::o;604:36:13:-;;;;:::o;3508:411:4:-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;-1:-1:-1;;;;;3647:11:4;:2;-1:-1:-1;;;;;3647:11:4;;;3639:57;;;;-1:-1:-1;;;3639:57:4;;;;;;;:::i;:::-;3747:5;-1:-1:-1;;;;;3731:21:4;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3731:21:4;;:62;;;;3756:37;3773:5;3780:12;:10;:12::i;3756:37::-;3709:168;;;;-1:-1:-1;;;3709:168:4;;;;;;;:::i;:::-;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3508:411;;;:::o;718:26:13:-;;;;:::o;5029:109::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;5105:14:13::1;:25:::0;5029:109::o;1577:113:6:-;1665:10;:17;1577:113;:::o;4875:339:4:-;5070:41;5089:12;:10;:12::i;:::-;5103:7;5070:18;:41::i;:::-;5062:103;;;;-1:-1:-1;;;5062:103:4;;;;;;;:::i;:::-;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;1245:256:6:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;-1:-1:-1;;;1362:87:6;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1467:19:6;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1245:256::o;748:29:13:-;;;;:::o;3525:143::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;3623:37:13::1;::::0;3591:21:::1;::::0;3631:10:::1;::::0;3623:37;::::1;;;::::0;3591:21;;3573:15:::1;3623:37:::0;3573:15;3623:37;3591:21;3631:10;3623:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1290:1:14;3525:143:13:o:0;4701:158::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;4793:8:13::1;4778:11;;:23;;4770:52;;;;-1:-1:-1::0;;;4770:52:13::1;;;;;;;:::i;:::-;4832:8;:19:::0;4701:158::o;5285:185:4:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;456:245:5:-;574:41;593:12;:10;:12::i;574:41::-;566:102;;;;-1:-1:-1;;;566:102:5;;;;;;;:::i;:::-;679:14;685:7;679:5;:14::i;3005:349:13:-;3067:16;3096:18;3117:17;3127:6;3117:9;:17::i;:::-;3096:38;;3145:25;3187:10;3173:25;;;;;;-1:-1:-1;;;3173:25:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3173:25:13;;3145:53;;3214:9;3209:112;3233:10;3229:1;:14;3209:112;;;3279:30;3299:6;3307:1;3279:19;:30::i;:::-;3265:8;3274:1;3265:11;;;;;;-1:-1:-1;;;3265:11:13;;;;;;;;;;;;;;;;;;:44;3245:3;;;;:::i;:::-;;;;3209:112;;;-1:-1:-1;3338:8:13;3005:349;-1:-1:-1;;;3005:349:13:o;1767:233:6:-;1842:7;1878:30;:28;:30::i;:::-;1870:5;:38;1862:95;;;;-1:-1:-1;;;1862:95:6;;;;;;;:::i;:::-;1975:10;1986:5;1975:17;;;;;;-1:-1:-1;;;1975:17:6;;;;;;;;;;;;;;;;;1968:24;;1767:233;;;:::o;678:33:13:-;;;;:::o;2895:101::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;2966:22:13;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;1072:86:15:-:0;1143:7;;-1:-1:-1;;;1143:7:15;;;;;1072:86::o;2120:239:4:-;2192:7;2228:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2228:16:4;2263:19;2255:73;;;;-1:-1:-1;;;2255:73:4;;;;;;;:::i;547:50:13:-;;;;:::o;1850:208:4:-;1922:7;-1:-1:-1;;;;;1950:19:4;;1942:74;;;;-1:-1:-1;;;1942:74:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;;2034:16:4;;;;;:9;:16;;;;;;;1850:208::o;1650:94:14:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;4112:102:13:-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;4185:10:13::1;:21:::0;4112:102::o;784:38::-;;;;:::o;1435:295::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;1551:11:13::1;;1541:6;1524:14;;:23;;;;:::i;:::-;:38;;1502:98;;;;-1:-1:-1::0;;;1502:98:13::1;;;;;;;:::i;:::-;1616:9;1611:112;1635:6;1631:1;:10;1611:112;;;1663:26;1678:10;1663:14;:26::i;:::-;1695:14;:16:::0;;;:14:::1;:16;::::0;::::1;:::i;:::-;;;;;;1643:3;;;;;:::i;:::-;;;;1611:112;;510:33:::0;;;;:::o;999:87:14:-;1072:6;;-1:-1:-1;;;;;1072:6:14;999:87;:::o;2595:104:4:-;2651:13;2684:7;2677:14;;;;;:::i;476:30:13:-;;;;:::o;4278:295:4:-;4393:12;:10;:12::i;:::-;-1:-1:-1;;;;;4381:24:4;:8;-1:-1:-1;;;;;4381:24:4;;;4373:62;;;;-1:-1:-1;;;4373:62:4;;;;;;;:::i;:::-;4493:8;4448:18;:32;4467:12;:10;:12::i;:::-;-1:-1:-1;;;;;4448:32:4;;;;;;;;;;;;;;;;;-1:-1:-1;4448:32:4;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4448:53:4;;;;;;;;;;;4532:12;:10;:12::i;:::-;-1:-1:-1;;;;;4517:48:4;;4556:8;4517:48;;;;;;:::i;:::-;;;;;;;;4278:295;;:::o;912:38:13:-;;;;;;;;;;;;;:::o;1736:835::-;1223:7;:5;:7::i;:::-;-1:-1:-1;;;;;1207:23:13;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1207:23:13;;1203:94;;1256:8;:6;:8::i;:::-;1255:9;1247:38;;;;-1:-1:-1;;;1247:38:13;;;;;;;:::i;:::-;1826:11:::1;::::0;1855:10:::1;::::0;::::1;;1842:55;;;;-1:-1:-1::0;;;1842:55:13::1;;;;;;;:::i;:::-;1957:16;::::0;1921:10:::1;1915:17;::::0;;;:5:::1;:17;::::0;;;;:26;:38:::1;::::0;1946:6;1915:30:::1;:38::i;:::-;:58;;1902:117;;;;-1:-1:-1::0;;;1902:117:13::1;;;;;;;:::i;:::-;2050:10;::::0;:22:::1;::::0;2065:6;2050:14:::1;:22::i;:::-;2037:9;:35;;2024:78;;;;-1:-1:-1::0;;;2024:78:13::1;;;;;;;:::i;:::-;2120:14;;2110:6;:24;2107:183;;2149:17;2169:26;2180:14;;2169:6;:10;;:26;;;;:::i;:::-;2149:46;;2222:23;2236:8;;2222:9;:13;;:23;;;;:::i;:::-;2209:36:::0;-1:-1:-1;2263:21:13::1;:6:::0;2209:36;2263:10:::1;:21::i;:::-;2254:30;;2107:183;;2328:8;::::0;2307:17:::1;:5:::0;2317:6;2307:9:::1;:17::i;:::-;:29;;2294:78;;;;-1:-1:-1::0;;;2294:78:13::1;;;;;;;:::i;:::-;2388:9;2383:109;2407:6;2403:1;:10;2383:109;;;2435:26;2450:10;2435:14;:26::i;:::-;2467:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;2415:3;;;;;:::i;:::-;;;;2383:109;;;-1:-1:-1::0;2531:10:13::1;2525:17;::::0;;;:5:::1;:17;::::0;;;;:26;:38:::1;::::0;2556:6;2525:30:::1;:38::i;:::-;2502:10;2496:17;::::0;;;:5:::1;:17;::::0;;;;:67;-1:-1:-1;;1736:835:13:o;647:27::-;;;;:::o;5541:328:4:-;5716:41;5735:12;:10;:12::i;:::-;5749:7;5716:18;:41::i;:::-;5708:103;;;;-1:-1:-1;;;5708:103:4;;;;;;;:::i;:::-;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;:::-;5541:328;;;;:::o;2770:334::-;2843:13;2877:16;2885:7;2877;:16::i;:::-;2869:76;;;;-1:-1:-1;;;2869:76:4;;;;;;;:::i;:::-;2958:21;2982:10;:8;:10::i;:::-;2958:34;;3034:1;3016:7;3010:21;:25;:86;;;;;;;;;;;;;;;;;3062:7;3071:18;:7;:16;:18::i;:::-;3045:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3010:86;3003:93;2770:334;-1:-1:-1;;;2770:334:4:o;832:26:13:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4220:128::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;4293:10:13::1;::::0;::::1;;:21;;::::0;::::1;;;;4285:30;;;::::0;::::1;;4320:10;:20:::0;;-1:-1:-1;;4320:20:13::1;::::0;::::1;;::::0;;;::::1;::::0;;4220:128::o;4528:167::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;4627:8:13::1;4609:14;;:26;;4601:54;;;;-1:-1:-1::0;;;4601:54:13::1;;;;;;;:::i;:::-;4665:11;:22:::0;4528:167::o;4644:164:4:-;-1:-1:-1;;;;;4765:25:4;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4644:164::o;4865:158:13:-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;4957:8:13::1;4946:7;;:19;;4938:47;;;;-1:-1:-1::0;;;4938:47:13::1;;;;;;;:::i;:::-;4996:8;:19:::0;4865:158::o;4354:168::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;4448:8:13::1;4436;;:20;;4428:48;;;;-1:-1:-1::0;;;4428:48:13::1;;;;;;;:::i;:::-;4487:16;:27:::0;4354:168::o;1899:192:14:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:14;::::1;1980:73;;;;-1:-1:-1::0;;;1980:73:14::1;;;;;;;:::i;:::-;2064:19;2074:8;2064:9;:19::i;954:30:13:-:0;;;;;;:::o;2763:98:16:-;2821:7;2848:5;2852:1;2848;:5;:::i;937:224:6:-;1039:4;-1:-1:-1;;;;;;1063:50:6;;-1:-1:-1;;;1063:50:6;;:90;;;1117:36;1141:11;1117:23;:36::i;601:98:1:-;681:10;601:98;:::o;1872:118:15:-;1398:8;:6;:8::i;:::-;1397:9;1389:38;;;;-1:-1:-1;;;1389:38:15;;;;;;;:::i;:::-;1932:7:::1;:14:::0;;-1:-1:-1;;;;1932:14:15::1;-1:-1:-1::0;;;1932:14:15::1;::::0;;1962:20:::1;1969:12;:10;:12::i;:::-;1962:20;;;;;;:::i;:::-;;;;;;;;1872:118::o:0;2131:120::-;1675:8;:6;:8::i;:::-;1667:41;;;;-1:-1:-1;;;1667:41:15;;;;;;;:::i;:::-;2190:7:::1;:15:::0;;-1:-1:-1;;;;2190:15:15::1;::::0;;2221:22:::1;2230:12;:10;:12::i;7379:127:4:-:0;7444:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;:30;;;7379:127::o;11361:174::-;11436:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11436:29:4;-1:-1:-1;;;;;11436:29:4;;;;;;;;:24;;11490:23;11436:24;11490:14;:23::i;:::-;-1:-1:-1;;;;;11481:46:4;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7791:16;7799:7;7791;:16::i;:::-;7783:73;;;;-1:-1:-1;;;7783:73:4;;;;;;;:::i;:::-;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;-1:-1:-1;;;;;7925:16:4;:7;-1:-1:-1;;;;;7925:16:4;;:51;;;;7969:7;-1:-1:-1;;;;;7945:31:4;:20;7957:7;7945:11;:20::i;:::-;-1:-1:-1;;;;;7945:31:4;;7925:51;:87;;;;7980:32;7997:5;8004:7;7980:16;:32::i;:::-;7917:96;7673:348;-1:-1:-1;;;;7673:348:4:o;10665:578::-;10824:4;-1:-1:-1;;;;;10797:31:4;:23;10812:7;10797:14;:23::i;:::-;-1:-1:-1;;;;;10797:31:4;;10789:85;;;;-1:-1:-1;;;10789:85:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;10893:16:4;;10885:65;;;;-1:-1:-1;;;10885:65:4;;;;;;;:::i;:::-;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;-1:-1:-1;;;;;11109:15:4;;;;;;:9;:15;;;;;:20;;11128:1;;11109:15;:20;;11128:1;;11109:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11140:13:4;;;;;;:9;:13;;;;;:18;;11157:1;;11140:13;:18;;11157:1;;11140:18;:::i;:::-;;;;-1:-1:-1;;11169:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11169:21:4;-1:-1:-1;;;;;11169:21:4;;;;;;;;;11208:27;;11169:16;;11208:27;;;;;;;10665:578;;;:::o;9968:360::-;10028:13;10044:23;10059:7;10044:14;:23::i;:::-;10028:39;;10080:48;10101:5;10116:1;10120:7;10080:20;:48::i;:::-;10169:29;10186:1;10190:7;10169:8;:29::i;:::-;-1:-1:-1;;;;;10211:16:4;;;;;;:9;:16;;;;;:21;;10231:1;;10211:16;:21;;10231:1;;10211:21;:::i;:::-;;;;-1:-1:-1;;10250:16:4;;;;:7;:16;;;;;;10243:23;;-1:-1:-1;;;;;;10243:23:4;;;10284:36;10258:7;;10250:16;-1:-1:-1;;;;;10284:36:4;;;;;10250:16;;10284:36;9968:360;;:::o;2099:173:14:-;2174:6;;;-1:-1:-1;;;;;2191:17:14;;;-1:-1:-1;;;;;;2191:17:14;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2099:173;;:::o;2580:185:13:-;2636:7;2646:14;:12;:14::i;:::-;2636:24;;2671:27;:15;:25;:27::i;:::-;2709:18;2719:3;2724:2;2709:9;:18::i;:::-;2743:14;;2754:2;;2743:14;;;;;2580:185;;:::o;3501:98:16:-;3559:7;3586:5;3590:1;3586;:5;:::i;3900:98::-;3958:7;3985:5;3989:1;3985;:5;:::i;6751:315:4:-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;-1:-1:-1;;;6947:111:4;;;;;;;:::i;2776:113:13:-;2836:13;2869:12;2862:19;;;;;:::i;288:723:17:-;344:13;565:10;561:53;;-1:-1:-1;592:10:17;;;;;;;;;;;;-1:-1:-1;;;592:10:17;;;;;;561:53;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:17;;-1:-1:-1;744:2:17;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;-1:-1:-1;;;790:17:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:17;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:17;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;-1:-1:-1;;;878:14:17;;;;;;;;;;;;:56;-1:-1:-1;;;;;878:56:17;;;;;;;;-1:-1:-1;949:11:17;958:2;949:11;;:::i;:::-;;;818:154;;1481:305:4;1583:4;-1:-1:-1;;;;;;1620:40:4;;-1:-1:-1;;;1620:40:4;;:105;;-1:-1:-1;;;;;;;1677:48:4;;-1:-1:-1;;;1677:48:4;1620:105;:158;;;;1742:36;1766:11;1742:23;:36::i;3677:239:13:-;3863:45;3890:4;3896:2;3900:7;3863:26;:45::i;1325:104::-;1372:4;1396:25;:15;:23;:25::i;:::-;1389:32;;1325:104;:::o;915:127:2:-;1004:19;;1022:1;1004:19;;;915:127::o;8363:110:4:-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;12100:803::-;12255:4;12276:15;:2;-1:-1:-1;;;;;12276:13:4;;:15::i;:::-;12272:624;;;12328:2;-1:-1:-1;;;;;12312:36:4;;12349:12;:10;:12::i;:::-;12363:4;12369:7;12378:5;12312:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12312:72:4;;;;;;;;-1:-1:-1;;12312:72:4;;;;;;;;;;;;:::i;:::-;;;12308:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12558:13:4;;12554:272;;12601:60;;-1:-1:-1;;;12601:60:4;;;;;;;:::i;12554:272::-;12776:6;12770:13;12761:6;12757:2;12753:15;12746:38;12308:533;-1:-1:-1;;;;;;12435:55:4;-1:-1:-1;;;12435:55:4;;-1:-1:-1;12428:62:4;;12272:624;-1:-1:-1;12880:4:4;12100:803;;;;;;:::o;787:157:3:-;-1:-1:-1;;;;;;896:40:3;;-1:-1:-1;;;896:40:3;787:157;;;:::o;636:328:7:-;780:45;807:4;813:2;817:7;780:26;:45::i;:::-;856:7;:5;:7::i;:::-;-1:-1:-1;;;;;840:23:7;:12;:10;:12::i;:::-;-1:-1:-1;;;;;840:23:7;;836:121;;889:8;:6;:8::i;:::-;888:9;880:65;;;;-1:-1:-1;;;880:65:7;;;;;;;:::i;793:114:2:-;885:14;;793:114::o;8700:321:4:-;8830:18;8836:2;8840:7;8830:5;:18::i;:::-;8881:54;8912:1;8916:2;8920:7;8929:5;8881:22;:54::i;:::-;8859:154;;;;-1:-1:-1;;;8859:154:4;;;;;;;:::i;743:387:0:-;1066:20;1114:8;;;743:387::o;2613:589:6:-;2757:45;2784:4;2790:2;2794:7;2757:26;:45::i;:::-;-1:-1:-1;;;;;2819:18:6;;2815:187;;2854:40;2886:7;2854:31;:40::i;:::-;2815:187;;;2924:2;-1:-1:-1;;;;;2916:10:6;:4;-1:-1:-1;;;;;2916:10:6;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3016:16:6;;3012:183;;3049:45;3086:7;3049:36;:45::i;:::-;3012:183;;;3122:4;-1:-1:-1;;;;;3116:10:6;:2;-1:-1:-1;;;;;3116:10:6;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;9357:382:4:-;-1:-1:-1;;;;;9437:16:4;;9429:61;;;;-1:-1:-1;;;9429:61:4;;;;;;;:::i;:::-;9510:16;9518:7;9510;:16::i;:::-;9509:17;9501:58;;;;-1:-1:-1;;;9501:58:4;;;;;;;:::i;:::-;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;-1:-1:-1;;;;;9630:13:4;;;;;;:9;:13;;;;;:18;;9647:1;;9630:13;:18;;9647:1;;9630:18;:::i;:::-;;;;-1:-1:-1;;9659:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9659:21:4;-1:-1:-1;;;;;9659:21:4;;;;;;;;9698:33;;9659:16;;;9698:33;;9659:16;;9698:33;9357:382;;:::o;3925:164:6:-;4029:10;:17;;4002:24;;;;:15;:24;;;;;:44;;;4057:24;;;;;;;;;;;;3925:164::o;4716:988::-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;5044:18;5065:26;;;:17;:26;;;;;;4982:51;;-1:-1:-1;5198:28:6;;;5194:328;;-1:-1:-1;;;;;5265:18:6;;5243:19;5265:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5316:30;;;;;;:44;;;5433:30;;:17;:30;;;;;:43;;;5194:328;-1:-1:-1;5618:26:6;;;;:17;:26;;;;;;;;5611:33;;;-1:-1:-1;;;;;5662:18:6;;;;;:12;:18;;;;;:34;;;;;;;5655:41;4716:988::o;5999:1079::-;6277:10;:17;6252:22;;6277:21;;6297:1;;6277:21;:::i;:::-;6309:18;6330:24;;;:15;:24;;;;;;6703:10;:26;;6252:46;;-1:-1:-1;6330:24:6;;6252:46;;6703:26;;;;-1:-1:-1;;;6703:26:6;;;;;;;;;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;-1:-1:-1;;;6742:22:6;;;;;;;;;;;;;;;;;;;;:36;;;;6847:28;;;:15;:28;;;;;;;:41;;;7019:24;;;;;7012:31;7054:10;:16;;;;;-1:-1:-1;;;7054:16:6;;;;;;;;;;;;;;;;;;;;;;;;;;5999:1079;;;;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;-1:-1:-1;;;;;3636:16:6;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3681:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3503:221:6:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:18;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:18;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:18;473:16;;;470:25;-1:-1:-1;467:2:18;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:18;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:18;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:18:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:18;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:18;;4335:120;-1:-1:-1;4335:120:18:o;4460:259::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:18;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:18:o;4724:470::-;;4941:6;4935:13;4957:53;5003:6;4998:3;4991:4;4983:6;4979:17;4957:53;:::i;:::-;5073:13;;5032:16;;;;5095:57;5073:13;5032:16;5129:4;5117:17;;5095:57;:::i;:::-;5168:20;;4911:283;-1:-1:-1;;;;4911:283:18:o;5199:203::-;-1:-1:-1;;;;;5363:32:18;;;;5345:51;;5333:2;5318:18;;5300:102::o;5407:490::-;-1:-1:-1;;;;;5676:15:18;;;5658:34;;5728:15;;5723:2;5708:18;;5701:43;5775:2;5760:18;;5753:34;;;5823:3;5818:2;5803:18;;5796:31;;;5407:490;;5844:47;;5871:19;;5863:6;5844:47;:::i;:::-;5836:55;5610:287;-1:-1:-1;;;;;;5610:287:18:o;5902:635::-;6073:2;6125:21;;;6195:13;;6098:18;;;6217:22;;;5902:635;;6073:2;6296:15;;;;6270:2;6255:18;;;5902:635;6342:169;6356:6;6353:1;6350:13;6342:169;;;6417:13;;6405:26;;6486:15;;;;6451:12;;;;6378:1;6371:9;6342:169;;;-1:-1:-1;6528:3:18;;6053:484;-1:-1:-1;;;;;;6053:484:18:o;6542:187::-;6707:14;;6700:22;6682:41;;6670:2;6655:18;;6637:92::o;6734:221::-;;6883:2;6872:9;6865:21;6903:46;6945:2;6934:9;6930:18;6922:6;6903:46;:::i;6960:407::-;7162:2;7144:21;;;7201:2;7181:18;;;7174:30;7240:34;7235:2;7220:18;;7213:62;-1:-1:-1;;;7306:2:18;7291:18;;7284:41;7357:3;7342:19;;7134:233::o;7372:344::-;7574:2;7556:21;;;7613:2;7593:18;;;7586:30;-1:-1:-1;;;7647:2:18;7632:18;;7625:50;7707:2;7692:18;;7546:170::o;7721:407::-;7923:2;7905:21;;;7962:2;7942:18;;;7935:30;8001:34;7996:2;7981:18;;7974:62;-1:-1:-1;;;8067:2:18;8052:18;;8045:41;8118:3;8103:19;;7895:233::o;8133:414::-;8335:2;8317:21;;;8374:2;8354:18;;;8347:30;8413:34;8408:2;8393:18;;8386:62;-1:-1:-1;;;8479:2:18;8464:18;;8457:48;8537:3;8522:19;;8307:240::o;8552:402::-;8754:2;8736:21;;;8793:2;8773:18;;;8766:30;8832:34;8827:2;8812:18;;8805:62;-1:-1:-1;;;8898:2:18;8883:18;;8876:36;8944:3;8929:19;;8726:228::o;8959:352::-;9161:2;9143:21;;;9200:2;9180:18;;;9173:30;9239;9234:2;9219:18;;9212:58;9302:2;9287:18;;9133:178::o;9316:400::-;9518:2;9500:21;;;9557:2;9537:18;;;9530:30;9596:34;9591:2;9576:18;;9569:62;-1:-1:-1;;;9662:2:18;9647:18;;9640:34;9706:3;9691:19;;9490:226::o;9721:349::-;9923:2;9905:21;;;9962:2;9942:18;;;9935:30;10001:27;9996:2;9981:18;;9974:55;10061:2;10046:18;;9895:175::o;10075:332::-;10277:2;10259:21;;;10316:1;10296:18;;;10289:29;-1:-1:-1;;;10349:2:18;10334:18;;10327:39;10398:2;10383:18;;10249:158::o;10412:342::-;10614:2;10596:21;;;10653:2;10633:18;;;10626:30;-1:-1:-1;;;10687:2:18;10672:18;;10665:48;10745:2;10730:18;;10586:168::o;10759:408::-;10961:2;10943:21;;;11000:2;10980:18;;;10973:30;11039:34;11034:2;11019:18;;11012:62;-1:-1:-1;;;11105:2:18;11090:18;;11083:42;11157:3;11142:19;;10933:234::o;11172:340::-;11374:2;11356:21;;;11413:2;11393:18;;;11386:30;-1:-1:-1;;;11447:2:18;11432:18;;11425:46;11503:2;11488:18;;11346:166::o;11517:420::-;11719:2;11701:21;;;11758:2;11738:18;;;11731:30;11797:34;11792:2;11777:18;;11770:62;11868:26;11863:2;11848:18;;11841:54;11927:3;11912:19;;11691:246::o;11942:406::-;12144:2;12126:21;;;12183:2;12163:18;;;12156:30;12222:34;12217:2;12202:18;;12195:62;-1:-1:-1;;;12288:2:18;12273:18;;12266:40;12338:3;12323:19;;12116:232::o;12353:405::-;12555:2;12537:21;;;12594:2;12574:18;;;12567:30;12633:34;12628:2;12613:18;;12606:62;-1:-1:-1;;;12699:2:18;12684:18;;12677:39;12748:3;12733:19;;12527:231::o;12763:356::-;12965:2;12947:21;;;12984:18;;;12977:30;13043:34;13038:2;13023:18;;13016:62;13110:2;13095:18;;12937:182::o;13124:408::-;13326:2;13308:21;;;13365:2;13345:18;;;13338:30;13404:34;13399:2;13384:18;;13377:62;-1:-1:-1;;;13470:2:18;13455:18;;13448:42;13522:3;13507:19;;13298:234::o;13537:339::-;13739:2;13721:21;;;13778:2;13758:18;;;13751:30;-1:-1:-1;;;13812:2:18;13797:18;;13790:45;13867:2;13852:18;;13711:165::o;13881:356::-;14083:2;14065:21;;;14102:18;;;14095:30;14161:34;14156:2;14141:18;;14134:62;14228:2;14213:18;;14055:182::o;14242:405::-;14444:2;14426:21;;;14483:2;14463:18;;;14456:30;14522:34;14517:2;14502:18;;14495:62;-1:-1:-1;;;14588:2:18;14573:18;;14566:39;14637:3;14622:19;;14416:231::o;14652:411::-;14854:2;14836:21;;;14893:2;14873:18;;;14866:30;14932:34;14927:2;14912:18;;14905:62;-1:-1:-1;;;14998:2:18;14983:18;;14976:45;15053:3;15038:19;;14826:237::o;15068:341::-;15270:2;15252:21;;;15309:2;15289:18;;;15282:30;-1:-1:-1;;;15343:2:18;15328:18;;15321:47;15400:2;15385:18;;15242:167::o;15414:397::-;15616:2;15598:21;;;15655:2;15635:18;;;15628:30;15694:34;15689:2;15674:18;;15667:62;-1:-1:-1;;;15760:2:18;15745:18;;15738:31;15801:3;15786:19;;15588:223::o;15816:413::-;16018:2;16000:21;;;16057:2;16037:18;;;16030:30;16096:34;16091:2;16076:18;;16069:62;-1:-1:-1;;;16162:2:18;16147:18;;16140:47;16219:3;16204:19;;15990:239::o;16234:397::-;16436:2;16418:21;;;16475:2;16455:18;;;16448:30;16514:34;16509:2;16494:18;;16487:62;-1:-1:-1;;;16580:2:18;16565:18;;16558:31;16621:3;16606:19;;16408:223::o;16636:408::-;16838:2;16820:21;;;16877:2;16857:18;;;16850:30;16916:34;16911:2;16896:18;;16889:62;-1:-1:-1;;;16982:2:18;16967:18;;16960:42;17034:3;17019:19;;16810:234::o;17049:346::-;17251:2;17233:21;;;17290:2;17270:18;;;17263:30;-1:-1:-1;;;17324:2:18;17309:18;;17302:52;17386:2;17371:18;;17223:172::o;17400:412::-;17602:2;17584:21;;;17641:2;17621:18;;;17614:30;17680:34;17675:2;17660:18;;17653:62;-1:-1:-1;;;17746:2:18;17731:18;;17724:46;17802:3;17787:19;;17574:238::o;17817:177::-;17963:25;;;17951:2;17936:18;;17918:76::o;17999:128::-;;18070:1;18066:6;18063:1;18060:13;18057:2;;;18076:18;;:::i;:::-;-1:-1:-1;18112:9:18;;18047:80::o;18132:120::-;;18198:1;18188:2;;18203:18;;:::i;:::-;-1:-1:-1;18237:9:18;;18178:74::o;18257:168::-;;18363:1;18359;18355:6;18351:14;18348:1;18345:21;18340:1;18333:9;18326:17;18322:45;18319:2;;;18370:18;;:::i;:::-;-1:-1:-1;18410:9:18;;18309:116::o;18430:125::-;;18498:1;18495;18492:8;18489:2;;;18503:18;;:::i;:::-;-1:-1:-1;18540:9:18;;18479:76::o;18560:258::-;18632:1;18642:113;18656:6;18653:1;18650:13;18642:113;;;18732:11;;;18726:18;18713:11;;;18706:39;18678:2;18671:10;18642:113;;;18773:6;18770:1;18767:13;18764:2;;;-1:-1:-1;;18808:1:18;18790:16;;18783:27;18613:205::o;18823:380::-;18908:1;18898:12;;18955:1;18945:12;;;18966:2;;19020:4;19012:6;19008:17;18998:27;;18966:2;19073;19065:6;19062:14;19042:18;19039:38;19036:2;;;19119:10;19114:3;19110:20;19107:1;19100:31;19154:4;19151:1;19144:15;19182:4;19179:1;19172:15;19036:2;;18878:325;;;:::o;19208:135::-;;-1:-1:-1;;19268:17:18;;19265:2;;;19288:18;;:::i;:::-;-1:-1:-1;19335:1:18;19324:13;;19255:88::o;19348:112::-;;19406:1;19396:2;;19411:18;;:::i;:::-;-1:-1:-1;19445:9:18;;19386:74::o;19465:127::-;19526:10;19521:3;19517:20;19514:1;19507:31;19557:4;19554:1;19547:15;19581:4;19578:1;19571:15;19597:127;19658:10;19653:3;19649:20;19646:1;19639:31;19689:4;19686:1;19679:15;19713:4;19710:1;19703:15;19729:127;19790:10;19785:3;19781:20;19778:1;19771:31;19821:4;19818:1;19811:15;19845:4;19842:1;19835:15;19861:133;-1:-1:-1;;;;;;19937:32:18;;19927:43;;19917:2;;19984:1;19981;19974:12
Swarm Source
ipfs://d9007a3f355593384f05c005206a6442cfd5e93fa6a25427ad9dc90d312288e1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.