Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 52 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 21525503 | 455 days ago | IN | 0 ETH | 0.00024798 | ||||
| Set Approval For... | 16249370 | 1194 days ago | IN | 0 ETH | 0.00049072 | ||||
| Set Approval For... | 15238742 | 1341 days ago | IN | 0 ETH | 0.00024499 | ||||
| Transfer From | 14735086 | 1423 days ago | IN | 0 ETH | 0.00306557 | ||||
| Set Approval For... | 14735077 | 1423 days ago | IN | 0 ETH | 0.00163403 | ||||
| Set Approval For... | 14293361 | 1492 days ago | IN | 0 ETH | 0.00174101 | ||||
| Set Approval For... | 14251672 | 1499 days ago | IN | 0 ETH | 0.0027089 | ||||
| Set Approval For... | 14216731 | 1504 days ago | IN | 0 ETH | 0.00252434 | ||||
| Set Approval For... | 14215994 | 1504 days ago | IN | 0 ETH | 0.00220159 | ||||
| Set Approval For... | 14159412 | 1513 days ago | IN | 0 ETH | 0.00748679 | ||||
| Set Approval For... | 14145286 | 1515 days ago | IN | 0 ETH | 0.00230369 | ||||
| Set Approval For... | 14124984 | 1518 days ago | IN | 0 ETH | 0.00406918 | ||||
| Withdraw All | 14105576 | 1521 days ago | IN | 0 ETH | 0.00539469 | ||||
| End Presale | 14102533 | 1522 days ago | IN | 0 ETH | 0.00314448 | ||||
| Claim | 14101805 | 1522 days ago | IN | 0.05 ETH | 0.01797955 | ||||
| Claim | 14101798 | 1522 days ago | IN | 0.05 ETH | 0.01776099 | ||||
| Claim | 14101474 | 1522 days ago | IN | 0.05 ETH | 0.01807531 | ||||
| Claim | 14099861 | 1522 days ago | IN | 0.05 ETH | 0.01610407 | ||||
| Claim | 14099734 | 1522 days ago | IN | 0.05 ETH | 0.01548429 | ||||
| Claim | 14098816 | 1522 days ago | IN | 0.05 ETH | 0.0195973 | ||||
| Claim | 14098322 | 1522 days ago | IN | 0.05 ETH | 0.01999431 | ||||
| Claim | 14096608 | 1523 days ago | IN | 0.05 ETH | 0.01923982 | ||||
| Claim | 14096387 | 1523 days ago | IN | 0.25 ETH | 0.07049764 | ||||
| Claim | 14096300 | 1523 days ago | IN | 0.05 ETH | 0.02271197 | ||||
| Claim | 14096276 | 1523 days ago | IN | 0.05 ETH | 0.0280155 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Metaverse3022
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "../node_modules/@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "../node_modules/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "../node_modules/@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "../node_modules/@openzeppelin/contracts/access/Ownable.sol";
import "../node_modules/@openzeppelin/contracts/utils/Address.sol";
import "../node_modules/@openzeppelin/contracts/utils/Context.sol";
contract Metaverse3022 is Context, Ownable, ERC721Enumerable, ERC721Burnable {
address public TEAM_ACCOUNT1 = 0x0000000000000000000000000000000000000000;
address public TEAM_ACCOUNT2 = 0x0000000000000000000000000000000000000000;
mapping (address => bool) public presaleReserved;
string private _baseTokenURI;
string private _provenance;
uint256 private _maxAllowedSupply;
uint256 private _reserved;
uint256 private _cap_txn;
uint256 private _cap_wallet;
uint256 private _price;
uint256 private _tokenId;
uint256 private _reservedTokenId;
bool private _presale;
bool private _isWhitelistDisabled;
constructor(
string memory baseURI,
uint256 maxAllowedSupply,
uint256 reserved,
uint256 cap_txn,
uint256 cap_wallet,
uint256 price
) ERC721("3022 Metaverse", "3022") {
// Set base host URL
setBaseURI(baseURI);
// Set cap limits
setCapTxn(cap_txn);
setCapWallet(cap_wallet);
// Set claim price
setPrice(price);
// Set max allowed supply
_maxAllowedSupply = maxAllowedSupply;
// Init reserve amount (Counting zero)
_reserved = reserved;
// Init token ids after reserves (Counting zero)
_tokenId = _reserved;
// Init presale
_presale = false;
// Init whitelist as disable
_isWhitelistDisabled = true;
}
event PresaleStatus(bool started);
//event WhitelistedAccountAdded(address account);
//event WhitelistedAccountRemoved(address account);
event WhitelistedStatus(bool enabled);
modifier isWhitelisted() {
require(
_isWhitelistDisabled || presaleReserved[_msgSender()],
'3022 Metaverse: caller not whitelisted'
);
_;
}
modifier isContract() {
require(
!Address.isContract(_msgSender()),
'3022 Metaverse: contracts not allowed'
);
_;
}
// The following functions are overrides required by Solidity.
function _beforeTokenTransfer(address from, address to, uint256 tokenId)
internal
override(ERC721, ERC721Enumerable)
{
super._beforeTokenTransfer(from, to, tokenId);
}
function _burn(uint256 tokenId) internal override(ERC721) {
super._burn(tokenId);
}
function tokenURI(uint256 tokenId)
public
view
override(ERC721)
returns (string memory)
{
return super.tokenURI(tokenId);
}
function supportsInterface(bytes4 interfaceId)
public
view
override(ERC721, ERC721Enumerable)
returns (bool)
{
return super.supportsInterface(interfaceId);
}
function _baseURI() internal view override returns (string memory) {
return _baseTokenURI;
}
// Custom functions
function presaleSlotAdd(address[] calldata account) external onlyOwner {
for(uint256 i; i < account.length; i++) {
presaleReserved[account[i]] = true;
//emit WhitelistedAccountAdded(account[i]);
}
}
function presaleSlotRemove(address[] calldata account) external onlyOwner {
for(uint256 i; i < account.length; i++) {
presaleReserved[account[i]] = false;
//emit WhitelistedAccountRemoved(account[i]);
}
}
function setBaseURI(string memory baseURI) public onlyOwner {
_baseTokenURI = baseURI;
}
function getContractURI() public view returns(string memory) {
return _baseURI();
}
function getMaxAllowedSupply() public view returns (uint256) {
return _maxAllowedSupply;
}
function nextTokenId() public view returns (uint256) {
return _tokenId;
}
function nextReservedTokenId() public view returns (uint256) {
return _reservedTokenId;
}
function setProvenance(string memory provenance) external onlyOwner {
require(bytes(_provenance).length == 0, "3022 Metaverse: Provenance already set");
_provenance = provenance;
}
function getProvenance() public view returns (string memory) {
return _provenance;
}
function getCapTxn() public view returns (uint256) {
return _cap_txn;
}
function setCapTxn(uint256 cap_txn) public onlyOwner {
_cap_txn = cap_txn;
}
function getCapWallet() public view returns (uint256) {
return _cap_wallet;
}
function setCapWallet(uint256 cap_wallet) public onlyOwner {
_cap_wallet = cap_wallet;
}
function getReserved() public view returns (uint256) {
return _reserved;
}
function getPrice() public view returns (uint256) {
return _price;
}
function setPrice(uint256 newPrice) public onlyOwner {
_price = newPrice;
}
function enableWhitelisting() external onlyOwner {
_isWhitelistDisabled = false;
emit WhitelistedStatus(true);
}
function disableWhitelisting() external onlyOwner {
_isWhitelistDisabled = true;
emit WhitelistedStatus(false);
}
function startPresale() external onlyOwner {
_presale = true;
emit PresaleStatus(true);
}
function endPresale() external onlyOwner {
_presale = false;
emit PresaleStatus(false);
}
function claim(uint256 amount) external payable isWhitelisted isContract {
uint256 supply = totalSupply();
require(
_presale,
"3022 Metaverse: Presale time has not started yet"
);
require(
amount <= _cap_txn,
"3022 Metaverse: Exceeds maximum allowed claims per txn"
);
require(
balanceOf(_msgSender()) + amount <= _cap_wallet,
"3022 Metaverse: Exceeds maximum allowed tokens per wallet"
);
require(
(supply - _reservedTokenId) + amount <= _maxAllowedSupply - _reserved,
"3022 Metaverse: Exceeds maximum tokens supply"
);
require(
msg.value >= _price * amount,
"3022 Metaverse: Wrong ETH amount sent"
);
for(uint256 i; i < amount; i++) {
_safeMint(_msgSender(), _tokenId);
_tokenId++;
}
}
function mintFromReserves(address[] calldata to) external onlyOwner {
require(
to.length <= _reserved - _reservedTokenId,
"3022 Metaverse: Exceeds maximum reserved tokens supply"
);
for(uint256 i; i < to.length; i++) {
_safeMint(to[i], _reservedTokenId);
_reservedTokenId++;
}
}
function safeMint(address to, uint256 amount) external onlyOwner {
uint256 supply = totalSupply();
require(
(supply - _reservedTokenId) + amount <= _maxAllowedSupply - _reserved,
"3022 Metaverse: Exceeds maximum tokens supply"
);
for(uint256 i; i < amount; i++) {
_safeMint(to, _tokenId);
_tokenId++;
}
}
function walletOfOwner(address _owner) external view returns(uint256[] memory) {
uint256 tokenCount = balanceOf(_owner);
uint256[] memory tokensId = new uint256[](tokenCount);
for(uint256 i; i < tokenCount; i++){
tokensId[i] = tokenOfOwnerByIndex(_owner, i);
}
return tokensId;
}
function setTeamAddresses(address[] calldata team) external onlyOwner {
TEAM_ACCOUNT1 = team[0];
TEAM_ACCOUNT2 = team[1];
}
function withdrawAll() external payable onlyOwner {
uint256 _payable = address(this).balance / 100;
Address.sendValue(payable(TEAM_ACCOUNT1), _payable * 80);
Address.sendValue(payable(TEAM_ACCOUNT2), _payable * 20);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev 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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "../../../utils/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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, 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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: 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 {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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 Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}{
"remappings": [],
"optimizer": {
"enabled": false,
"runs": 200
},
"evmVersion": "istanbul",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"maxAllowedSupply","type":"uint256"},{"internalType":"uint256","name":"reserved","type":"uint256"},{"internalType":"uint256","name":"cap_txn","type":"uint256"},{"internalType":"uint256","name":"cap_wallet","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"started","type":"bool"}],"name":"PresaleStatus","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":"bool","name":"enabled","type":"bool"}],"name":"WhitelistedStatus","type":"event"},{"inputs":[],"name":"TEAM_ACCOUNT1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_ACCOUNT2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"disableWhitelisting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableWhitelisting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endPresale","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":[],"name":"getCapTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCapWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxAllowedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getProvenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"mintFromReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextReservedTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleReserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"}],"name":"presaleSlotAdd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"}],"name":"presaleSlotRemove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cap_txn","type":"uint256"}],"name":"setCapTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cap_wallet","type":"uint256"}],"name":"setCapWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"team","type":"address[]"}],"name":"setTeamAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
60806040526000600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200009557600080fd5b506040516200642f3803806200642f8339818101604052810190620000bb9190620006bc565b6040518060400160405280600e81526020017f33303232204d65746176657273650000000000000000000000000000000000008152506040518060400160405280600481526020017f3330323200000000000000000000000000000000000000000000000000000000815250620001476200013b6200021860201b60201c565b6200022060201b60201c565b81600190805190602001906200015f92919062000583565b5080600290805190602001906200017892919062000583565b5050506200018c86620002e460201b60201c565b6200019d836200038f60201b60201c565b620001ae826200042860201b60201c565b620001bf81620004c160201b60201c565b84601081905550836011819055506011546015819055506000601760006101000a81548160ff0219169083151502179055506001601760016101000a81548160ff02191690831515021790555050505050505062000982565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002f46200021860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200031a6200055a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000373576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036a9062000792565b60405180910390fd5b80600e90805190602001906200038b92919062000583565b5050565b6200039f6200021860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003c56200055a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200041e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004159062000792565b60405180910390fd5b8060128190555050565b620004386200021860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200045e6200055a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ae9062000792565b60405180910390fd5b8060138190555050565b620004d16200021860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004f76200055a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000550576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005479062000792565b60405180910390fd5b8060148190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620005919062000864565b90600052602060002090601f016020900481019282620005b5576000855562000601565b82601f10620005d057805160ff191683800117855562000601565b8280016001018555821562000601579182015b8281111562000600578251825591602001919060010190620005e3565b5b50905062000610919062000614565b5090565b5b808211156200062f57600081600090555060010162000615565b5090565b60006200064a6200064484620007dd565b620007b4565b9050828152602081018484840111156200066357600080fd5b620006708482856200082e565b509392505050565b600082601f8301126200068a57600080fd5b81516200069c84826020860162000633565b91505092915050565b600081519050620006b68162000968565b92915050565b60008060008060008060c08789031215620006d657600080fd5b600087015167ffffffffffffffff811115620006f157600080fd5b620006ff89828a0162000678565b96505060206200071289828a01620006a5565b95505060406200072589828a01620006a5565b94505060606200073889828a01620006a5565b93505060806200074b89828a01620006a5565b92505060a06200075e89828a01620006a5565b9150509295509295509295565b60006200077a60208362000813565b915062000787826200093f565b602082019050919050565b60006020820190508181036000830152620007ad816200076b565b9050919050565b6000620007c0620007d3565b9050620007ce82826200089a565b919050565b6000604051905090565b600067ffffffffffffffff821115620007fb57620007fa620008ff565b5b62000806826200092e565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b838110156200084e57808201518184015260208101905062000831565b838111156200085e576000848401525b50505050565b600060028204905060018216806200087d57607f821691505b60208210811415620008945762000893620008d0565b5b50919050565b620008a5826200092e565b810181811067ffffffffffffffff82111715620008c757620008c6620008ff565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620009738162000824565b81146200097f57600080fd5b50565b615a9d80620009926000396000f3fe6080604052600436106102ae5760003560e01c8063853828b611610175578063a43be57b116100dc578063db9331b811610095578063f2fde38b1161006f578063f2fde38b14610a48578063f6e7c24e14610a71578063fe625fb614610a9a578063ffe630b514610ac3576102ae565b8063db9331b8146109c9578063e985e9c5146109f4578063f0c6983214610a31576102ae565b8063a43be57b146108e1578063b88d4fde146108f8578063b9da967d14610921578063c506fc9c1461094c578063c87b56dd14610975578063d4a262cd146109b2576102ae565b8063972cce751161012e578063972cce75146107e557806398d5fdca146108105780639c03132d1461083b5780639f4e038e14610866578063a14481941461088f578063a22cb465146108b8576102ae565b8063853828b6146107085780638ade091b146107125780638da5cb5b1461073b57806390845c571461076657806391b7f5ed1461079157806395d89b41146107ba576102ae565b806339c36fa0116102195780636352211e116101d25780636352211e146105f65780636df1cc7d1461063357806370a082311461065e578063715018a61461069b57806375794a3c146106b25780637af08ecb146106dd576102ae565b806339c36fa0146104c457806342842e0e1461050157806342966c681461052a578063438b6300146105535780634f6ccce71461059057806355f804b3146105cd576102ae565b80630ff9b9af1161026b5780630ff9b9af146103c357806318160ddd146103ec57806323b872dd146104175780632f745c591461044057806337929eb41461047d578063379607f5146104a8576102ae565b806301ffc9a7146102b357806304c98b2b146102f057806306fdde0314610307578063081812fc14610332578063095ea7b31461036f5780630d9639ba14610398575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d591906141d9565b610aec565b6040516102e791906148e9565b60405180910390f35b3480156102fc57600080fd5b50610305610afe565b005b34801561031357600080fd5b5061031c610bcf565b6040516103299190614904565b60405180910390f35b34801561033e57600080fd5b506103596004803603810190610354919061426c565b610c61565b6040516103669190614860565b60405180910390f35b34801561037b57600080fd5b5061039660048036038101906103919190614158565b610ce6565b005b3480156103a457600080fd5b506103ad610dfe565b6040516103ba9190614ce6565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190614194565b610e08565b005b3480156103f857600080fd5b50610401610f4f565b60405161040e9190614ce6565b60405180910390f35b34801561042357600080fd5b5061043e60048036038101906104399190614052565b610f5c565b005b34801561044c57600080fd5b5061046760048036038101906104629190614158565b610fbc565b6040516104749190614ce6565b60405180910390f35b34801561048957600080fd5b50610492611061565b60405161049f9190614904565b60405180910390f35b6104c260048036038101906104bd919061426c565b611070565b005b3480156104d057600080fd5b506104eb60048036038101906104e69190613fed565b611371565b6040516104f891906148e9565b60405180910390f35b34801561050d57600080fd5b5061052860048036038101906105239190614052565b611391565b005b34801561053657600080fd5b50610551600480360381019061054c919061426c565b6113b1565b005b34801561055f57600080fd5b5061057a60048036038101906105759190613fed565b61140d565b60405161058791906148c7565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b2919061426c565b611507565b6040516105c49190614ce6565b60405180910390f35b3480156105d957600080fd5b506105f460048036038101906105ef919061422b565b61159e565b005b34801561060257600080fd5b5061061d6004803603810190610618919061426c565b611634565b60405161062a9190614860565b60405180910390f35b34801561063f57600080fd5b506106486116e6565b6040516106559190614ce6565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190613fed565b6116f0565b6040516106929190614ce6565b60405180910390f35b3480156106a757600080fd5b506106b06117a8565b005b3480156106be57600080fd5b506106c7611830565b6040516106d49190614ce6565b60405180910390f35b3480156106e957600080fd5b506106f261183a565b6040516106ff9190614860565b60405180910390f35b610710611860565b005b34801561071e57600080fd5b506107396004803603810190610734919061426c565b611960565b005b34801561074757600080fd5b506107506119e6565b60405161075d9190614860565b60405180910390f35b34801561077257600080fd5b5061077b611a0f565b6040516107889190614ce6565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b3919061426c565b611a19565b005b3480156107c657600080fd5b506107cf611a9f565b6040516107dc9190614904565b60405180910390f35b3480156107f157600080fd5b506107fa611b31565b6040516108079190614860565b60405180910390f35b34801561081c57600080fd5b50610825611b57565b6040516108329190614ce6565b60405180910390f35b34801561084757600080fd5b50610850611b61565b60405161085d9190614ce6565b60405180910390f35b34801561087257600080fd5b5061088d6004803603810190610888919061426c565b611b6b565b005b34801561089b57600080fd5b506108b660048036038101906108b19190614158565b611bf1565b005b3480156108c457600080fd5b506108df60048036038101906108da919061411c565b611d2b565b005b3480156108ed57600080fd5b506108f6611d41565b005b34801561090457600080fd5b5061091f600480360381019061091a91906140a1565b611e12565b005b34801561092d57600080fd5b50610936611e74565b6040516109439190614904565b60405180910390f35b34801561095857600080fd5b50610973600480360381019061096e9190614194565b611f06565b005b34801561098157600080fd5b5061099c6004803603810190610997919061426c565b61206e565b6040516109a99190614904565b60405180910390f35b3480156109be57600080fd5b506109c7612080565b005b3480156109d557600080fd5b506109de612151565b6040516109eb9190614ce6565b60405180910390f35b348015610a0057600080fd5b50610a1b6004803603810190610a169190614016565b61215b565b604051610a2891906148e9565b60405180910390f35b348015610a3d57600080fd5b50610a466121ef565b005b348015610a5457600080fd5b50610a6f6004803603810190610a6a9190613fed565b6122c0565b005b348015610a7d57600080fd5b50610a986004803603810190610a939190614194565b6123b8565b005b348015610aa657600080fd5b50610ac16004803603810190610abc9190614194565b6124ff565b005b348015610acf57600080fd5b50610aea6004803603810190610ae5919061422b565b61269d565b005b6000610af782612784565b9050919050565b610b066127fe565b73ffffffffffffffffffffffffffffffffffffffff16610b246119e6565b73ffffffffffffffffffffffffffffffffffffffff1614610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190614ba6565b60405180910390fd5b6001601760006101000a81548160ff0219169083151502179055507f7043bbe469c0138e8b48647421db766bcd2fe92c0924f2b91311ac10d16973186001604051610bc591906148e9565b60405180910390a1565b606060018054610bde90614fda565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0a90614fda565b8015610c575780601f10610c2c57610100808354040283529160200191610c57565b820191906000526020600020905b815481529060010190602001808311610c3a57829003601f168201915b5050505050905090565b6000610c6c82612806565b610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290614b86565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cf182611634565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990614c46565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d816127fe565b73ffffffffffffffffffffffffffffffffffffffff161480610db05750610daf81610daa6127fe565b61215b565b5b610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690614ac6565b60405180910390fd5b610df98383612872565b505050565b6000601154905090565b610e106127fe565b73ffffffffffffffffffffffffffffffffffffffff16610e2e6119e6565b73ffffffffffffffffffffffffffffffffffffffff1614610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90614ba6565b60405180910390fd5b60005b82829050811015610f4a576000600d6000858585818110610ed1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610ee69190613fed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610f429061503d565b915050610e87565b505050565b6000600980549050905090565b610f6d610f676127fe565b8261292b565b610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa390614c66565b60405180910390fd5b610fb7838383612a09565b505050565b6000610fc7836116f0565b8210611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90614946565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b606061106b612c65565b905090565b601760019054906101000a900460ff16806110db5750600d60006110926127fe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190614ae6565b60405180910390fd5b61112a6111256127fe565b612cf7565b1561116a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116190614c26565b60405180910390fd5b6000611174610f4f565b9050601760009054906101000a900460ff166111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90614926565b60405180910390fd5b60125482111561120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190614aa6565b60405180910390fd5b6013548261121e6112196127fe565b6116f0565b6112289190614e0f565b1115611269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611260906149e6565b60405180910390fd5b6011546010546112799190614ef0565b82601654836112889190614ef0565b6112929190614e0f565b11156112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca90614be6565b60405180910390fd5b816014546112e19190614e96565b341015611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90614b46565b60405180910390fd5b60005b8281101561136c576113416113396127fe565b601554612d0a565b601560008154809291906113549061503d565b919050555080806113649061503d565b915050611326565b505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6113ac83838360405180602001604052806000815250611e12565b505050565b6113c26113bc6127fe565b8261292b565b611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890614cc6565b60405180910390fd5b61140a81612d28565b50565b6060600061141a836116f0565b905060008167ffffffffffffffff81111561145e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561148c5781602001602082028036833780820191505090505b50905060005b828110156114fc576114a48582610fbc565b8282815181106114dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806114f49061503d565b915050611492565b508092505050919050565b6000611511610f4f565b8210611552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154990614c86565b60405180910390fd5b6009828154811061158c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6115a66127fe565b73ffffffffffffffffffffffffffffffffffffffff166115c46119e6565b73ffffffffffffffffffffffffffffffffffffffff161461161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190614ba6565b60405180910390fd5b80600e9080519060200190611630929190613dc7565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490614b26565b60405180910390fd5b80915050919050565b6000601354905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175890614b06565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117b06127fe565b73ffffffffffffffffffffffffffffffffffffffff166117ce6119e6565b73ffffffffffffffffffffffffffffffffffffffff1614611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b90614ba6565b60405180910390fd5b61182e6000612d34565b565b6000601554905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6118686127fe565b73ffffffffffffffffffffffffffffffffffffffff166118866119e6565b73ffffffffffffffffffffffffffffffffffffffff16146118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390614ba6565b60405180910390fd5b60006064476118eb9190614e65565b9050611925600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166050836119209190614e96565b612df8565b61195d600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166014836119589190614e96565b612df8565b50565b6119686127fe565b73ffffffffffffffffffffffffffffffffffffffff166119866119e6565b73ffffffffffffffffffffffffffffffffffffffff16146119dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d390614ba6565b60405180910390fd5b8060138190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601654905090565b611a216127fe565b73ffffffffffffffffffffffffffffffffffffffff16611a3f6119e6565b73ffffffffffffffffffffffffffffffffffffffff1614611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90614ba6565b60405180910390fd5b8060148190555050565b606060028054611aae90614fda565b80601f0160208091040260200160405190810160405280929190818152602001828054611ada90614fda565b8015611b275780601f10611afc57610100808354040283529160200191611b27565b820191906000526020600020905b815481529060010190602001808311611b0a57829003601f168201915b5050505050905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601454905090565b6000601254905090565b611b736127fe565b73ffffffffffffffffffffffffffffffffffffffff16611b916119e6565b73ffffffffffffffffffffffffffffffffffffffff1614611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde90614ba6565b60405180910390fd5b8060128190555050565b611bf96127fe565b73ffffffffffffffffffffffffffffffffffffffff16611c176119e6565b73ffffffffffffffffffffffffffffffffffffffff1614611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6490614ba6565b60405180910390fd5b6000611c77610f4f565b9050601154601054611c899190614ef0565b8260165483611c989190614ef0565b611ca29190614e0f565b1115611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda90614be6565b60405180910390fd5b60005b82811015611d2557611cfa84601554612d0a565b60156000815480929190611d0d9061503d565b91905055508080611d1d9061503d565b915050611ce6565b50505050565b611d3d611d366127fe565b8383612eec565b5050565b611d496127fe565b73ffffffffffffffffffffffffffffffffffffffff16611d676119e6565b73ffffffffffffffffffffffffffffffffffffffff1614611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490614ba6565b60405180910390fd5b6000601760006101000a81548160ff0219169083151502179055507f7043bbe469c0138e8b48647421db766bcd2fe92c0924f2b91311ac10d16973186000604051611e0891906148e9565b60405180910390a1565b611e23611e1d6127fe565b8361292b565b611e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5990614c66565b60405180910390fd5b611e6e84848484613059565b50505050565b6060600f8054611e8390614fda565b80601f0160208091040260200160405190810160405280929190818152602001828054611eaf90614fda565b8015611efc5780601f10611ed157610100808354040283529160200191611efc565b820191906000526020600020905b815481529060010190602001808311611edf57829003601f168201915b5050505050905090565b611f0e6127fe565b73ffffffffffffffffffffffffffffffffffffffff16611f2c6119e6565b73ffffffffffffffffffffffffffffffffffffffff1614611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7990614ba6565b60405180910390fd5b601654601154611f929190614ef0565b828290501115611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce90614986565b60405180910390fd5b60005b828290508110156120695761203e838383818110612021577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906120369190613fed565b601654612d0a565b601660008154809291906120519061503d565b919050555080806120619061503d565b915050611fda565b505050565b6060612079826130b5565b9050919050565b6120886127fe565b73ffffffffffffffffffffffffffffffffffffffff166120a66119e6565b73ffffffffffffffffffffffffffffffffffffffff16146120fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f390614ba6565b60405180910390fd5b6000601760016101000a81548160ff0219169083151502179055507f29dd5bd6cf13e024c46ed68d620233ef088dffa89134f251ceedac6e4cfe06ad600160405161214791906148e9565b60405180910390a1565b6000601054905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121f76127fe565b73ffffffffffffffffffffffffffffffffffffffff166122156119e6565b73ffffffffffffffffffffffffffffffffffffffff161461226b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226290614ba6565b60405180910390fd5b6001601760016101000a81548160ff0219169083151502179055507f29dd5bd6cf13e024c46ed68d620233ef088dffa89134f251ceedac6e4cfe06ad60006040516122b691906148e9565b60405180910390a1565b6122c86127fe565b73ffffffffffffffffffffffffffffffffffffffff166122e66119e6565b73ffffffffffffffffffffffffffffffffffffffff161461233c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233390614ba6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a3906149a6565b60405180910390fd5b6123b581612d34565b50565b6123c06127fe565b73ffffffffffffffffffffffffffffffffffffffff166123de6119e6565b73ffffffffffffffffffffffffffffffffffffffff1614612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242b90614ba6565b60405180910390fd5b60005b828290508110156124fa576001600d6000858585818110612481577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906124969190613fed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806124f29061503d565b915050612437565b505050565b6125076127fe565b73ffffffffffffffffffffffffffffffffffffffff166125256119e6565b73ffffffffffffffffffffffffffffffffffffffff161461257b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257290614ba6565b60405180910390fd5b818160008181106125b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906125ca9190613fed565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081816001818110612644577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906126599190613fed565b600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6126a56127fe565b73ffffffffffffffffffffffffffffffffffffffff166126c36119e6565b73ffffffffffffffffffffffffffffffffffffffff1614612719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271090614ba6565b60405180910390fd5b6000600f805461272890614fda565b90501461276a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276190614ca6565b60405180910390fd5b80600f9080519060200190612780929190613dc7565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127f757506127f68261315c565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128e583611634565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061293682612806565b612975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296c90614a86565b60405180910390fd5b600061298083611634565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129ef57508373ffffffffffffffffffffffffffffffffffffffff166129d784610c61565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a0057506129ff818561215b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a2982611634565b73ffffffffffffffffffffffffffffffffffffffff1614612a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7690614bc6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae690614a06565b60405180910390fd5b612afa83838361323e565b612b05600082612872565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b559190614ef0565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bac9190614e0f565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6060600e8054612c7490614fda565b80601f0160208091040260200160405190810160405280929190818152602001828054612ca090614fda565b8015612ced5780601f10612cc257610100808354040283529160200191612ced565b820191906000526020600020905b815481529060010190602001808311612cd057829003601f168201915b5050505050905090565b600080823b905060008111915050919050565b612d2482826040518060200160405280600081525061324e565b5050565b612d31816132a9565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80471015612e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3290614a66565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612e619061484b565b60006040518083038185875af1925050503d8060008114612e9e576040519150601f19603f3d011682016040523d82523d6000602084013e612ea3565b606091505b5050905080612ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ede90614a46565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5290614a26565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161304c91906148e9565b60405180910390a3505050565b613064848484612a09565b613070848484846133ba565b6130af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a690614966565b60405180910390fd5b50505050565b60606130c082612806565b6130ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f690614c06565b60405180910390fd5b6000613109612c65565b905060008151116131295760405180602001604052806000815250613154565b8061313384613551565b604051602001613144929190614827565b6040516020818303038152906040525b915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061322757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806132375750613236826136fe565b5b9050919050565b613249838383613768565b505050565b613258838361387c565b61326560008484846133ba565b6132a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329b90614966565b60405180910390fd5b505050565b60006132b482611634565b90506132c28160008461323e565b6132cd600083612872565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461331d9190614ef0565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006133db8473ffffffffffffffffffffffffffffffffffffffff16612cf7565b15613544578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134046127fe565b8786866040518563ffffffff1660e01b8152600401613426949392919061487b565b602060405180830381600087803b15801561344057600080fd5b505af192505050801561347157506040513d601f19601f8201168201806040525081019061346e9190614202565b60015b6134f4573d80600081146134a1576040519150601f19603f3d011682016040523d82523d6000602084013e6134a6565b606091505b506000815114156134ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e390614966565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613549565b600190505b949350505050565b60606000821415613599576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136f9565b600082905060005b600082146135cb5780806135b49061503d565b915050600a826135c49190614e65565b91506135a1565b60008167ffffffffffffffff81111561360d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561363f5781602001600182028036833780820191505090505b5090505b600085146136f2576001826136589190614ef0565b9150600a856136679190615086565b60306136739190614e0f565b60f81b8183815181106136af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136eb9190614e65565b9450613643565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613773838383613a4a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137b6576137b181613a4f565b6137f5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146137f4576137f38382613a98565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138385761383381613c05565b613877565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613876576138758282613d48565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138e390614b66565b60405180910390fd5b6138f581612806565b15613935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392c906149c6565b60405180910390fd5b6139416000838361323e565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139919190614e0f565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613aa5846116f0565b613aaf9190614ef0565b9050600060086000848152602001908152602001600020549050818114613b94576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050613c199190614ef0565b90506000600a6000848152602001908152602001600020549050600060098381548110613c6f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110613cb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613d2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613d53836116f0565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b828054613dd390614fda565b90600052602060002090601f016020900481019282613df55760008555613e3c565b82601f10613e0e57805160ff1916838001178555613e3c565b82800160010185558215613e3c579182015b82811115613e3b578251825591602001919060010190613e20565b5b509050613e499190613e4d565b5090565b5b80821115613e66576000816000905550600101613e4e565b5090565b6000613e7d613e7884614d26565b614d01565b905082815260208101848484011115613e9557600080fd5b613ea0848285614f98565b509392505050565b6000613ebb613eb684614d57565b614d01565b905082815260208101848484011115613ed357600080fd5b613ede848285614f98565b509392505050565b600081359050613ef581615a0b565b92915050565b60008083601f840112613f0d57600080fd5b8235905067ffffffffffffffff811115613f2657600080fd5b602083019150836020820283011115613f3e57600080fd5b9250929050565b600081359050613f5481615a22565b92915050565b600081359050613f6981615a39565b92915050565b600081519050613f7e81615a39565b92915050565b600082601f830112613f9557600080fd5b8135613fa5848260208601613e6a565b91505092915050565b600082601f830112613fbf57600080fd5b8135613fcf848260208601613ea8565b91505092915050565b600081359050613fe781615a50565b92915050565b600060208284031215613fff57600080fd5b600061400d84828501613ee6565b91505092915050565b6000806040838503121561402957600080fd5b600061403785828601613ee6565b925050602061404885828601613ee6565b9150509250929050565b60008060006060848603121561406757600080fd5b600061407586828701613ee6565b935050602061408686828701613ee6565b925050604061409786828701613fd8565b9150509250925092565b600080600080608085870312156140b757600080fd5b60006140c587828801613ee6565b94505060206140d687828801613ee6565b93505060406140e787828801613fd8565b925050606085013567ffffffffffffffff81111561410457600080fd5b61411087828801613f84565b91505092959194509250565b6000806040838503121561412f57600080fd5b600061413d85828601613ee6565b925050602061414e85828601613f45565b9150509250929050565b6000806040838503121561416b57600080fd5b600061417985828601613ee6565b925050602061418a85828601613fd8565b9150509250929050565b600080602083850312156141a757600080fd5b600083013567ffffffffffffffff8111156141c157600080fd5b6141cd85828601613efb565b92509250509250929050565b6000602082840312156141eb57600080fd5b60006141f984828501613f5a565b91505092915050565b60006020828403121561421457600080fd5b600061422284828501613f6f565b91505092915050565b60006020828403121561423d57600080fd5b600082013567ffffffffffffffff81111561425757600080fd5b61426384828501613fae565b91505092915050565b60006020828403121561427e57600080fd5b600061428c84828501613fd8565b91505092915050565b60006142a18383614809565b60208301905092915050565b6142b681614f24565b82525050565b60006142c782614d98565b6142d18185614dc6565b93506142dc83614d88565b8060005b8381101561430d5781516142f48882614295565b97506142ff83614db9565b9250506001810190506142e0565b5085935050505092915050565b61432381614f36565b82525050565b600061433482614da3565b61433e8185614dd7565b935061434e818560208601614fa7565b61435781615173565b840191505092915050565b600061436d82614dae565b6143778185614df3565b9350614387818560208601614fa7565b61439081615173565b840191505092915050565b60006143a682614dae565b6143b08185614e04565b93506143c0818560208601614fa7565b80840191505092915050565b60006143d9603083614df3565b91506143e482615184565b604082019050919050565b60006143fc602b83614df3565b9150614407826151d3565b604082019050919050565b600061441f603283614df3565b915061442a82615222565b604082019050919050565b6000614442603683614df3565b915061444d82615271565b604082019050919050565b6000614465602683614df3565b9150614470826152c0565b604082019050919050565b6000614488601c83614df3565b91506144938261530f565b602082019050919050565b60006144ab603983614df3565b91506144b682615338565b604082019050919050565b60006144ce602483614df3565b91506144d982615387565b604082019050919050565b60006144f1601983614df3565b91506144fc826153d6565b602082019050919050565b6000614514603a83614df3565b915061451f826153ff565b604082019050919050565b6000614537601d83614df3565b91506145428261544e565b602082019050919050565b600061455a602c83614df3565b915061456582615477565b604082019050919050565b600061457d603683614df3565b9150614588826154c6565b604082019050919050565b60006145a0603883614df3565b91506145ab82615515565b604082019050919050565b60006145c3602683614df3565b91506145ce82615564565b604082019050919050565b60006145e6602a83614df3565b91506145f1826155b3565b604082019050919050565b6000614609602983614df3565b915061461482615602565b604082019050919050565b600061462c602583614df3565b915061463782615651565b604082019050919050565b600061464f602083614df3565b915061465a826156a0565b602082019050919050565b6000614672602c83614df3565b915061467d826156c9565b604082019050919050565b6000614695602083614df3565b91506146a082615718565b602082019050919050565b60006146b8602983614df3565b91506146c382615741565b604082019050919050565b60006146db602d83614df3565b91506146e682615790565b604082019050919050565b60006146fe602f83614df3565b9150614709826157df565b604082019050919050565b6000614721602583614df3565b915061472c8261582e565b604082019050919050565b6000614744602183614df3565b915061474f8261587d565b604082019050919050565b6000614767600083614de8565b9150614772826158cc565b600082019050919050565b600061478a603183614df3565b9150614795826158cf565b604082019050919050565b60006147ad602c83614df3565b91506147b88261591e565b604082019050919050565b60006147d0602683614df3565b91506147db8261596d565b604082019050919050565b60006147f3603083614df3565b91506147fe826159bc565b604082019050919050565b61481281614f8e565b82525050565b61482181614f8e565b82525050565b6000614833828561439b565b915061483f828461439b565b91508190509392505050565b60006148568261475a565b9150819050919050565b600060208201905061487560008301846142ad565b92915050565b600060808201905061489060008301876142ad565b61489d60208301866142ad565b6148aa6040830185614818565b81810360608301526148bc8184614329565b905095945050505050565b600060208201905081810360008301526148e181846142bc565b905092915050565b60006020820190506148fe600083018461431a565b92915050565b6000602082019050818103600083015261491e8184614362565b905092915050565b6000602082019050818103600083015261493f816143cc565b9050919050565b6000602082019050818103600083015261495f816143ef565b9050919050565b6000602082019050818103600083015261497f81614412565b9050919050565b6000602082019050818103600083015261499f81614435565b9050919050565b600060208201905081810360008301526149bf81614458565b9050919050565b600060208201905081810360008301526149df8161447b565b9050919050565b600060208201905081810360008301526149ff8161449e565b9050919050565b60006020820190508181036000830152614a1f816144c1565b9050919050565b60006020820190508181036000830152614a3f816144e4565b9050919050565b60006020820190508181036000830152614a5f81614507565b9050919050565b60006020820190508181036000830152614a7f8161452a565b9050919050565b60006020820190508181036000830152614a9f8161454d565b9050919050565b60006020820190508181036000830152614abf81614570565b9050919050565b60006020820190508181036000830152614adf81614593565b9050919050565b60006020820190508181036000830152614aff816145b6565b9050919050565b60006020820190508181036000830152614b1f816145d9565b9050919050565b60006020820190508181036000830152614b3f816145fc565b9050919050565b60006020820190508181036000830152614b5f8161461f565b9050919050565b60006020820190508181036000830152614b7f81614642565b9050919050565b60006020820190508181036000830152614b9f81614665565b9050919050565b60006020820190508181036000830152614bbf81614688565b9050919050565b60006020820190508181036000830152614bdf816146ab565b9050919050565b60006020820190508181036000830152614bff816146ce565b9050919050565b60006020820190508181036000830152614c1f816146f1565b9050919050565b60006020820190508181036000830152614c3f81614714565b9050919050565b60006020820190508181036000830152614c5f81614737565b9050919050565b60006020820190508181036000830152614c7f8161477d565b9050919050565b60006020820190508181036000830152614c9f816147a0565b9050919050565b60006020820190508181036000830152614cbf816147c3565b9050919050565b60006020820190508181036000830152614cdf816147e6565b9050919050565b6000602082019050614cfb6000830184614818565b92915050565b6000614d0b614d1c565b9050614d17828261500c565b919050565b6000604051905090565b600067ffffffffffffffff821115614d4157614d40615144565b5b614d4a82615173565b9050602081019050919050565b600067ffffffffffffffff821115614d7257614d71615144565b5b614d7b82615173565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e1a82614f8e565b9150614e2583614f8e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e5a57614e596150b7565b5b828201905092915050565b6000614e7082614f8e565b9150614e7b83614f8e565b925082614e8b57614e8a6150e6565b5b828204905092915050565b6000614ea182614f8e565b9150614eac83614f8e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ee557614ee46150b7565b5b828202905092915050565b6000614efb82614f8e565b9150614f0683614f8e565b925082821015614f1957614f186150b7565b5b828203905092915050565b6000614f2f82614f6e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614fc5578082015181840152602081019050614faa565b83811115614fd4576000848401525b50505050565b60006002820490506001821680614ff257607f821691505b6020821081141561500657615005615115565b5b50919050565b61501582615173565b810181811067ffffffffffffffff8211171561503457615033615144565b5b80604052505050565b600061504882614f8e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561507b5761507a6150b7565b5b600182019050919050565b600061509182614f8e565b915061509c83614f8e565b9250826150ac576150ab6150e6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f33303232204d65746176657273653a2050726573616c652074696d652068617360008201527f206e6f7420737461727465642079657400000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f33303232204d65746176657273653a2045786365656473206d6178696d756d2060008201527f726573657276656420746f6b656e7320737570706c7900000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f33303232204d65746176657273653a2045786365656473206d6178696d756d2060008201527f616c6c6f77656420746f6b656e73207065722077616c6c657400000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f33303232204d65746176657273653a2045786365656473206d6178696d756d2060008201527f616c6c6f77656420636c61696d73207065722074786e00000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f33303232204d65746176657273653a2063616c6c6572206e6f7420776869746560008201527f6c69737465640000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f33303232204d65746176657273653a2057726f6e672045544820616d6f756e7460008201527f2073656e74000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f33303232204d65746176657273653a2045786365656473206d6178696d756d2060008201527f746f6b656e7320737570706c7900000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f33303232204d65746176657273653a20636f6e747261637473206e6f7420616c60008201527f6c6f776564000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f33303232204d65746176657273653a2050726f76656e616e636520616c72656160008201527f6479207365740000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b615a1481614f24565b8114615a1f57600080fd5b50565b615a2b81614f36565b8114615a3657600080fd5b50565b615a4281614f42565b8114615a4d57600080fd5b50565b615a5981614f8e565b8114615a6457600080fd5b5056fea264697066735822122086e474709fc590b36db32ea10fc85ed701ab09e5bc2a7bb01ee80705f606e5ae64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000b1a2bc2ec50000000000000000000000000000000000000000000000000000000000000000003868747470733a2f2f333032326d65746176657273652e696f2f6170692f636f6c6c656374696f6e732f333032322d6d65746176657273652f0000000000000000
Deployed Bytecode
0x6080604052600436106102ae5760003560e01c8063853828b611610175578063a43be57b116100dc578063db9331b811610095578063f2fde38b1161006f578063f2fde38b14610a48578063f6e7c24e14610a71578063fe625fb614610a9a578063ffe630b514610ac3576102ae565b8063db9331b8146109c9578063e985e9c5146109f4578063f0c6983214610a31576102ae565b8063a43be57b146108e1578063b88d4fde146108f8578063b9da967d14610921578063c506fc9c1461094c578063c87b56dd14610975578063d4a262cd146109b2576102ae565b8063972cce751161012e578063972cce75146107e557806398d5fdca146108105780639c03132d1461083b5780639f4e038e14610866578063a14481941461088f578063a22cb465146108b8576102ae565b8063853828b6146107085780638ade091b146107125780638da5cb5b1461073b57806390845c571461076657806391b7f5ed1461079157806395d89b41146107ba576102ae565b806339c36fa0116102195780636352211e116101d25780636352211e146105f65780636df1cc7d1461063357806370a082311461065e578063715018a61461069b57806375794a3c146106b25780637af08ecb146106dd576102ae565b806339c36fa0146104c457806342842e0e1461050157806342966c681461052a578063438b6300146105535780634f6ccce71461059057806355f804b3146105cd576102ae565b80630ff9b9af1161026b5780630ff9b9af146103c357806318160ddd146103ec57806323b872dd146104175780632f745c591461044057806337929eb41461047d578063379607f5146104a8576102ae565b806301ffc9a7146102b357806304c98b2b146102f057806306fdde0314610307578063081812fc14610332578063095ea7b31461036f5780630d9639ba14610398575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d591906141d9565b610aec565b6040516102e791906148e9565b60405180910390f35b3480156102fc57600080fd5b50610305610afe565b005b34801561031357600080fd5b5061031c610bcf565b6040516103299190614904565b60405180910390f35b34801561033e57600080fd5b506103596004803603810190610354919061426c565b610c61565b6040516103669190614860565b60405180910390f35b34801561037b57600080fd5b5061039660048036038101906103919190614158565b610ce6565b005b3480156103a457600080fd5b506103ad610dfe565b6040516103ba9190614ce6565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190614194565b610e08565b005b3480156103f857600080fd5b50610401610f4f565b60405161040e9190614ce6565b60405180910390f35b34801561042357600080fd5b5061043e60048036038101906104399190614052565b610f5c565b005b34801561044c57600080fd5b5061046760048036038101906104629190614158565b610fbc565b6040516104749190614ce6565b60405180910390f35b34801561048957600080fd5b50610492611061565b60405161049f9190614904565b60405180910390f35b6104c260048036038101906104bd919061426c565b611070565b005b3480156104d057600080fd5b506104eb60048036038101906104e69190613fed565b611371565b6040516104f891906148e9565b60405180910390f35b34801561050d57600080fd5b5061052860048036038101906105239190614052565b611391565b005b34801561053657600080fd5b50610551600480360381019061054c919061426c565b6113b1565b005b34801561055f57600080fd5b5061057a60048036038101906105759190613fed565b61140d565b60405161058791906148c7565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b2919061426c565b611507565b6040516105c49190614ce6565b60405180910390f35b3480156105d957600080fd5b506105f460048036038101906105ef919061422b565b61159e565b005b34801561060257600080fd5b5061061d6004803603810190610618919061426c565b611634565b60405161062a9190614860565b60405180910390f35b34801561063f57600080fd5b506106486116e6565b6040516106559190614ce6565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190613fed565b6116f0565b6040516106929190614ce6565b60405180910390f35b3480156106a757600080fd5b506106b06117a8565b005b3480156106be57600080fd5b506106c7611830565b6040516106d49190614ce6565b60405180910390f35b3480156106e957600080fd5b506106f261183a565b6040516106ff9190614860565b60405180910390f35b610710611860565b005b34801561071e57600080fd5b506107396004803603810190610734919061426c565b611960565b005b34801561074757600080fd5b506107506119e6565b60405161075d9190614860565b60405180910390f35b34801561077257600080fd5b5061077b611a0f565b6040516107889190614ce6565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b3919061426c565b611a19565b005b3480156107c657600080fd5b506107cf611a9f565b6040516107dc9190614904565b60405180910390f35b3480156107f157600080fd5b506107fa611b31565b6040516108079190614860565b60405180910390f35b34801561081c57600080fd5b50610825611b57565b6040516108329190614ce6565b60405180910390f35b34801561084757600080fd5b50610850611b61565b60405161085d9190614ce6565b60405180910390f35b34801561087257600080fd5b5061088d6004803603810190610888919061426c565b611b6b565b005b34801561089b57600080fd5b506108b660048036038101906108b19190614158565b611bf1565b005b3480156108c457600080fd5b506108df60048036038101906108da919061411c565b611d2b565b005b3480156108ed57600080fd5b506108f6611d41565b005b34801561090457600080fd5b5061091f600480360381019061091a91906140a1565b611e12565b005b34801561092d57600080fd5b50610936611e74565b6040516109439190614904565b60405180910390f35b34801561095857600080fd5b50610973600480360381019061096e9190614194565b611f06565b005b34801561098157600080fd5b5061099c6004803603810190610997919061426c565b61206e565b6040516109a99190614904565b60405180910390f35b3480156109be57600080fd5b506109c7612080565b005b3480156109d557600080fd5b506109de612151565b6040516109eb9190614ce6565b60405180910390f35b348015610a0057600080fd5b50610a1b6004803603810190610a169190614016565b61215b565b604051610a2891906148e9565b60405180910390f35b348015610a3d57600080fd5b50610a466121ef565b005b348015610a5457600080fd5b50610a6f6004803603810190610a6a9190613fed565b6122c0565b005b348015610a7d57600080fd5b50610a986004803603810190610a939190614194565b6123b8565b005b348015610aa657600080fd5b50610ac16004803603810190610abc9190614194565b6124ff565b005b348015610acf57600080fd5b50610aea6004803603810190610ae5919061422b565b61269d565b005b6000610af782612784565b9050919050565b610b066127fe565b73ffffffffffffffffffffffffffffffffffffffff16610b246119e6565b73ffffffffffffffffffffffffffffffffffffffff1614610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190614ba6565b60405180910390fd5b6001601760006101000a81548160ff0219169083151502179055507f7043bbe469c0138e8b48647421db766bcd2fe92c0924f2b91311ac10d16973186001604051610bc591906148e9565b60405180910390a1565b606060018054610bde90614fda565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0a90614fda565b8015610c575780601f10610c2c57610100808354040283529160200191610c57565b820191906000526020600020905b815481529060010190602001808311610c3a57829003601f168201915b5050505050905090565b6000610c6c82612806565b610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290614b86565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cf182611634565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990614c46565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d816127fe565b73ffffffffffffffffffffffffffffffffffffffff161480610db05750610daf81610daa6127fe565b61215b565b5b610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690614ac6565b60405180910390fd5b610df98383612872565b505050565b6000601154905090565b610e106127fe565b73ffffffffffffffffffffffffffffffffffffffff16610e2e6119e6565b73ffffffffffffffffffffffffffffffffffffffff1614610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90614ba6565b60405180910390fd5b60005b82829050811015610f4a576000600d6000858585818110610ed1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610ee69190613fed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610f429061503d565b915050610e87565b505050565b6000600980549050905090565b610f6d610f676127fe565b8261292b565b610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa390614c66565b60405180910390fd5b610fb7838383612a09565b505050565b6000610fc7836116f0565b8210611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90614946565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b606061106b612c65565b905090565b601760019054906101000a900460ff16806110db5750600d60006110926127fe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190614ae6565b60405180910390fd5b61112a6111256127fe565b612cf7565b1561116a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116190614c26565b60405180910390fd5b6000611174610f4f565b9050601760009054906101000a900460ff166111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90614926565b60405180910390fd5b60125482111561120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190614aa6565b60405180910390fd5b6013548261121e6112196127fe565b6116f0565b6112289190614e0f565b1115611269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611260906149e6565b60405180910390fd5b6011546010546112799190614ef0565b82601654836112889190614ef0565b6112929190614e0f565b11156112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca90614be6565b60405180910390fd5b816014546112e19190614e96565b341015611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90614b46565b60405180910390fd5b60005b8281101561136c576113416113396127fe565b601554612d0a565b601560008154809291906113549061503d565b919050555080806113649061503d565b915050611326565b505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6113ac83838360405180602001604052806000815250611e12565b505050565b6113c26113bc6127fe565b8261292b565b611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890614cc6565b60405180910390fd5b61140a81612d28565b50565b6060600061141a836116f0565b905060008167ffffffffffffffff81111561145e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561148c5781602001602082028036833780820191505090505b50905060005b828110156114fc576114a48582610fbc565b8282815181106114dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806114f49061503d565b915050611492565b508092505050919050565b6000611511610f4f565b8210611552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154990614c86565b60405180910390fd5b6009828154811061158c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6115a66127fe565b73ffffffffffffffffffffffffffffffffffffffff166115c46119e6565b73ffffffffffffffffffffffffffffffffffffffff161461161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190614ba6565b60405180910390fd5b80600e9080519060200190611630929190613dc7565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490614b26565b60405180910390fd5b80915050919050565b6000601354905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175890614b06565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117b06127fe565b73ffffffffffffffffffffffffffffffffffffffff166117ce6119e6565b73ffffffffffffffffffffffffffffffffffffffff1614611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b90614ba6565b60405180910390fd5b61182e6000612d34565b565b6000601554905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6118686127fe565b73ffffffffffffffffffffffffffffffffffffffff166118866119e6565b73ffffffffffffffffffffffffffffffffffffffff16146118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390614ba6565b60405180910390fd5b60006064476118eb9190614e65565b9050611925600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166050836119209190614e96565b612df8565b61195d600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166014836119589190614e96565b612df8565b50565b6119686127fe565b73ffffffffffffffffffffffffffffffffffffffff166119866119e6565b73ffffffffffffffffffffffffffffffffffffffff16146119dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d390614ba6565b60405180910390fd5b8060138190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601654905090565b611a216127fe565b73ffffffffffffffffffffffffffffffffffffffff16611a3f6119e6565b73ffffffffffffffffffffffffffffffffffffffff1614611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90614ba6565b60405180910390fd5b8060148190555050565b606060028054611aae90614fda565b80601f0160208091040260200160405190810160405280929190818152602001828054611ada90614fda565b8015611b275780601f10611afc57610100808354040283529160200191611b27565b820191906000526020600020905b815481529060010190602001808311611b0a57829003601f168201915b5050505050905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601454905090565b6000601254905090565b611b736127fe565b73ffffffffffffffffffffffffffffffffffffffff16611b916119e6565b73ffffffffffffffffffffffffffffffffffffffff1614611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde90614ba6565b60405180910390fd5b8060128190555050565b611bf96127fe565b73ffffffffffffffffffffffffffffffffffffffff16611c176119e6565b73ffffffffffffffffffffffffffffffffffffffff1614611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6490614ba6565b60405180910390fd5b6000611c77610f4f565b9050601154601054611c899190614ef0565b8260165483611c989190614ef0565b611ca29190614e0f565b1115611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda90614be6565b60405180910390fd5b60005b82811015611d2557611cfa84601554612d0a565b60156000815480929190611d0d9061503d565b91905055508080611d1d9061503d565b915050611ce6565b50505050565b611d3d611d366127fe565b8383612eec565b5050565b611d496127fe565b73ffffffffffffffffffffffffffffffffffffffff16611d676119e6565b73ffffffffffffffffffffffffffffffffffffffff1614611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490614ba6565b60405180910390fd5b6000601760006101000a81548160ff0219169083151502179055507f7043bbe469c0138e8b48647421db766bcd2fe92c0924f2b91311ac10d16973186000604051611e0891906148e9565b60405180910390a1565b611e23611e1d6127fe565b8361292b565b611e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5990614c66565b60405180910390fd5b611e6e84848484613059565b50505050565b6060600f8054611e8390614fda565b80601f0160208091040260200160405190810160405280929190818152602001828054611eaf90614fda565b8015611efc5780601f10611ed157610100808354040283529160200191611efc565b820191906000526020600020905b815481529060010190602001808311611edf57829003601f168201915b5050505050905090565b611f0e6127fe565b73ffffffffffffffffffffffffffffffffffffffff16611f2c6119e6565b73ffffffffffffffffffffffffffffffffffffffff1614611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7990614ba6565b60405180910390fd5b601654601154611f929190614ef0565b828290501115611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce90614986565b60405180910390fd5b60005b828290508110156120695761203e838383818110612021577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906120369190613fed565b601654612d0a565b601660008154809291906120519061503d565b919050555080806120619061503d565b915050611fda565b505050565b6060612079826130b5565b9050919050565b6120886127fe565b73ffffffffffffffffffffffffffffffffffffffff166120a66119e6565b73ffffffffffffffffffffffffffffffffffffffff16146120fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f390614ba6565b60405180910390fd5b6000601760016101000a81548160ff0219169083151502179055507f29dd5bd6cf13e024c46ed68d620233ef088dffa89134f251ceedac6e4cfe06ad600160405161214791906148e9565b60405180910390a1565b6000601054905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121f76127fe565b73ffffffffffffffffffffffffffffffffffffffff166122156119e6565b73ffffffffffffffffffffffffffffffffffffffff161461226b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226290614ba6565b60405180910390fd5b6001601760016101000a81548160ff0219169083151502179055507f29dd5bd6cf13e024c46ed68d620233ef088dffa89134f251ceedac6e4cfe06ad60006040516122b691906148e9565b60405180910390a1565b6122c86127fe565b73ffffffffffffffffffffffffffffffffffffffff166122e66119e6565b73ffffffffffffffffffffffffffffffffffffffff161461233c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233390614ba6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a3906149a6565b60405180910390fd5b6123b581612d34565b50565b6123c06127fe565b73ffffffffffffffffffffffffffffffffffffffff166123de6119e6565b73ffffffffffffffffffffffffffffffffffffffff1614612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242b90614ba6565b60405180910390fd5b60005b828290508110156124fa576001600d6000858585818110612481577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906124969190613fed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806124f29061503d565b915050612437565b505050565b6125076127fe565b73ffffffffffffffffffffffffffffffffffffffff166125256119e6565b73ffffffffffffffffffffffffffffffffffffffff161461257b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257290614ba6565b60405180910390fd5b818160008181106125b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906125ca9190613fed565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081816001818110612644577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906126599190613fed565b600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6126a56127fe565b73ffffffffffffffffffffffffffffffffffffffff166126c36119e6565b73ffffffffffffffffffffffffffffffffffffffff1614612719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271090614ba6565b60405180910390fd5b6000600f805461272890614fda565b90501461276a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276190614ca6565b60405180910390fd5b80600f9080519060200190612780929190613dc7565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127f757506127f68261315c565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128e583611634565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061293682612806565b612975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296c90614a86565b60405180910390fd5b600061298083611634565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129ef57508373ffffffffffffffffffffffffffffffffffffffff166129d784610c61565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a0057506129ff818561215b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a2982611634565b73ffffffffffffffffffffffffffffffffffffffff1614612a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7690614bc6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae690614a06565b60405180910390fd5b612afa83838361323e565b612b05600082612872565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b559190614ef0565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bac9190614e0f565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6060600e8054612c7490614fda565b80601f0160208091040260200160405190810160405280929190818152602001828054612ca090614fda565b8015612ced5780601f10612cc257610100808354040283529160200191612ced565b820191906000526020600020905b815481529060010190602001808311612cd057829003601f168201915b5050505050905090565b600080823b905060008111915050919050565b612d2482826040518060200160405280600081525061324e565b5050565b612d31816132a9565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80471015612e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3290614a66565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612e619061484b565b60006040518083038185875af1925050503d8060008114612e9e576040519150601f19603f3d011682016040523d82523d6000602084013e612ea3565b606091505b5050905080612ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ede90614a46565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5290614a26565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161304c91906148e9565b60405180910390a3505050565b613064848484612a09565b613070848484846133ba565b6130af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a690614966565b60405180910390fd5b50505050565b60606130c082612806565b6130ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f690614c06565b60405180910390fd5b6000613109612c65565b905060008151116131295760405180602001604052806000815250613154565b8061313384613551565b604051602001613144929190614827565b6040516020818303038152906040525b915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061322757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806132375750613236826136fe565b5b9050919050565b613249838383613768565b505050565b613258838361387c565b61326560008484846133ba565b6132a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329b90614966565b60405180910390fd5b505050565b60006132b482611634565b90506132c28160008461323e565b6132cd600083612872565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461331d9190614ef0565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006133db8473ffffffffffffffffffffffffffffffffffffffff16612cf7565b15613544578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134046127fe565b8786866040518563ffffffff1660e01b8152600401613426949392919061487b565b602060405180830381600087803b15801561344057600080fd5b505af192505050801561347157506040513d601f19601f8201168201806040525081019061346e9190614202565b60015b6134f4573d80600081146134a1576040519150601f19603f3d011682016040523d82523d6000602084013e6134a6565b606091505b506000815114156134ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e390614966565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613549565b600190505b949350505050565b60606000821415613599576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136f9565b600082905060005b600082146135cb5780806135b49061503d565b915050600a826135c49190614e65565b91506135a1565b60008167ffffffffffffffff81111561360d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561363f5781602001600182028036833780820191505090505b5090505b600085146136f2576001826136589190614ef0565b9150600a856136679190615086565b60306136739190614e0f565b60f81b8183815181106136af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136eb9190614e65565b9450613643565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613773838383613a4a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137b6576137b181613a4f565b6137f5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146137f4576137f38382613a98565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138385761383381613c05565b613877565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613876576138758282613d48565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138e390614b66565b60405180910390fd5b6138f581612806565b15613935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392c906149c6565b60405180910390fd5b6139416000838361323e565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139919190614e0f565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613aa5846116f0565b613aaf9190614ef0565b9050600060086000848152602001908152602001600020549050818114613b94576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050613c199190614ef0565b90506000600a6000848152602001908152602001600020549050600060098381548110613c6f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110613cb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613d2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613d53836116f0565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b828054613dd390614fda565b90600052602060002090601f016020900481019282613df55760008555613e3c565b82601f10613e0e57805160ff1916838001178555613e3c565b82800160010185558215613e3c579182015b82811115613e3b578251825591602001919060010190613e20565b5b509050613e499190613e4d565b5090565b5b80821115613e66576000816000905550600101613e4e565b5090565b6000613e7d613e7884614d26565b614d01565b905082815260208101848484011115613e9557600080fd5b613ea0848285614f98565b509392505050565b6000613ebb613eb684614d57565b614d01565b905082815260208101848484011115613ed357600080fd5b613ede848285614f98565b509392505050565b600081359050613ef581615a0b565b92915050565b60008083601f840112613f0d57600080fd5b8235905067ffffffffffffffff811115613f2657600080fd5b602083019150836020820283011115613f3e57600080fd5b9250929050565b600081359050613f5481615a22565b92915050565b600081359050613f6981615a39565b92915050565b600081519050613f7e81615a39565b92915050565b600082601f830112613f9557600080fd5b8135613fa5848260208601613e6a565b91505092915050565b600082601f830112613fbf57600080fd5b8135613fcf848260208601613ea8565b91505092915050565b600081359050613fe781615a50565b92915050565b600060208284031215613fff57600080fd5b600061400d84828501613ee6565b91505092915050565b6000806040838503121561402957600080fd5b600061403785828601613ee6565b925050602061404885828601613ee6565b9150509250929050565b60008060006060848603121561406757600080fd5b600061407586828701613ee6565b935050602061408686828701613ee6565b925050604061409786828701613fd8565b9150509250925092565b600080600080608085870312156140b757600080fd5b60006140c587828801613ee6565b94505060206140d687828801613ee6565b93505060406140e787828801613fd8565b925050606085013567ffffffffffffffff81111561410457600080fd5b61411087828801613f84565b91505092959194509250565b6000806040838503121561412f57600080fd5b600061413d85828601613ee6565b925050602061414e85828601613f45565b9150509250929050565b6000806040838503121561416b57600080fd5b600061417985828601613ee6565b925050602061418a85828601613fd8565b9150509250929050565b600080602083850312156141a757600080fd5b600083013567ffffffffffffffff8111156141c157600080fd5b6141cd85828601613efb565b92509250509250929050565b6000602082840312156141eb57600080fd5b60006141f984828501613f5a565b91505092915050565b60006020828403121561421457600080fd5b600061422284828501613f6f565b91505092915050565b60006020828403121561423d57600080fd5b600082013567ffffffffffffffff81111561425757600080fd5b61426384828501613fae565b91505092915050565b60006020828403121561427e57600080fd5b600061428c84828501613fd8565b91505092915050565b60006142a18383614809565b60208301905092915050565b6142b681614f24565b82525050565b60006142c782614d98565b6142d18185614dc6565b93506142dc83614d88565b8060005b8381101561430d5781516142f48882614295565b97506142ff83614db9565b9250506001810190506142e0565b5085935050505092915050565b61432381614f36565b82525050565b600061433482614da3565b61433e8185614dd7565b935061434e818560208601614fa7565b61435781615173565b840191505092915050565b600061436d82614dae565b6143778185614df3565b9350614387818560208601614fa7565b61439081615173565b840191505092915050565b60006143a682614dae565b6143b08185614e04565b93506143c0818560208601614fa7565b80840191505092915050565b60006143d9603083614df3565b91506143e482615184565b604082019050919050565b60006143fc602b83614df3565b9150614407826151d3565b604082019050919050565b600061441f603283614df3565b915061442a82615222565b604082019050919050565b6000614442603683614df3565b915061444d82615271565b604082019050919050565b6000614465602683614df3565b9150614470826152c0565b604082019050919050565b6000614488601c83614df3565b91506144938261530f565b602082019050919050565b60006144ab603983614df3565b91506144b682615338565b604082019050919050565b60006144ce602483614df3565b91506144d982615387565b604082019050919050565b60006144f1601983614df3565b91506144fc826153d6565b602082019050919050565b6000614514603a83614df3565b915061451f826153ff565b604082019050919050565b6000614537601d83614df3565b91506145428261544e565b602082019050919050565b600061455a602c83614df3565b915061456582615477565b604082019050919050565b600061457d603683614df3565b9150614588826154c6565b604082019050919050565b60006145a0603883614df3565b91506145ab82615515565b604082019050919050565b60006145c3602683614df3565b91506145ce82615564565b604082019050919050565b60006145e6602a83614df3565b91506145f1826155b3565b604082019050919050565b6000614609602983614df3565b915061461482615602565b604082019050919050565b600061462c602583614df3565b915061463782615651565b604082019050919050565b600061464f602083614df3565b915061465a826156a0565b602082019050919050565b6000614672602c83614df3565b915061467d826156c9565b604082019050919050565b6000614695602083614df3565b91506146a082615718565b602082019050919050565b60006146b8602983614df3565b91506146c382615741565b604082019050919050565b60006146db602d83614df3565b91506146e682615790565b604082019050919050565b60006146fe602f83614df3565b9150614709826157df565b604082019050919050565b6000614721602583614df3565b915061472c8261582e565b604082019050919050565b6000614744602183614df3565b915061474f8261587d565b604082019050919050565b6000614767600083614de8565b9150614772826158cc565b600082019050919050565b600061478a603183614df3565b9150614795826158cf565b604082019050919050565b60006147ad602c83614df3565b91506147b88261591e565b604082019050919050565b60006147d0602683614df3565b91506147db8261596d565b604082019050919050565b60006147f3603083614df3565b91506147fe826159bc565b604082019050919050565b61481281614f8e565b82525050565b61482181614f8e565b82525050565b6000614833828561439b565b915061483f828461439b565b91508190509392505050565b60006148568261475a565b9150819050919050565b600060208201905061487560008301846142ad565b92915050565b600060808201905061489060008301876142ad565b61489d60208301866142ad565b6148aa6040830185614818565b81810360608301526148bc8184614329565b905095945050505050565b600060208201905081810360008301526148e181846142bc565b905092915050565b60006020820190506148fe600083018461431a565b92915050565b6000602082019050818103600083015261491e8184614362565b905092915050565b6000602082019050818103600083015261493f816143cc565b9050919050565b6000602082019050818103600083015261495f816143ef565b9050919050565b6000602082019050818103600083015261497f81614412565b9050919050565b6000602082019050818103600083015261499f81614435565b9050919050565b600060208201905081810360008301526149bf81614458565b9050919050565b600060208201905081810360008301526149df8161447b565b9050919050565b600060208201905081810360008301526149ff8161449e565b9050919050565b60006020820190508181036000830152614a1f816144c1565b9050919050565b60006020820190508181036000830152614a3f816144e4565b9050919050565b60006020820190508181036000830152614a5f81614507565b9050919050565b60006020820190508181036000830152614a7f8161452a565b9050919050565b60006020820190508181036000830152614a9f8161454d565b9050919050565b60006020820190508181036000830152614abf81614570565b9050919050565b60006020820190508181036000830152614adf81614593565b9050919050565b60006020820190508181036000830152614aff816145b6565b9050919050565b60006020820190508181036000830152614b1f816145d9565b9050919050565b60006020820190508181036000830152614b3f816145fc565b9050919050565b60006020820190508181036000830152614b5f8161461f565b9050919050565b60006020820190508181036000830152614b7f81614642565b9050919050565b60006020820190508181036000830152614b9f81614665565b9050919050565b60006020820190508181036000830152614bbf81614688565b9050919050565b60006020820190508181036000830152614bdf816146ab565b9050919050565b60006020820190508181036000830152614bff816146ce565b9050919050565b60006020820190508181036000830152614c1f816146f1565b9050919050565b60006020820190508181036000830152614c3f81614714565b9050919050565b60006020820190508181036000830152614c5f81614737565b9050919050565b60006020820190508181036000830152614c7f8161477d565b9050919050565b60006020820190508181036000830152614c9f816147a0565b9050919050565b60006020820190508181036000830152614cbf816147c3565b9050919050565b60006020820190508181036000830152614cdf816147e6565b9050919050565b6000602082019050614cfb6000830184614818565b92915050565b6000614d0b614d1c565b9050614d17828261500c565b919050565b6000604051905090565b600067ffffffffffffffff821115614d4157614d40615144565b5b614d4a82615173565b9050602081019050919050565b600067ffffffffffffffff821115614d7257614d71615144565b5b614d7b82615173565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e1a82614f8e565b9150614e2583614f8e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e5a57614e596150b7565b5b828201905092915050565b6000614e7082614f8e565b9150614e7b83614f8e565b925082614e8b57614e8a6150e6565b5b828204905092915050565b6000614ea182614f8e565b9150614eac83614f8e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ee557614ee46150b7565b5b828202905092915050565b6000614efb82614f8e565b9150614f0683614f8e565b925082821015614f1957614f186150b7565b5b828203905092915050565b6000614f2f82614f6e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614fc5578082015181840152602081019050614faa565b83811115614fd4576000848401525b50505050565b60006002820490506001821680614ff257607f821691505b6020821081141561500657615005615115565b5b50919050565b61501582615173565b810181811067ffffffffffffffff8211171561503457615033615144565b5b80604052505050565b600061504882614f8e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561507b5761507a6150b7565b5b600182019050919050565b600061509182614f8e565b915061509c83614f8e565b9250826150ac576150ab6150e6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f33303232204d65746176657273653a2050726573616c652074696d652068617360008201527f206e6f7420737461727465642079657400000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f33303232204d65746176657273653a2045786365656473206d6178696d756d2060008201527f726573657276656420746f6b656e7320737570706c7900000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f33303232204d65746176657273653a2045786365656473206d6178696d756d2060008201527f616c6c6f77656420746f6b656e73207065722077616c6c657400000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f33303232204d65746176657273653a2045786365656473206d6178696d756d2060008201527f616c6c6f77656420636c61696d73207065722074786e00000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f33303232204d65746176657273653a2063616c6c6572206e6f7420776869746560008201527f6c69737465640000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f33303232204d65746176657273653a2057726f6e672045544820616d6f756e7460008201527f2073656e74000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f33303232204d65746176657273653a2045786365656473206d6178696d756d2060008201527f746f6b656e7320737570706c7900000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f33303232204d65746176657273653a20636f6e747261637473206e6f7420616c60008201527f6c6f776564000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f33303232204d65746176657273653a2050726f76656e616e636520616c72656160008201527f6479207365740000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b615a1481614f24565b8114615a1f57600080fd5b50565b615a2b81614f36565b8114615a3657600080fd5b50565b615a4281614f42565b8114615a4d57600080fd5b50565b615a5981614f8e565b8114615a6457600080fd5b5056fea264697066735822122086e474709fc590b36db32ea10fc85ed701ab09e5bc2a7bb01ee80705f606e5ae64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000b1a2bc2ec50000000000000000000000000000000000000000000000000000000000000000003868747470733a2f2f333032326d65746176657273652e696f2f6170692f636f6c6c656374696f6e732f333032322d6d65746176657273652f0000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://3022metaverse.io/api/collections/3022-metaverse/
Arg [1] : maxAllowedSupply (uint256): 3600
Arg [2] : reserved (uint256): 50
Arg [3] : cap_txn (uint256): 6
Arg [4] : cap_wallet (uint256): 20
Arg [5] : price (uint256): 50000000000000000
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000e10
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [5] : 00000000000000000000000000000000000000000000000000b1a2bc2ec50000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000038
Arg [7] : 68747470733a2f2f333032326d65746176657273652e696f2f6170692f636f6c
Arg [8] : 6c656374696f6e732f333032322d6d65746176657273652f0000000000000000
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 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.