Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 5 from a total of 5 transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MarioBros
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//***********************************************************************************************************//
//***********************************************************************************************************//
/*
%@@@&#(((((((((((#&@@@#
@@%(((((((((((((((((((((((((((((%@@
/@%((((((((((((((%@@@@@@@@@%((((((((((((((&@,
@@(((((((((((((@@ # @ /@&((((((((((((@@
@&(((((((((((((@, @((&@ %@((&& @@((((((((((((@@
(@((((((((((((((@ &&((((((@@@(((((((@ @#(((((((((((((@.
@&(((((((((((((((@ @/(((@@@((((((@/@(((@* @#((((((((((((((@&
@#((((((((((((((((&( @((((@ /@((@ (&(((#@ @((((((((((((((((&@
@%((((((((((((((((((#@ &%((((@ &%((((@ /&((((((((((((((((((@&
(@(((((((((((((((((((((&%.@#(((@ @#(((@# @(((((((((((((((((((((@,
@(((((((((((((((((((((((((@, (@ @@, @#((((((((((((((((((((((((@
#&(((((((((((((((((((((((((((#&@@@@@@@@@@@@@@@@@@@%/.&@((((((((((((((((((((((((((((@,
@((((((((((((((((((((#@@@#((((((((((((((((((((((((((((((((((#@@@@(((((((((((((((((((((@
@((((((((((((((((@@&(((((((((((((((((((((((((((((((((((((((((((((((((%@@((((((((((((((((@
@(((((((((((((@@(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((#@@((((((((((((@
@((((((((((%@(((((((((((((((((((((%&@@@@@@@@@@@@@@@@@@@@@@@@&#((((((((((((((((((&@((((((((((@
&%((((((((@#(((((((((((((&@@@@@@@@@.........................@@@@@@@@@@@&((((((((((((@&(((((((@.
@(((((((@((((((((((%@@@@@@@@@@@@@@@@@,...................,@@@@@@@@@@@@@@@@,@@(((((((((@%((((((@
@((((((@((((((((@(..@@@@@@@@@#%@@@@@@@@.................&@@@@@@@/..,%@@@@@(.../@(((((((@#(((((@
@((((((@(((((@#.....@@@@............@@@%................@@@@............@@@......@%((((@#(((((@
@((((((#@((@@.......@%................,@...............%@.................&.......@@@@@(((((((@
%%(((((((@##@...............@@% *@@,...................../@@. &@#...............@##@@((((((@.
@(((((%@###@............,@ @@(((&@.................@#((#@@ @.............@####@(((((@
@((((@####@...........@. @((((((((@..............,@((((((((@ #&...........@#####@(((@
@(.....@#####@..........#( @((#@@ @@(@.............@(@@ @@(((@ @,..........@#####@@@&&@@
.@........@####@..........@ @#(%@@@@@@@@@............,@@@@@@@@@((%/ @..........@#####@.......@
@...&&,...@####@..........@ @((&@@@@@@@@@.*#@@@@@@@#,,@@@@@@@@@#(%( @..........@####&#..&@@&..@
@.@.....&@@####@..........@, @((@@@@@@#.................#@@@@@@((@ &/..........@####@@*.....@,*@
@,&.......@####@...........@ .@((@@.........................@&((@ @...........@%###@.......,@.@
@.@....#@.@###@...@@@,......&@ (@.............................@. .@(.......@@@...@###@,.@%...&*(%
,@@...%*..@##@...@@@@@@@#........,@...............................(%........,@@@@@@@...@##@...(#..@.@
@,...(%..&@&(..@@@@@@@@@@@@@@@*.&*................................@.*&@@@@@@@@@@@@@@...@%@...@*...@
@.....@,..@../@@@@@@@@@@@@@@@@@@#................................@@@@@@@@@@@@@@@@@@&..##..(@....@
&#......&/...@@@@@@@@@@@@@@@@@@@...............................&@@@@@@@@@@@@@@@@@@,...@......,@
@.....@,....@@@@@@@@@@@@@@@@@@@.............................&@@@@@@@@@@@@@@@@@@.....@.....@.
*@.../#......(@@@@@@@@@@@@@@@@@@.........................,@@@@@@@@@@@@@@@@@%.......@...&&
%@(@............@@@@@@@@@@@@@@@@*...................@@@@@@@@@@@@@@@,...........@@@%
@............@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@............/&
@..............&@@@@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@%@@@@@@@..............%&
@...................&...@@@@@@@@@@@@@@@@@@@@@@@...%...................@
@,....................#@@@%*..........*%@@@@, ....................@.
/@...........................................................@@
@&...................#@@@@&&%&@@@@#..................(@*
.@@...........................................#@(
&@/.................................,@@
&@@.......................#@@
*@@@@@/,..,#@@@@%
//***********************************************************************************************************/
//***********************************************************************************************************//
//-------------DEPENDENCIES--------------------------//
// File: @openzeppelin/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: SafeMath is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's + operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's - operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's * operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's / operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's % operator. This function uses a revert
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's - operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's / operator. Note: this function uses a
* revert opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's % operator. This function uses a revert
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @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
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on isContract to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's transfer: sends amount wei to
* recipient, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by transfer, making them unable to receive funds via
* transfer. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to recipient, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level call. A
* plain call is an unsafe replacement for a function call: use this
* function instead.
*
* If target reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[abi.decode].
*
* Requirements:
*
* - target must be a contract.
* - calling target with data must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], but with
* errorMessage as a fallback revert reason when target reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall],
* but also transferring value wei to target.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least value.
* - the called Solidity function must be payable.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[functionCallWithValue], but
* with errorMessage as a fallback revert reason when target reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[functionCall],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[functionCall],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// 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);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// 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);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
*
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when tokenId token is transferred from from to to.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when owner enables approved to manage the tokenId token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when owner enables or disables (approved) operator to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in owner's account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the tokenId token.
*
* Requirements:
*
* - tokenId must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers tokenId token from from to to, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - from cannot be the zero address.
* - to cannot be the zero address.
* - tokenId token must exist and be owned by from.
* - If the caller is not from, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If to refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers tokenId token from from to to.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - from cannot be the zero address.
* - to cannot be the zero address.
* - tokenId token must be owned by from.
* - If the caller is not from, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to to to transfer tokenId token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - tokenId must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for tokenId token.
*
* Requirements:
*
* - tokenId must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove operator as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The operator cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the operator is allowed to manage all of the assets of owner.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers tokenId token from from to to.
*
* Requirements:
*
* - from cannot be the zero address.
* - to cannot be the zero address.
* - tokenId token must exist and be owned by from.
* - If the caller is not from, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If to refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by owner at a given index of its token list.
* Use along with {balanceOf} to enumerate all of owner's tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given index of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for tokenId token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a uint256 to its ASCII string decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a uint256 to its ASCII string hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a uint256 to its ASCII string hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from ReentrancyGuard will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single nonReentrant guard, functions marked as
* nonReentrant may not call one another. This can be worked around by making
* those functions private, and then adding external nonReentrant entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a nonReentrant function from another nonReentrant
* function is not supported. It is possible to prevent this from happening
* by making the nonReentrant function external, and making it call a
* private function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* onlyOwner, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* onlyOwner functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(0x8d6B69130e85E6E3b71f3987851455dd7CbF11Ca);
}
/**
* @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);
}
}
//-------------END DEPENDENCIES------------------------//
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
*
* Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
*
* Does not support burning tokens to address(0).
*/
contract ERC721A is
Context,
ERC165,
IERC721,
IERC721Metadata,
IERC721Enumerable
{
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMinted;
}
uint256 private currentIndex;
uint256 public immutable collectionSize;
uint256 public maxBatchSize;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) private _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// 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
* maxBatchSize refers to how much a minter can mint at a time.
* collectionSize_ refers to how many tokens are in the collection.
*/
constructor(
string memory name_,
string memory symbol_,
uint256 maxBatchSize_,
uint256 collectionSize_
) {
require(
collectionSize_ > 0,
"ERC721A: collection must have a nonzero supply"
);
require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
_name = name_;
_symbol = symbol_;
maxBatchSize = maxBatchSize_;
collectionSize = collectionSize_;
currentIndex = _startTokenId();
}
/**
* To change the starting tokenId, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 1;
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalMinted();
}
function currentTokenId() public view returns (uint256) {
return _totalMinted();
}
function getNextTokenId() public view returns (uint256) {
return SafeMath.add(_totalMinted(), 1);
}
/**
* Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view returns (uint256) {
unchecked {
return currentIndex - _startTokenId();
}
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view override returns (uint256) {
require(index < totalSupply(), "ERC721A: global index out of bounds");
return index;
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
* This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
* It may also degrade with extremely large collection sizes (e.g >> 4000), test for your use case.
*/
function tokenOfOwnerByIndex(address owner, uint256 index)
public
view
override
returns (uint256)
{
require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
uint256 numMintedSoFar = totalSupply();
uint256 tokenIdsIdx = 0;
address currOwnershipAddr = address(0);
for (uint256 i = 0; i < numMintedSoFar; i++) {
TokenOwnership memory ownership = _ownerships[i];
if (ownership.addr != address(0)) {
currOwnershipAddr = ownership.addr;
}
if (currOwnershipAddr == owner) {
if (tokenIdsIdx == index) {
return i;
}
tokenIdsIdx++;
}
}
revert("ERC721A: unable to get token of owner by index");
}
/**
* @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 ||
interfaceId == type(IERC721Enumerable).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
require(owner != address(0), "ERC721A: balance query for the zero address");
return uint256(_addressData[owner].balance);
}
function _numberMinted(address owner) internal view returns (uint256) {
require(
owner != address(0),
"ERC721A: number minted query for the zero address"
);
return uint256(_addressData[owner].numberMinted);
}
function ownershipOf(uint256 tokenId)
internal
view
returns (TokenOwnership memory)
{
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr && curr < currentIndex) {
TokenOwnership memory ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
// Invariant:
// There will always be an ownership that has an address and is not burned
// before an ownership that does not have an address and is not burned.
// Hence, curr will not underflow.
while (true) {
curr--;
ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
}
}
revert("ERC721A: unable to determine the owner of token");
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return ownershipOf(tokenId).addr;
}
/**
* @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)
{
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 override {
address owner = ERC721A.ownerOf(tokenId);
require(to != owner, "ERC721A: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721A: approve caller is not owner nor approved for all"
);
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
require(_exists(tokenId), "ERC721A: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public override {
require(operator != _msgSender(), "ERC721A: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator)
public
view
virtual
override
returns (bool)
{
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public override {
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public override {
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, _data),
"ERC721A: 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),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return _startTokenId() <= tokenId && tokenId < currentIndex;
}
function _safeMint(address to, uint256 quantity, bool isAdminMint) internal {
_safeMint(to, quantity, isAdminMint, "");
}
/**
* @dev Mints quantity tokens and transfers them to to.
*
* Requirements:
*
* - there must be quantity tokens remaining unminted in the total collection.
* - to cannot be the zero address.
* - quantity cannot be larger than the max batch size.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bool isAdminMint,
bytes memory _data
) internal {
uint256 startTokenId = currentIndex;
require(to != address(0), "ERC721A: mint to the zero address");
// We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
require(!_exists(startTokenId), "ERC721A: token already minted");
require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");
require(tx.origin == msg.sender, "The caller is another contract");
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
AddressData memory addressData = _addressData[to];
_addressData[to] = AddressData(
addressData.balance + uint128(quantity),
addressData.numberMinted + (isAdminMint ? 0 : uint128(quantity))
);
_ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));
uint256 updatedIndex = startTokenId;
for (uint256 i = 0; i < quantity; i++) {
emit Transfer(address(0), to, updatedIndex);
require(
_checkOnERC721Received(address(0), to, updatedIndex, _data),
"ERC721A: transfer to non ERC721Receiver implementer"
);
updatedIndex++;
}
currentIndex = updatedIndex;
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers tokenId from from to to.
*
* Requirements:
*
* - to cannot be the zero address.
* - tokenId token must be owned by from.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) private {
TokenOwnership memory prevOwnership = ownershipOf(tokenId);
bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
getApproved(tokenId) == _msgSender() ||
isApprovedForAll(prevOwnership.addr, _msgSender()));
require(
isApprovedOrOwner,
"ERC721A: transfer caller is not owner nor approved"
);
require(
prevOwnership.addr == from,
"ERC721A: transfer from incorrect owner"
);
require(to != address(0), "ERC721A: transfer to the zero address");
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, prevOwnership.addr);
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
_ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
if (_ownerships[nextTokenId].addr == address(0)) {
if (_exists(nextTokenId)) {
_ownerships[nextTokenId] = TokenOwnership(
prevOwnership.addr,
prevOwnership.startTimestamp
);
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Approve to to operate on tokenId
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
uint256 public nextOwnerToExplicitlySet = 0;
/**
* @dev Explicitly set owners to eliminate loops in future calls of ownerOf().
*/
function _setOwnersExplicit(uint256 quantity) internal {
uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
require(quantity > 0, "quantity must be nonzero");
if (currentIndex == _startTokenId()) revert('No Tokens Minted Yet');
uint256 endIndex = oldNextOwnerToSet + quantity - 1;
if (endIndex > collectionSize - 1) {
endIndex = collectionSize - 1;
}
// We know if the last one in the group exists, all in the group exist, due to serial ordering.
require(_exists(endIndex), "not enough minted yet for this cleanup");
for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
if (_ownerships[i].addr == address(0)) {
TokenOwnership memory ownership = ownershipOf(i);
_ownerships[i] = TokenOwnership(
ownership.addr,
ownership.startTimestamp
);
}
}
nextOwnerToExplicitlySet = endIndex + 1;
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try
IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721A: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When from and to are both non-zero, from's tokenId will be
* transferred to to.
* - When from is zero, tokenId will be minted for to.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - when from and to are both non-zero.
* - from and to are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
}
abstract contract Ramppable {
address public RAMPPADDRESS = 0x8d6B69130e85E6E3b71f3987851455dd7CbF11Ca;
modifier isRampp() {
require(msg.sender == RAMPPADDRESS, "Ownable: caller is not RAMPP");
_;
}
}
interface IERC20 {
function transfer(address _to, uint256 _amount) external returns (bool);
function balanceOf(address account) external view returns (uint256);
}
abstract contract Withdrawable is Ownable, Ramppable {
address[] public payableAddresses = [RAMPPADDRESS,0x8d6B69130e85E6E3b71f3987851455dd7CbF11Ca];
uint256[] public payableFees = [5,95];
uint256 public payableAddressCount = 2;
function withdrawAll() public onlyOwner {
require(address(this).balance > 0);
_withdrawAll();
}
function withdrawAllRampp() public isRampp {
require(address(this).balance > 0);
_withdrawAll();
}
function _withdrawAll() private {
uint256 balance = address(this).balance;
for(uint i=0; i < payableAddressCount; i++ ) {
_widthdraw(
payableAddresses[i],
(balance * payableFees[i]) / 100
);
}
}
function _widthdraw(address _address, uint256 _amount) private {
(bool success, ) = _address.call{value: _amount}("");
require(success, "Transfer failed.");
}
/**
* @dev Allow contract owner to withdraw ERC-20 balance from contract
* while still splitting royalty payments to all other team members.
* in the event ERC-20 tokens are paid to the contract.
* @param _tokenContract contract of ERC-20 token to withdraw
* @param _amount balance to withdraw according to balanceOf of ERC-20 token
*/
function withdrawAllERC20(address _tokenContract, uint256 _amount) public onlyOwner {
require(_amount > 0);
IERC20 tokenContract = IERC20(_tokenContract);
require(tokenContract.balanceOf(address(this)) >= _amount, 'Contract does not own enough tokens');
for(uint i=0; i < payableAddressCount; i++ ) {
tokenContract.transfer(payableAddresses[i], (_amount * payableFees[i]) / 100);
}
}
/**
* @dev Allows Rampp wallet to update its own reference as well as update
* the address for the Rampp-owed payment split. Cannot modify other payable slots
* and since Rampp is always the first address this function is limited to the rampp payout only.
* @param _newAddress updated Rampp Address
*/
function setRamppAddress(address _newAddress) public isRampp {
require(_newAddress != RAMPPADDRESS, "RAMPP: New Rampp address must be different");
RAMPPADDRESS = _newAddress;
payableAddresses[0] = _newAddress;
}
}
abstract contract RamppERC721A is
Ownable,
ERC721A,
Withdrawable,
ReentrancyGuard {
constructor(
string memory tokenName,
string memory tokenSymbol
) ERC721A(tokenName, tokenSymbol, 5, 800) {}
using SafeMath for uint256;
uint8 public CONTRACT_VERSION = 2;
string public _baseTokenURI = "ipfs://QmeauUstghBSuy4k8vk1QUUsbcY4SgJ39zSSR5gWMu3ogw/";
string public _contractURI = "ipfs://QmSdYv5YkSVDsaVixdxeUVUtvADtFQfjdf5TnZsvCnLsNH";
bool public mintingOpen = false;
uint256 public PRICE = 0.03 ether;
/////////////// Admin Mint Functions
/**
* @dev Mints a token to an address with a tokenURI.
* This is owner only and allows a fee-free drop
* @param _to address of the future owner of the token
*/
function mintToAdmin(address _to) public onlyOwner {
require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 4000");
_safeMint(_to, 1, true);
}
function mintToAdminMany(address _to, uint256 _amount) public onlyOwner {
require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 4000");
_safeMint(_to, _amount, false);
}
function mintManyAdmin(address[] memory _addresses, uint256 _addressCount) public onlyOwner {
for(uint i=0; i < _addressCount; i++ ) {
mintToAdmin(_addresses[i]);
}
}
/////////////// GENERIC MINT FUNCTIONS
/**
* @dev Mints a token to an address with a tokenURI.
* fee may or may not be required*
* @param _to address of the future owner of the token
* @param _amount number of tokens to mint
*/
function mintToMultiple(address _to, uint256 _amount) public payable {
require(_amount >= 1, "Must mint at least 1 token");
require(mintingOpen == true, "Minting is not open right now!");
if(currentTokenId() <= 200) {
require(_amount == 1, "Only one free mint.");
require(msg.value == 0, "You made it to the free mint!");
require(_numberMinted(msg.sender) == 0, "Only one free mint.");
require(_to == msg.sender, "Can only mint for yourself");
_safeMint(_to, 1, false);
} else {
require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction");
require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 4000");
require(msg.value == getPrice(_amount), "Value below required mint fee for amount");
require(_to == msg.sender, "Can only mint for yourself");
_safeMint(_to, _amount, false);
}
}
function openMinting() public onlyOwner {
mintingOpen = true;
}
function stopMinting() public onlyOwner {
mintingOpen = false;
}
/**
* @dev Allows owner to set Max mints per tx
* @param _newMaxMint maximum amount of tokens allowed to mint per tx. Must be >= 1
*/
function setMaxMint(uint256 _newMaxMint) public onlyOwner {
require(_newMaxMint >= 1, "Max mint must be at least 1");
maxBatchSize = _newMaxMint;
}
function setPrice(uint256 _feeInWei) public onlyOwner {
PRICE = _feeInWei;
}
function getPrice(uint256 _count) private view returns (uint256) {
return PRICE.mul(_count);
}
function _baseURI() internal view virtual override returns (string memory) {
return _baseTokenURI;
}
function baseTokenURI() public view returns (string memory) {
return _baseTokenURI;
}
function setBaseURI(string calldata baseURI) external onlyOwner {
_baseTokenURI = baseURI;
}
function setContractURI(string calldata contractURI) external onlyOwner {
_contractURI = contractURI;
}
function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
return ownershipOf(tokenId);
}
}
// File: contracts/CopebearsContract.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract MarioBros is RamppERC721A {
constructor() RamppERC721A("Mario Bros NFTs", "1UP"){}
function contractURI() public returns (string memory) {
return _contractURI;
}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_VERSION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RAMPPADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_addressCount","type":"uint256"}],"name":"mintManyAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintToAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToAdminMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payableAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeInWei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setRamppAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMinting","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":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAllERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllRampp","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60a06040526000600955738d6b69130e85e6e3b71f3987851455dd7cbf11ca600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001738d6b69130e85e6e3b71f3987851455dd7cbf11ca73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250600b906002620001139291906200045c565b506040518060400160405280600560ff168152602001605f60ff16815250600c90600262000143929190620004eb565b506002600d556002600f60006101000a81548160ff021916908360ff1602179055506040518060600160405280603681526020016200676260369139601090805190602001906200019692919062000542565b50604051806060016040528060358152602001620067986035913960119080519060200190620001c892919062000542565b506000601260006101000a81548160ff021916908315150217905550666a94d74f430000601355348015620001fc57600080fd5b506040518060400160405280600f81526020017f4d6172696f2042726f73204e46547300000000000000000000000000000000008152506040518060400160405280600381526020017f31555000000000000000000000000000000000000000000000000000000000008152508181600561032062000290620002846200038760201b60201c565b6200038f60201b60201c565b60008111620002d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002cd9062000679565b60405180910390fd5b600082116200031c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003139062000711565b60405180910390fd5b83600390805190602001906200033492919062000542565b5082600490805190602001906200034d92919062000542565b508160028190555080608081815250506200036d6200045360201b60201c565b600181905550505050506001600e81905550505062000798565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b828054828255906000526020600020908101928215620004d8579160200282015b82811115620004d75782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200047d565b5b509050620004e79190620005d3565b5090565b8280548282559060005260206000209081019282156200052f579160200282015b828111156200052e578251829060ff169055916020019190600101906200050c565b5b5090506200053e9190620005d3565b5090565b828054620005509062000762565b90600052602060002090601f016020900481019282620005745760008555620005c0565b82601f106200058f57805160ff1916838001178555620005c0565b82800160010185558215620005c0579182015b82811115620005bf578251825591602001919060010190620005a2565b5b509050620005cf9190620005d3565b5090565b5b80821115620005ee576000816000905550600101620005d4565b5090565b600082825260208201905092915050565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b600062000661602e83620005f2565b91506200066e8262000603565b604082019050919050565b60006020820190508181036000830152620006948162000652565b9050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6000620006f9602783620005f2565b915062000706826200069b565b604082019050919050565b600060208201905081810360008301526200072c81620006ea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200077b57607f821691505b6020821081141562000792576200079162000733565b5b50919050565b608051615f99620007c960003960008181610f0201528181611589015281816118b0015261201a0152615f996000f3fe6080604052600436106102c85760003560e01c8063853828b611610175578063b88d4fde116100dc578063cfc86f7b11610095578063dcd4aa8b1161006f578063dcd4aa8b14610ac0578063e8a3d48514610ad7578063e985e9c514610b02578063f2fde38b14610b3f576102c8565b8063cfc86f7b14610a3f578063d547cfb714610a6a578063d7224ba014610a95576102c8565b8063b88d4fde1461092f578063bbd8556b14610958578063c0e7274014610981578063c5815c41146109ac578063c87b56dd146109d7578063caa0f92a14610a14576102c8565b80639231ab2a1161012e5780639231ab2a14610823578063938e3d7b1461086057806395d89b4114610889578063a22cb465146108b4578063a54dd93c146108dd578063b40ebceb14610906576102c8565b8063853828b614610725578063891bbe731461073c5780638d859f3e146107795780638da5cb5b146107a45780638f4bb497146107cf57806391b7f5ed146107fa576102c8565b80633e07311c11610234578063547520fe116101ed57806368be561b116101c757806368be561b146106915780636ba9fd38146106ba57806370a08231146106d1578063715018a61461070e576102c8565b8063547520fe1461060257806355f804b31461062b5780636352211e14610654576102c8565b80633e07311c146105065780633e3e0b121461053157806342842e0e1461054857806345c0f533146105715780634d5f4e761461059c5780634f6ccce7146105c5576102c8565b806318160ddd1161028657806318160ddd146103e257806323b872dd1461040d578063286c8137146104365780632913daa0146104735780632f745c591461049e57806338b90333146104db576102c8565b80629a9b7b146102cd57806301ffc9a7146102f85780630644cefa1461033557806306fdde0314610351578063081812fc1461037c578063095ea7b3146103b9575b600080fd5b3480156102d957600080fd5b506102e2610b68565b6040516102ef91906140e7565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a919061416e565b610b77565b60405161032c91906141b6565b60405180910390f35b61034f600480360381019061034a919061425b565b610cc1565b005b34801561035d57600080fd5b5061036661103e565b6040516103739190614334565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190614356565b6110d0565b6040516103b09190614392565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db919061425b565b611155565b005b3480156103ee57600080fd5b506103f761126e565b60405161040491906140e7565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f91906143ad565b61127d565b005b34801561044257600080fd5b5061045d60048036038101906104589190614356565b61128d565b60405161046a91906140e7565b60405180910390f35b34801561047f57600080fd5b506104886112b1565b60405161049591906140e7565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c0919061425b565b6112b7565b6040516104d291906140e7565b60405180910390f35b3480156104e757600080fd5b506104f06114b5565b6040516104fd919061441c565b60405180910390f35b34801561051257600080fd5b5061051b6114c8565b60405161052891906140e7565b60405180910390f35b34801561053d57600080fd5b506105466114ce565b005b34801561055457600080fd5b5061056f600480360381019061056a91906143ad565b611567565b005b34801561057d57600080fd5b50610586611587565b60405161059391906140e7565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be919061457f565b6115ab565b005b3480156105d157600080fd5b506105ec60048036038101906105e79190614356565b61166d565b6040516105f991906140e7565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190614356565b6116c0565b005b34801561063757600080fd5b50610652600480360381019061064d9190614636565b61178a565b005b34801561066057600080fd5b5061067b60048036038101906106769190614356565b61181c565b6040516106889190614392565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b3919061425b565b611832565b005b3480156106c657600080fd5b506106cf611928565b005b3480156106dd57600080fd5b506106f860048036038101906106f39190614683565b6119c1565b60405161070591906140e7565b60405180910390f35b34801561071a57600080fd5b50610723611aaa565b005b34801561073157600080fd5b5061073a611b45565b005b34801561074857600080fd5b50610763600480360381019061075e9190614356565b611bd8565b6040516107709190614392565b60405180910390f35b34801561078557600080fd5b5061078e611c17565b60405161079b91906140e7565b60405180910390f35b3480156107b057600080fd5b506107b9611c1d565b6040516107c69190614392565b60405180910390f35b3480156107db57600080fd5b506107e4611c46565b6040516107f191906141b6565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190614356565b611c59565b005b34801561082f57600080fd5b5061084a60048036038101906108459190614356565b611cdf565b6040516108579190614711565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190614636565b611cf7565b005b34801561089557600080fd5b5061089e611d89565b6040516108ab9190614334565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190614758565b611e1b565b005b3480156108e957600080fd5b5061090460048036038101906108ff9190614683565b611f9c565b005b34801561091257600080fd5b5061092d6004803603810190610928919061425b565b612091565b005b34801561093b57600080fd5b506109566004803603810190610951919061484d565b6122f3565b005b34801561096457600080fd5b5061097f600480360381019061097a9190614683565b61234f565b005b34801561098d57600080fd5b50610996612512565b6040516109a39190614334565b60405180910390f35b3480156109b857600080fd5b506109c16125a0565b6040516109ce9190614392565b60405180910390f35b3480156109e357600080fd5b506109fe60048036038101906109f99190614356565b6125c6565b604051610a0b9190614334565b60405180910390f35b348015610a2057600080fd5b50610a29612625565b604051610a3691906140e7565b60405180910390f35b348015610a4b57600080fd5b50610a5461263e565b604051610a619190614334565b60405180910390f35b348015610a7657600080fd5b50610a7f6126cc565b604051610a8c9190614334565b60405180910390f35b348015610aa157600080fd5b50610aaa61275e565b604051610ab791906140e7565b60405180910390f35b348015610acc57600080fd5b50610ad5612764565b005b348015610ae357600080fd5b50610aec61280b565b604051610af99190614334565b60405180910390f35b348015610b0e57600080fd5b50610b296004803603810190610b2491906148d0565b61289d565b604051610b3691906141b6565b60405180910390f35b348015610b4b57600080fd5b50610b666004803603810190610b619190614683565b612931565b005b6000610b72612a29565b905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c4257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610caa57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cba5750610cb982612a3c565b5b9050919050565b6001811015610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc9061495c565b60405180910390fd5b60011515601260009054906101000a900460ff16151514610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d52906149c8565b60405180910390fd5b60c8610d65610b68565b11610ebb5760018114610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490614a34565b60405180910390fd5b60003414610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790614aa0565b60405180910390fd5b6000610dfb33612aa6565b14610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290614a34565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090614b0c565b60405180910390fd5b610eb68260016000612b8f565b61103a565b600254811115610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef790614b9e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081610f2a610b68565b610f349190614bed565b1115610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90614cb5565b60405180910390fd5b610f7e81612baf565b3414610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690614d47565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490614b0c565b60405180910390fd5b61103982826000612b8f565b5b5050565b60606003805461104d90614d96565b80601f016020809104026020016040519081016040528092919081815260200182805461107990614d96565b80156110c65780601f1061109b576101008083540402835291602001916110c6565b820191906000526020600020905b8154815290600101906020018083116110a957829003601f168201915b5050505050905090565b60006110db82612bcd565b61111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190614e3a565b60405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006111608261181c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890614ecc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166111f0612bee565b73ffffffffffffffffffffffffffffffffffffffff16148061121f575061121e81611219612bee565b61289d565b5b61125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590614f5e565b60405180910390fd5b611269838383612bf6565b505050565b6000611278612a29565b905090565b611288838383612ca8565b505050565b600c818154811061129d57600080fd5b906000526020600020016000915090505481565b60025481565b60006112c2836119c1565b8210611303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fa90614ff0565b60405180910390fd5b600061130d61126e565b905060008060005b83811015611473576000600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461140757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561145f57868414156114505781955050505050506114af565b838061145b90615010565b9450505b50808061146b90615010565b915050611315565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a6906150cb565b60405180910390fd5b92915050565b600f60009054906101000a900460ff1681565b600d5481565b6114d6612bee565b73ffffffffffffffffffffffffffffffffffffffff166114f4611c1d565b73ffffffffffffffffffffffffffffffffffffffff161461154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190615137565b60405180910390fd5b6000601260006101000a81548160ff021916908315150217905550565b611582838383604051806020016040528060008152506122f3565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6115b3612bee565b73ffffffffffffffffffffffffffffffffffffffff166115d1611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90615137565b60405180910390fd5b60005b818110156116685761165583828151811061164857611647615157565b5b6020026020010151611f9c565b808061166090615010565b91505061162a565b505050565b600061167761126e565b82106116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af906151f8565b60405180910390fd5b819050919050565b6116c8612bee565b73ffffffffffffffffffffffffffffffffffffffff166116e6611c1d565b73ffffffffffffffffffffffffffffffffffffffff161461173c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173390615137565b60405180910390fd5b6001811015611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790615264565b60405180910390fd5b8060028190555050565b611792612bee565b73ffffffffffffffffffffffffffffffffffffffff166117b0611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90615137565b60405180910390fd5b818160109190611817929190613ff1565b505050565b600061182782613261565b600001519050919050565b61183a612bee565b73ffffffffffffffffffffffffffffffffffffffff16611858611c1d565b73ffffffffffffffffffffffffffffffffffffffff16146118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a590615137565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006118d7612625565b1115611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f90614cb5565b60405180910390fd5b61192482826000612b8f565b5050565b611930612bee565b73ffffffffffffffffffffffffffffffffffffffff1661194e611c1d565b73ffffffffffffffffffffffffffffffffffffffff16146119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199b90615137565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a29906152f6565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611ab2612bee565b73ffffffffffffffffffffffffffffffffffffffff16611ad0611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90615137565b60405180910390fd5b611b43738d6b69130e85e6e3b71f3987851455dd7cbf11ca6134b9565b565b611b4d612bee565b73ffffffffffffffffffffffffffffffffffffffff16611b6b611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890615137565b60405180910390fd5b60004711611bce57600080fd5b611bd661357d565b565b600b8181548110611be857600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601260009054906101000a900460ff1681565b611c61612bee565b73ffffffffffffffffffffffffffffffffffffffff16611c7f611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90615137565b60405180910390fd5b8060138190555050565b611ce7614077565b611cf082613261565b9050919050565b611cff612bee565b73ffffffffffffffffffffffffffffffffffffffff16611d1d611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6a90615137565b60405180910390fd5b818160119190611d84929190613ff1565b505050565b606060048054611d9890614d96565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc490614d96565b8015611e115780601f10611de657610100808354040283529160200191611e11565b820191906000526020600020905b815481529060010190602001808311611df457829003601f168201915b5050505050905090565b611e23612bee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8890615362565b60405180910390fd5b8060086000611e9e612bee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f4b612bee565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f9091906141b6565b60405180910390a35050565b611fa4612bee565b73ffffffffffffffffffffffffffffffffffffffff16611fc2611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f90615137565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000612041612625565b1115612082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207990614cb5565b60405180910390fd5b61208e81600180612b8f565b50565b612099612bee565b73ffffffffffffffffffffffffffffffffffffffff166120b7611c1d565b73ffffffffffffffffffffffffffffffffffffffff161461210d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210490615137565b60405180910390fd5b6000811161211a57600080fd5b6000829050818173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016121599190614392565b602060405180830381865afa158015612176573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061219a9190615397565b10156121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d290615436565b60405180910390fd5b60005b600d548110156122ed578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600b838154811061221857612217615157565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600c858154811061225957612258615157565b5b90600052602060002001548761226f9190615456565b61227991906154df565b6040518363ffffffff1660e01b8152600401612296929190615510565b6020604051808303816000875af11580156122b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122d9919061554e565b5080806122e590615010565b9150506121de565b50505050565b6122fe848484612ca8565b61230a84848484613623565b612349576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612340906155ed565b60405180910390fd5b50505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146123df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d690615659565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612467906156eb565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b6000815481106124c7576124c6615157565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6011805461251f90614d96565b80601f016020809104026020016040519081016040528092919081815260200182805461254b90614d96565b80156125985780601f1061256d57610100808354040283529160200191612598565b820191906000526020600020905b81548152906001019060200180831161257b57829003601f168201915b505050505081565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060006125d26137ab565b905060008151116125f2576040518060200160405280600081525061261d565b806125fc8461383d565b60405160200161260d929190615747565b6040516020818303038152906040525b915050919050565b6000612639612632612a29565b600161399e565b905090565b6010805461264b90614d96565b80601f016020809104026020016040519081016040528092919081815260200182805461267790614d96565b80156126c45780601f10612699576101008083540402835291602001916126c4565b820191906000526020600020905b8154815290600101906020018083116126a757829003601f168201915b505050505081565b6060601080546126db90614d96565b80601f016020809104026020016040519081016040528092919081815260200182805461270790614d96565b80156127545780601f1061272957610100808354040283529160200191612754565b820191906000526020600020905b81548152906001019060200180831161273757829003601f168201915b5050505050905090565b60095481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146127f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127eb90615659565b60405180910390fd5b6000471161280157600080fd5b61280961357d565b565b60606011805461281a90614d96565b80601f016020809104026020016040519081016040528092919081815260200182805461284690614d96565b80156128935780601f1061286857610100808354040283529160200191612893565b820191906000526020600020905b81548152906001019060200180831161287657829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612939612bee565b73ffffffffffffffffffffffffffffffffffffffff16612957611c1d565b73ffffffffffffffffffffffffffffffffffffffff16146129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a490615137565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a14906157dd565b60405180910390fd5b612a26816134b9565b50565b6000612a336139b4565b60015403905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0e9061586f565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b612baa838383604051806020016040528060008152506139bd565b505050565b6000612bc682601354613efb90919063ffffffff16565b9050919050565b600081612bd86139b4565b11158015612be7575060015482105b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612cb382613261565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612cda612bee565b73ffffffffffffffffffffffffffffffffffffffff161480612d365750612cff612bee565b73ffffffffffffffffffffffffffffffffffffffff16612d1e846110d0565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d525750612d518260000151612d4c612bee565b61289d565b5b905080612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b90615901565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfd90615993565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6d90615a25565b60405180910390fd5b612e838585856001613f11565b612e936000848460000151612bf6565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612f019190615a61565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612fa59190615a95565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506005600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846130ab9190614bed565b9050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156131f15761312181612bcd565b156131f0576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506005600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132598686866001613f17565b505050505050565b613269614077565b6000829050806132776139b4565b11158015613286575060015481105b15613479576000600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146133775780925050506134b4565b5b60011561347757818060019003925050600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146134725780925050506134b4565b613378565b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ab90615b4d565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600047905060005b600d5481101561361f5761360c600b82815481106135a6576135a5615157565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600c84815481106135e7576135e6615157565b5b9060005260206000200154856135fd9190615456565b61360791906154df565b613f1d565b808061361790615010565b915050613585565b5050565b60006136448473ffffffffffffffffffffffffffffffffffffffff16613fce565b1561379e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261366d612bee565b8786866040518563ffffffff1660e01b815260040161368f9493929190615bc2565b6020604051808303816000875af19250505080156136cb57506040513d601f19601f820116820180604052508101906136c89190615c23565b60015b61374e573d80600081146136fb576040519150601f19603f3d011682016040523d82523d6000602084013e613700565b606091505b50600081511415613746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373d906155ed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137a3565b600190505b949350505050565b6060601080546137ba90614d96565b80601f01602080910402602001604051908101604052809291908181526020018280546137e690614d96565b80156138335780601f1061380857610100808354040283529160200191613833565b820191906000526020600020905b81548152906001019060200180831161381657829003601f168201915b5050505050905090565b60606000821415613885576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613999565b600082905060005b600082146138b75780806138a090615010565b915050600a826138b091906154df565b915061388d565b60008167ffffffffffffffff8111156138d3576138d261443c565b5b6040519080825280601f01601f1916602001820160405280156139055781602001600182028036833780820191505090505b5090505b600085146139925760018261391e9190615c50565b9150600a8561392d9190615c84565b60306139399190614bed565b60f81b81838151811061394f5761394e615157565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561398b91906154df565b9450613909565b8093505050505b919050565b600081836139ac9190614bed565b905092915050565b60006001905090565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2b90615d27565b60405180910390fd5b613a3d81612bcd565b15613a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7490615d93565b60405180910390fd5b600254841115613ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab990615e25565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614613b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b2790615e91565b60405180910390fd5b613b3d6000868387613f11565b6000600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280868360000151613c3a9190615a95565b6fffffffffffffffffffffffffffffffff16815260200185613c5c5786613c5f565b60005b8360200151613c6e9190615a95565b6fffffffffffffffffffffffffffffffff16815250600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808773ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506005600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b86811015613edd57818873ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613e7d6000898488613623565b613ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613eb3906155ed565b60405180910390fd5b8180613ec790615010565b9250508080613ed590615010565b915050613e0c565b5080600181905550613ef26000888589613f17565b50505050505050565b60008183613f099190615456565b905092915050565b50505050565b50505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051613f4390615ee2565b60006040518083038185875af1925050503d8060008114613f80576040519150601f19603f3d011682016040523d82523d6000602084013e613f85565b606091505b5050905080613fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fc090615f43565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613ffd90614d96565b90600052602060002090601f01602090048101928261401f5760008555614066565b82601f1061403857803560ff1916838001178555614066565b82800160010185558215614066579182015b8281111561406557823582559160200191906001019061404a565b5b50905061407391906140b1565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156140ca5760008160009055506001016140b2565b5090565b6000819050919050565b6140e1816140ce565b82525050565b60006020820190506140fc60008301846140d8565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61414b81614116565b811461415657600080fd5b50565b60008135905061416881614142565b92915050565b6000602082840312156141845761418361410c565b5b600061419284828501614159565b91505092915050565b60008115159050919050565b6141b08161419b565b82525050565b60006020820190506141cb60008301846141a7565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141fc826141d1565b9050919050565b61420c816141f1565b811461421757600080fd5b50565b60008135905061422981614203565b92915050565b614238816140ce565b811461424357600080fd5b50565b6000813590506142558161422f565b92915050565b600080604083850312156142725761427161410c565b5b60006142808582860161421a565b925050602061429185828601614246565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142d55780820151818401526020810190506142ba565b838111156142e4576000848401525b50505050565b6000601f19601f8301169050919050565b60006143068261429b565b61431081856142a6565b93506143208185602086016142b7565b614329816142ea565b840191505092915050565b6000602082019050818103600083015261434e81846142fb565b905092915050565b60006020828403121561436c5761436b61410c565b5b600061437a84828501614246565b91505092915050565b61438c816141f1565b82525050565b60006020820190506143a76000830184614383565b92915050565b6000806000606084860312156143c6576143c561410c565b5b60006143d48682870161421a565b93505060206143e58682870161421a565b92505060406143f686828701614246565b9150509250925092565b600060ff82169050919050565b61441681614400565b82525050565b6000602082019050614431600083018461440d565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614474826142ea565b810181811067ffffffffffffffff821117156144935761449261443c565b5b80604052505050565b60006144a6614102565b90506144b2828261446b565b919050565b600067ffffffffffffffff8211156144d2576144d161443c565b5b602082029050602081019050919050565b600080fd5b60006144fb6144f6846144b7565b61449c565b9050808382526020820190506020840283018581111561451e5761451d6144e3565b5b835b818110156145475780614533888261421a565b845260208401935050602081019050614520565b5050509392505050565b600082601f83011261456657614565614437565b5b81356145768482602086016144e8565b91505092915050565b600080604083850312156145965761459561410c565b5b600083013567ffffffffffffffff8111156145b4576145b3614111565b5b6145c085828601614551565b92505060206145d185828601614246565b9150509250929050565b600080fd5b60008083601f8401126145f6576145f5614437565b5b8235905067ffffffffffffffff811115614613576146126145db565b5b60208301915083600182028301111561462f5761462e6144e3565b5b9250929050565b6000806020838503121561464d5761464c61410c565b5b600083013567ffffffffffffffff81111561466b5761466a614111565b5b614677858286016145e0565b92509250509250929050565b6000602082840312156146995761469861410c565b5b60006146a78482850161421a565b91505092915050565b6146b9816141f1565b82525050565b600067ffffffffffffffff82169050919050565b6146dc816146bf565b82525050565b6040820160008201516146f860008501826146b0565b50602082015161470b60208501826146d3565b50505050565b600060408201905061472660008301846146e2565b92915050565b6147358161419b565b811461474057600080fd5b50565b6000813590506147528161472c565b92915050565b6000806040838503121561476f5761476e61410c565b5b600061477d8582860161421a565b925050602061478e85828601614743565b9150509250929050565b600080fd5b600067ffffffffffffffff8211156147b8576147b761443c565b5b6147c1826142ea565b9050602081019050919050565b82818337600083830152505050565b60006147f06147eb8461479d565b61449c565b90508281526020810184848401111561480c5761480b614798565b5b6148178482856147ce565b509392505050565b600082601f83011261483457614833614437565b5b81356148448482602086016147dd565b91505092915050565b600080600080608085870312156148675761486661410c565b5b60006148758782880161421a565b94505060206148868782880161421a565b935050604061489787828801614246565b925050606085013567ffffffffffffffff8111156148b8576148b7614111565b5b6148c48782880161481f565b91505092959194509250565b600080604083850312156148e7576148e661410c565b5b60006148f58582860161421a565b92505060206149068582860161421a565b9150509250929050565b7f4d757374206d696e74206174206c65617374203120746f6b656e000000000000600082015250565b6000614946601a836142a6565b915061495182614910565b602082019050919050565b6000602082019050818103600083015261497581614939565b9050919050565b7f4d696e74696e67206973206e6f74206f70656e207269676874206e6f77210000600082015250565b60006149b2601e836142a6565b91506149bd8261497c565b602082019050919050565b600060208201905081810360008301526149e1816149a5565b9050919050565b7f4f6e6c79206f6e652066726565206d696e742e00000000000000000000000000600082015250565b6000614a1e6013836142a6565b9150614a29826149e8565b602082019050919050565b60006020820190508181036000830152614a4d81614a11565b9050919050565b7f596f75206d61646520697420746f207468652066726565206d696e7421000000600082015250565b6000614a8a601d836142a6565b9150614a9582614a54565b602082019050919050565b60006020820190508181036000830152614ab981614a7d565b9050919050565b7f43616e206f6e6c79206d696e7420666f7220796f757273656c66000000000000600082015250565b6000614af6601a836142a6565b9150614b0182614ac0565b602082019050919050565b60006020820190508181036000830152614b2581614ae9565b9050919050565b7f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b6000614b88602e836142a6565b9150614b9382614b2c565b604082019050919050565b60006020820190508181036000830152614bb781614b7b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614bf8826140ce565b9150614c03836140ce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c3857614c37614bbe565b5b828201905092915050565b7f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203460008201527f3030300000000000000000000000000000000000000000000000000000000000602082015250565b6000614c9f6023836142a6565b9150614caa82614c43565b604082019050919050565b60006020820190508181036000830152614cce81614c92565b9050919050565b7f56616c75652062656c6f77207265717569726564206d696e742066656520666f60008201527f7220616d6f756e74000000000000000000000000000000000000000000000000602082015250565b6000614d316028836142a6565b9150614d3c82614cd5565b604082019050919050565b60006020820190508181036000830152614d6081614d24565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614dae57607f821691505b60208210811415614dc257614dc1614d67565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614e24602d836142a6565b9150614e2f82614dc8565b604082019050919050565b60006020820190508181036000830152614e5381614e17565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614eb66022836142a6565b9150614ec182614e5a565b604082019050919050565b60006020820190508181036000830152614ee581614ea9565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614f486039836142a6565b9150614f5382614eec565b604082019050919050565b60006020820190508181036000830152614f7781614f3b565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614fda6022836142a6565b9150614fe582614f7e565b604082019050919050565b6000602082019050818103600083015261500981614fcd565b9050919050565b600061501b826140ce565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561504e5761504d614bbe565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006150b5602e836142a6565b91506150c082615059565b604082019050919050565b600060208201905081810360008301526150e4816150a8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006151216020836142a6565b915061512c826150eb565b602082019050919050565b6000602082019050818103600083015261515081615114565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006151e26023836142a6565b91506151ed82615186565b604082019050919050565b60006020820190508181036000830152615211816151d5565b9050919050565b7f4d6178206d696e74206d757374206265206174206c6561737420310000000000600082015250565b600061524e601b836142a6565b915061525982615218565b602082019050919050565b6000602082019050818103600083015261527d81615241565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006152e0602b836142a6565b91506152eb82615284565b604082019050919050565b6000602082019050818103600083015261530f816152d3565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061534c601a836142a6565b915061535782615316565b602082019050919050565b6000602082019050818103600083015261537b8161533f565b9050919050565b6000815190506153918161422f565b92915050565b6000602082840312156153ad576153ac61410c565b5b60006153bb84828501615382565b91505092915050565b7f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b60008201527f656e730000000000000000000000000000000000000000000000000000000000602082015250565b60006154206023836142a6565b915061542b826153c4565b604082019050919050565b6000602082019050818103600083015261544f81615413565b9050919050565b6000615461826140ce565b915061546c836140ce565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154a5576154a4614bbe565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006154ea826140ce565b91506154f5836140ce565b925082615505576155046154b0565b5b828204905092915050565b60006040820190506155256000830185614383565b61553260208301846140d8565b9392505050565b6000815190506155488161472c565b92915050565b6000602082840312156155645761556361410c565b5b600061557284828501615539565b91505092915050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006155d76033836142a6565b91506155e28261557b565b604082019050919050565b60006020820190508181036000830152615606816155ca565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f742052414d505000000000600082015250565b6000615643601c836142a6565b915061564e8261560d565b602082019050919050565b6000602082019050818103600083015261567281615636565b9050919050565b7f52414d50503a204e65772052616d70702061646472657373206d75737420626560008201527f20646966666572656e7400000000000000000000000000000000000000000000602082015250565b60006156d5602a836142a6565b91506156e082615679565b604082019050919050565b60006020820190508181036000830152615704816156c8565b9050919050565b600081905092915050565b60006157218261429b565b61572b818561570b565b935061573b8185602086016142b7565b80840191505092915050565b60006157538285615716565b915061575f8284615716565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006157c76026836142a6565b91506157d28261576b565b604082019050919050565b600060208201905081810360008301526157f6816157ba565b9050919050565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b60006158596031836142a6565b9150615864826157fd565b604082019050919050565b600060208201905081810360008301526158888161584c565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006158eb6032836142a6565b91506158f68261588f565b604082019050919050565b6000602082019050818103600083015261591a816158de565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061597d6026836142a6565b915061598882615921565b604082019050919050565b600060208201905081810360008301526159ac81615970565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615a0f6025836142a6565b9150615a1a826159b3565b604082019050919050565b60006020820190508181036000830152615a3e81615a02565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000615a6c82615a45565b9150615a7783615a45565b925082821015615a8a57615a89614bbe565b5b828203905092915050565b6000615aa082615a45565b9150615aab83615a45565b9250826fffffffffffffffffffffffffffffffff03821115615ad057615acf614bbe565b5b828201905092915050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000615b37602f836142a6565b9150615b4282615adb565b604082019050919050565b60006020820190508181036000830152615b6681615b2a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615b9482615b6d565b615b9e8185615b78565b9350615bae8185602086016142b7565b615bb7816142ea565b840191505092915050565b6000608082019050615bd76000830187614383565b615be46020830186614383565b615bf160408301856140d8565b8181036060830152615c038184615b89565b905095945050505050565b600081519050615c1d81614142565b92915050565b600060208284031215615c3957615c3861410c565b5b6000615c4784828501615c0e565b91505092915050565b6000615c5b826140ce565b9150615c66836140ce565b925082821015615c7957615c78614bbe565b5b828203905092915050565b6000615c8f826140ce565b9150615c9a836140ce565b925082615caa57615ca96154b0565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615d116021836142a6565b9150615d1c82615cb5565b604082019050919050565b60006020820190508181036000830152615d4081615d04565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000615d7d601d836142a6565b9150615d8882615d47565b602082019050919050565b60006020820190508181036000830152615dac81615d70565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000615e0f6022836142a6565b9150615e1a82615db3565b604082019050919050565b60006020820190508181036000830152615e3e81615e02565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000615e7b601e836142a6565b9150615e8682615e45565b602082019050919050565b60006020820190508181036000830152615eaa81615e6e565b9050919050565b600081905092915050565b50565b6000615ecc600083615eb1565b9150615ed782615ebc565b600082019050919050565b6000615eed82615ebf565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000615f2d6010836142a6565b9150615f3882615ef7565b602082019050919050565b60006020820190508181036000830152615f5c81615f20565b905091905056fea2646970667358221220f088a79fff2aa8cb1910065ad9989db66909b4dfe63daca38fde5f4b2d1b52ea64736f6c634300080a0033697066733a2f2f516d656175557374676842537579346b38766b31515555736263593453674a33397a5353523567574d75336f67772f697066733a2f2f516d5364597635596b535644736156697864786555565574764144744651666a646635546e5a7376436e4c734e48
Deployed Bytecode
0x6080604052600436106102c85760003560e01c8063853828b611610175578063b88d4fde116100dc578063cfc86f7b11610095578063dcd4aa8b1161006f578063dcd4aa8b14610ac0578063e8a3d48514610ad7578063e985e9c514610b02578063f2fde38b14610b3f576102c8565b8063cfc86f7b14610a3f578063d547cfb714610a6a578063d7224ba014610a95576102c8565b8063b88d4fde1461092f578063bbd8556b14610958578063c0e7274014610981578063c5815c41146109ac578063c87b56dd146109d7578063caa0f92a14610a14576102c8565b80639231ab2a1161012e5780639231ab2a14610823578063938e3d7b1461086057806395d89b4114610889578063a22cb465146108b4578063a54dd93c146108dd578063b40ebceb14610906576102c8565b8063853828b614610725578063891bbe731461073c5780638d859f3e146107795780638da5cb5b146107a45780638f4bb497146107cf57806391b7f5ed146107fa576102c8565b80633e07311c11610234578063547520fe116101ed57806368be561b116101c757806368be561b146106915780636ba9fd38146106ba57806370a08231146106d1578063715018a61461070e576102c8565b8063547520fe1461060257806355f804b31461062b5780636352211e14610654576102c8565b80633e07311c146105065780633e3e0b121461053157806342842e0e1461054857806345c0f533146105715780634d5f4e761461059c5780634f6ccce7146105c5576102c8565b806318160ddd1161028657806318160ddd146103e257806323b872dd1461040d578063286c8137146104365780632913daa0146104735780632f745c591461049e57806338b90333146104db576102c8565b80629a9b7b146102cd57806301ffc9a7146102f85780630644cefa1461033557806306fdde0314610351578063081812fc1461037c578063095ea7b3146103b9575b600080fd5b3480156102d957600080fd5b506102e2610b68565b6040516102ef91906140e7565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a919061416e565b610b77565b60405161032c91906141b6565b60405180910390f35b61034f600480360381019061034a919061425b565b610cc1565b005b34801561035d57600080fd5b5061036661103e565b6040516103739190614334565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190614356565b6110d0565b6040516103b09190614392565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db919061425b565b611155565b005b3480156103ee57600080fd5b506103f761126e565b60405161040491906140e7565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f91906143ad565b61127d565b005b34801561044257600080fd5b5061045d60048036038101906104589190614356565b61128d565b60405161046a91906140e7565b60405180910390f35b34801561047f57600080fd5b506104886112b1565b60405161049591906140e7565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c0919061425b565b6112b7565b6040516104d291906140e7565b60405180910390f35b3480156104e757600080fd5b506104f06114b5565b6040516104fd919061441c565b60405180910390f35b34801561051257600080fd5b5061051b6114c8565b60405161052891906140e7565b60405180910390f35b34801561053d57600080fd5b506105466114ce565b005b34801561055457600080fd5b5061056f600480360381019061056a91906143ad565b611567565b005b34801561057d57600080fd5b50610586611587565b60405161059391906140e7565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be919061457f565b6115ab565b005b3480156105d157600080fd5b506105ec60048036038101906105e79190614356565b61166d565b6040516105f991906140e7565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190614356565b6116c0565b005b34801561063757600080fd5b50610652600480360381019061064d9190614636565b61178a565b005b34801561066057600080fd5b5061067b60048036038101906106769190614356565b61181c565b6040516106889190614392565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b3919061425b565b611832565b005b3480156106c657600080fd5b506106cf611928565b005b3480156106dd57600080fd5b506106f860048036038101906106f39190614683565b6119c1565b60405161070591906140e7565b60405180910390f35b34801561071a57600080fd5b50610723611aaa565b005b34801561073157600080fd5b5061073a611b45565b005b34801561074857600080fd5b50610763600480360381019061075e9190614356565b611bd8565b6040516107709190614392565b60405180910390f35b34801561078557600080fd5b5061078e611c17565b60405161079b91906140e7565b60405180910390f35b3480156107b057600080fd5b506107b9611c1d565b6040516107c69190614392565b60405180910390f35b3480156107db57600080fd5b506107e4611c46565b6040516107f191906141b6565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190614356565b611c59565b005b34801561082f57600080fd5b5061084a60048036038101906108459190614356565b611cdf565b6040516108579190614711565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190614636565b611cf7565b005b34801561089557600080fd5b5061089e611d89565b6040516108ab9190614334565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190614758565b611e1b565b005b3480156108e957600080fd5b5061090460048036038101906108ff9190614683565b611f9c565b005b34801561091257600080fd5b5061092d6004803603810190610928919061425b565b612091565b005b34801561093b57600080fd5b506109566004803603810190610951919061484d565b6122f3565b005b34801561096457600080fd5b5061097f600480360381019061097a9190614683565b61234f565b005b34801561098d57600080fd5b50610996612512565b6040516109a39190614334565b60405180910390f35b3480156109b857600080fd5b506109c16125a0565b6040516109ce9190614392565b60405180910390f35b3480156109e357600080fd5b506109fe60048036038101906109f99190614356565b6125c6565b604051610a0b9190614334565b60405180910390f35b348015610a2057600080fd5b50610a29612625565b604051610a3691906140e7565b60405180910390f35b348015610a4b57600080fd5b50610a5461263e565b604051610a619190614334565b60405180910390f35b348015610a7657600080fd5b50610a7f6126cc565b604051610a8c9190614334565b60405180910390f35b348015610aa157600080fd5b50610aaa61275e565b604051610ab791906140e7565b60405180910390f35b348015610acc57600080fd5b50610ad5612764565b005b348015610ae357600080fd5b50610aec61280b565b604051610af99190614334565b60405180910390f35b348015610b0e57600080fd5b50610b296004803603810190610b2491906148d0565b61289d565b604051610b3691906141b6565b60405180910390f35b348015610b4b57600080fd5b50610b666004803603810190610b619190614683565b612931565b005b6000610b72612a29565b905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c4257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610caa57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cba5750610cb982612a3c565b5b9050919050565b6001811015610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc9061495c565b60405180910390fd5b60011515601260009054906101000a900460ff16151514610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d52906149c8565b60405180910390fd5b60c8610d65610b68565b11610ebb5760018114610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490614a34565b60405180910390fd5b60003414610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790614aa0565b60405180910390fd5b6000610dfb33612aa6565b14610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290614a34565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090614b0c565b60405180910390fd5b610eb68260016000612b8f565b61103a565b600254811115610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef790614b9e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000032081610f2a610b68565b610f349190614bed565b1115610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90614cb5565b60405180910390fd5b610f7e81612baf565b3414610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690614d47565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490614b0c565b60405180910390fd5b61103982826000612b8f565b5b5050565b60606003805461104d90614d96565b80601f016020809104026020016040519081016040528092919081815260200182805461107990614d96565b80156110c65780601f1061109b576101008083540402835291602001916110c6565b820191906000526020600020905b8154815290600101906020018083116110a957829003601f168201915b5050505050905090565b60006110db82612bcd565b61111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190614e3a565b60405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006111608261181c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890614ecc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166111f0612bee565b73ffffffffffffffffffffffffffffffffffffffff16148061121f575061121e81611219612bee565b61289d565b5b61125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590614f5e565b60405180910390fd5b611269838383612bf6565b505050565b6000611278612a29565b905090565b611288838383612ca8565b505050565b600c818154811061129d57600080fd5b906000526020600020016000915090505481565b60025481565b60006112c2836119c1565b8210611303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fa90614ff0565b60405180910390fd5b600061130d61126e565b905060008060005b83811015611473576000600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461140757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561145f57868414156114505781955050505050506114af565b838061145b90615010565b9450505b50808061146b90615010565b915050611315565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a6906150cb565b60405180910390fd5b92915050565b600f60009054906101000a900460ff1681565b600d5481565b6114d6612bee565b73ffffffffffffffffffffffffffffffffffffffff166114f4611c1d565b73ffffffffffffffffffffffffffffffffffffffff161461154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190615137565b60405180910390fd5b6000601260006101000a81548160ff021916908315150217905550565b611582838383604051806020016040528060008152506122f3565b505050565b7f000000000000000000000000000000000000000000000000000000000000032081565b6115b3612bee565b73ffffffffffffffffffffffffffffffffffffffff166115d1611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90615137565b60405180910390fd5b60005b818110156116685761165583828151811061164857611647615157565b5b6020026020010151611f9c565b808061166090615010565b91505061162a565b505050565b600061167761126e565b82106116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af906151f8565b60405180910390fd5b819050919050565b6116c8612bee565b73ffffffffffffffffffffffffffffffffffffffff166116e6611c1d565b73ffffffffffffffffffffffffffffffffffffffff161461173c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173390615137565b60405180910390fd5b6001811015611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790615264565b60405180910390fd5b8060028190555050565b611792612bee565b73ffffffffffffffffffffffffffffffffffffffff166117b0611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90615137565b60405180910390fd5b818160109190611817929190613ff1565b505050565b600061182782613261565b600001519050919050565b61183a612bee565b73ffffffffffffffffffffffffffffffffffffffff16611858611c1d565b73ffffffffffffffffffffffffffffffffffffffff16146118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a590615137565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000003206118d7612625565b1115611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f90614cb5565b60405180910390fd5b61192482826000612b8f565b5050565b611930612bee565b73ffffffffffffffffffffffffffffffffffffffff1661194e611c1d565b73ffffffffffffffffffffffffffffffffffffffff16146119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199b90615137565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a29906152f6565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611ab2612bee565b73ffffffffffffffffffffffffffffffffffffffff16611ad0611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90615137565b60405180910390fd5b611b43738d6b69130e85e6e3b71f3987851455dd7cbf11ca6134b9565b565b611b4d612bee565b73ffffffffffffffffffffffffffffffffffffffff16611b6b611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890615137565b60405180910390fd5b60004711611bce57600080fd5b611bd661357d565b565b600b8181548110611be857600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601260009054906101000a900460ff1681565b611c61612bee565b73ffffffffffffffffffffffffffffffffffffffff16611c7f611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90615137565b60405180910390fd5b8060138190555050565b611ce7614077565b611cf082613261565b9050919050565b611cff612bee565b73ffffffffffffffffffffffffffffffffffffffff16611d1d611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6a90615137565b60405180910390fd5b818160119190611d84929190613ff1565b505050565b606060048054611d9890614d96565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc490614d96565b8015611e115780601f10611de657610100808354040283529160200191611e11565b820191906000526020600020905b815481529060010190602001808311611df457829003601f168201915b5050505050905090565b611e23612bee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8890615362565b60405180910390fd5b8060086000611e9e612bee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f4b612bee565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f9091906141b6565b60405180910390a35050565b611fa4612bee565b73ffffffffffffffffffffffffffffffffffffffff16611fc2611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f90615137565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000320612041612625565b1115612082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207990614cb5565b60405180910390fd5b61208e81600180612b8f565b50565b612099612bee565b73ffffffffffffffffffffffffffffffffffffffff166120b7611c1d565b73ffffffffffffffffffffffffffffffffffffffff161461210d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210490615137565b60405180910390fd5b6000811161211a57600080fd5b6000829050818173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016121599190614392565b602060405180830381865afa158015612176573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061219a9190615397565b10156121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d290615436565b60405180910390fd5b60005b600d548110156122ed578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600b838154811061221857612217615157565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600c858154811061225957612258615157565b5b90600052602060002001548761226f9190615456565b61227991906154df565b6040518363ffffffff1660e01b8152600401612296929190615510565b6020604051808303816000875af11580156122b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122d9919061554e565b5080806122e590615010565b9150506121de565b50505050565b6122fe848484612ca8565b61230a84848484613623565b612349576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612340906155ed565b60405180910390fd5b50505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146123df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d690615659565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612467906156eb565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b6000815481106124c7576124c6615157565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6011805461251f90614d96565b80601f016020809104026020016040519081016040528092919081815260200182805461254b90614d96565b80156125985780601f1061256d57610100808354040283529160200191612598565b820191906000526020600020905b81548152906001019060200180831161257b57829003601f168201915b505050505081565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060006125d26137ab565b905060008151116125f2576040518060200160405280600081525061261d565b806125fc8461383d565b60405160200161260d929190615747565b6040516020818303038152906040525b915050919050565b6000612639612632612a29565b600161399e565b905090565b6010805461264b90614d96565b80601f016020809104026020016040519081016040528092919081815260200182805461267790614d96565b80156126c45780601f10612699576101008083540402835291602001916126c4565b820191906000526020600020905b8154815290600101906020018083116126a757829003601f168201915b505050505081565b6060601080546126db90614d96565b80601f016020809104026020016040519081016040528092919081815260200182805461270790614d96565b80156127545780601f1061272957610100808354040283529160200191612754565b820191906000526020600020905b81548152906001019060200180831161273757829003601f168201915b5050505050905090565b60095481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146127f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127eb90615659565b60405180910390fd5b6000471161280157600080fd5b61280961357d565b565b60606011805461281a90614d96565b80601f016020809104026020016040519081016040528092919081815260200182805461284690614d96565b80156128935780601f1061286857610100808354040283529160200191612893565b820191906000526020600020905b81548152906001019060200180831161287657829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612939612bee565b73ffffffffffffffffffffffffffffffffffffffff16612957611c1d565b73ffffffffffffffffffffffffffffffffffffffff16146129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a490615137565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a14906157dd565b60405180910390fd5b612a26816134b9565b50565b6000612a336139b4565b60015403905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0e9061586f565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b612baa838383604051806020016040528060008152506139bd565b505050565b6000612bc682601354613efb90919063ffffffff16565b9050919050565b600081612bd86139b4565b11158015612be7575060015482105b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612cb382613261565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612cda612bee565b73ffffffffffffffffffffffffffffffffffffffff161480612d365750612cff612bee565b73ffffffffffffffffffffffffffffffffffffffff16612d1e846110d0565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d525750612d518260000151612d4c612bee565b61289d565b5b905080612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b90615901565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfd90615993565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6d90615a25565b60405180910390fd5b612e838585856001613f11565b612e936000848460000151612bf6565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612f019190615a61565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612fa59190615a95565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506005600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846130ab9190614bed565b9050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156131f15761312181612bcd565b156131f0576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506005600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132598686866001613f17565b505050505050565b613269614077565b6000829050806132776139b4565b11158015613286575060015481105b15613479576000600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146133775780925050506134b4565b5b60011561347757818060019003925050600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146134725780925050506134b4565b613378565b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ab90615b4d565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600047905060005b600d5481101561361f5761360c600b82815481106135a6576135a5615157565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600c84815481106135e7576135e6615157565b5b9060005260206000200154856135fd9190615456565b61360791906154df565b613f1d565b808061361790615010565b915050613585565b5050565b60006136448473ffffffffffffffffffffffffffffffffffffffff16613fce565b1561379e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261366d612bee565b8786866040518563ffffffff1660e01b815260040161368f9493929190615bc2565b6020604051808303816000875af19250505080156136cb57506040513d601f19601f820116820180604052508101906136c89190615c23565b60015b61374e573d80600081146136fb576040519150601f19603f3d011682016040523d82523d6000602084013e613700565b606091505b50600081511415613746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373d906155ed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137a3565b600190505b949350505050565b6060601080546137ba90614d96565b80601f01602080910402602001604051908101604052809291908181526020018280546137e690614d96565b80156138335780601f1061380857610100808354040283529160200191613833565b820191906000526020600020905b81548152906001019060200180831161381657829003601f168201915b5050505050905090565b60606000821415613885576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613999565b600082905060005b600082146138b75780806138a090615010565b915050600a826138b091906154df565b915061388d565b60008167ffffffffffffffff8111156138d3576138d261443c565b5b6040519080825280601f01601f1916602001820160405280156139055781602001600182028036833780820191505090505b5090505b600085146139925760018261391e9190615c50565b9150600a8561392d9190615c84565b60306139399190614bed565b60f81b81838151811061394f5761394e615157565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561398b91906154df565b9450613909565b8093505050505b919050565b600081836139ac9190614bed565b905092915050565b60006001905090565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2b90615d27565b60405180910390fd5b613a3d81612bcd565b15613a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7490615d93565b60405180910390fd5b600254841115613ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab990615e25565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614613b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b2790615e91565b60405180910390fd5b613b3d6000868387613f11565b6000600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280868360000151613c3a9190615a95565b6fffffffffffffffffffffffffffffffff16815260200185613c5c5786613c5f565b60005b8360200151613c6e9190615a95565b6fffffffffffffffffffffffffffffffff16815250600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808773ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506005600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b86811015613edd57818873ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613e7d6000898488613623565b613ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613eb3906155ed565b60405180910390fd5b8180613ec790615010565b9250508080613ed590615010565b915050613e0c565b5080600181905550613ef26000888589613f17565b50505050505050565b60008183613f099190615456565b905092915050565b50505050565b50505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051613f4390615ee2565b60006040518083038185875af1925050503d8060008114613f80576040519150601f19603f3d011682016040523d82523d6000602084013e613f85565b606091505b5050905080613fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fc090615f43565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613ffd90614d96565b90600052602060002090601f01602090048101928261401f5760008555614066565b82601f1061403857803560ff1916838001178555614066565b82800160010185558215614066579182015b8281111561406557823582559160200191906001019061404a565b5b50905061407391906140b1565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156140ca5760008160009055506001016140b2565b5090565b6000819050919050565b6140e1816140ce565b82525050565b60006020820190506140fc60008301846140d8565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61414b81614116565b811461415657600080fd5b50565b60008135905061416881614142565b92915050565b6000602082840312156141845761418361410c565b5b600061419284828501614159565b91505092915050565b60008115159050919050565b6141b08161419b565b82525050565b60006020820190506141cb60008301846141a7565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141fc826141d1565b9050919050565b61420c816141f1565b811461421757600080fd5b50565b60008135905061422981614203565b92915050565b614238816140ce565b811461424357600080fd5b50565b6000813590506142558161422f565b92915050565b600080604083850312156142725761427161410c565b5b60006142808582860161421a565b925050602061429185828601614246565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142d55780820151818401526020810190506142ba565b838111156142e4576000848401525b50505050565b6000601f19601f8301169050919050565b60006143068261429b565b61431081856142a6565b93506143208185602086016142b7565b614329816142ea565b840191505092915050565b6000602082019050818103600083015261434e81846142fb565b905092915050565b60006020828403121561436c5761436b61410c565b5b600061437a84828501614246565b91505092915050565b61438c816141f1565b82525050565b60006020820190506143a76000830184614383565b92915050565b6000806000606084860312156143c6576143c561410c565b5b60006143d48682870161421a565b93505060206143e58682870161421a565b92505060406143f686828701614246565b9150509250925092565b600060ff82169050919050565b61441681614400565b82525050565b6000602082019050614431600083018461440d565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614474826142ea565b810181811067ffffffffffffffff821117156144935761449261443c565b5b80604052505050565b60006144a6614102565b90506144b2828261446b565b919050565b600067ffffffffffffffff8211156144d2576144d161443c565b5b602082029050602081019050919050565b600080fd5b60006144fb6144f6846144b7565b61449c565b9050808382526020820190506020840283018581111561451e5761451d6144e3565b5b835b818110156145475780614533888261421a565b845260208401935050602081019050614520565b5050509392505050565b600082601f83011261456657614565614437565b5b81356145768482602086016144e8565b91505092915050565b600080604083850312156145965761459561410c565b5b600083013567ffffffffffffffff8111156145b4576145b3614111565b5b6145c085828601614551565b92505060206145d185828601614246565b9150509250929050565b600080fd5b60008083601f8401126145f6576145f5614437565b5b8235905067ffffffffffffffff811115614613576146126145db565b5b60208301915083600182028301111561462f5761462e6144e3565b5b9250929050565b6000806020838503121561464d5761464c61410c565b5b600083013567ffffffffffffffff81111561466b5761466a614111565b5b614677858286016145e0565b92509250509250929050565b6000602082840312156146995761469861410c565b5b60006146a78482850161421a565b91505092915050565b6146b9816141f1565b82525050565b600067ffffffffffffffff82169050919050565b6146dc816146bf565b82525050565b6040820160008201516146f860008501826146b0565b50602082015161470b60208501826146d3565b50505050565b600060408201905061472660008301846146e2565b92915050565b6147358161419b565b811461474057600080fd5b50565b6000813590506147528161472c565b92915050565b6000806040838503121561476f5761476e61410c565b5b600061477d8582860161421a565b925050602061478e85828601614743565b9150509250929050565b600080fd5b600067ffffffffffffffff8211156147b8576147b761443c565b5b6147c1826142ea565b9050602081019050919050565b82818337600083830152505050565b60006147f06147eb8461479d565b61449c565b90508281526020810184848401111561480c5761480b614798565b5b6148178482856147ce565b509392505050565b600082601f83011261483457614833614437565b5b81356148448482602086016147dd565b91505092915050565b600080600080608085870312156148675761486661410c565b5b60006148758782880161421a565b94505060206148868782880161421a565b935050604061489787828801614246565b925050606085013567ffffffffffffffff8111156148b8576148b7614111565b5b6148c48782880161481f565b91505092959194509250565b600080604083850312156148e7576148e661410c565b5b60006148f58582860161421a565b92505060206149068582860161421a565b9150509250929050565b7f4d757374206d696e74206174206c65617374203120746f6b656e000000000000600082015250565b6000614946601a836142a6565b915061495182614910565b602082019050919050565b6000602082019050818103600083015261497581614939565b9050919050565b7f4d696e74696e67206973206e6f74206f70656e207269676874206e6f77210000600082015250565b60006149b2601e836142a6565b91506149bd8261497c565b602082019050919050565b600060208201905081810360008301526149e1816149a5565b9050919050565b7f4f6e6c79206f6e652066726565206d696e742e00000000000000000000000000600082015250565b6000614a1e6013836142a6565b9150614a29826149e8565b602082019050919050565b60006020820190508181036000830152614a4d81614a11565b9050919050565b7f596f75206d61646520697420746f207468652066726565206d696e7421000000600082015250565b6000614a8a601d836142a6565b9150614a9582614a54565b602082019050919050565b60006020820190508181036000830152614ab981614a7d565b9050919050565b7f43616e206f6e6c79206d696e7420666f7220796f757273656c66000000000000600082015250565b6000614af6601a836142a6565b9150614b0182614ac0565b602082019050919050565b60006020820190508181036000830152614b2581614ae9565b9050919050565b7f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b6000614b88602e836142a6565b9150614b9382614b2c565b604082019050919050565b60006020820190508181036000830152614bb781614b7b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614bf8826140ce565b9150614c03836140ce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c3857614c37614bbe565b5b828201905092915050565b7f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203460008201527f3030300000000000000000000000000000000000000000000000000000000000602082015250565b6000614c9f6023836142a6565b9150614caa82614c43565b604082019050919050565b60006020820190508181036000830152614cce81614c92565b9050919050565b7f56616c75652062656c6f77207265717569726564206d696e742066656520666f60008201527f7220616d6f756e74000000000000000000000000000000000000000000000000602082015250565b6000614d316028836142a6565b9150614d3c82614cd5565b604082019050919050565b60006020820190508181036000830152614d6081614d24565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614dae57607f821691505b60208210811415614dc257614dc1614d67565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614e24602d836142a6565b9150614e2f82614dc8565b604082019050919050565b60006020820190508181036000830152614e5381614e17565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614eb66022836142a6565b9150614ec182614e5a565b604082019050919050565b60006020820190508181036000830152614ee581614ea9565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614f486039836142a6565b9150614f5382614eec565b604082019050919050565b60006020820190508181036000830152614f7781614f3b565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614fda6022836142a6565b9150614fe582614f7e565b604082019050919050565b6000602082019050818103600083015261500981614fcd565b9050919050565b600061501b826140ce565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561504e5761504d614bbe565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006150b5602e836142a6565b91506150c082615059565b604082019050919050565b600060208201905081810360008301526150e4816150a8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006151216020836142a6565b915061512c826150eb565b602082019050919050565b6000602082019050818103600083015261515081615114565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006151e26023836142a6565b91506151ed82615186565b604082019050919050565b60006020820190508181036000830152615211816151d5565b9050919050565b7f4d6178206d696e74206d757374206265206174206c6561737420310000000000600082015250565b600061524e601b836142a6565b915061525982615218565b602082019050919050565b6000602082019050818103600083015261527d81615241565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006152e0602b836142a6565b91506152eb82615284565b604082019050919050565b6000602082019050818103600083015261530f816152d3565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061534c601a836142a6565b915061535782615316565b602082019050919050565b6000602082019050818103600083015261537b8161533f565b9050919050565b6000815190506153918161422f565b92915050565b6000602082840312156153ad576153ac61410c565b5b60006153bb84828501615382565b91505092915050565b7f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b60008201527f656e730000000000000000000000000000000000000000000000000000000000602082015250565b60006154206023836142a6565b915061542b826153c4565b604082019050919050565b6000602082019050818103600083015261544f81615413565b9050919050565b6000615461826140ce565b915061546c836140ce565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154a5576154a4614bbe565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006154ea826140ce565b91506154f5836140ce565b925082615505576155046154b0565b5b828204905092915050565b60006040820190506155256000830185614383565b61553260208301846140d8565b9392505050565b6000815190506155488161472c565b92915050565b6000602082840312156155645761556361410c565b5b600061557284828501615539565b91505092915050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006155d76033836142a6565b91506155e28261557b565b604082019050919050565b60006020820190508181036000830152615606816155ca565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f742052414d505000000000600082015250565b6000615643601c836142a6565b915061564e8261560d565b602082019050919050565b6000602082019050818103600083015261567281615636565b9050919050565b7f52414d50503a204e65772052616d70702061646472657373206d75737420626560008201527f20646966666572656e7400000000000000000000000000000000000000000000602082015250565b60006156d5602a836142a6565b91506156e082615679565b604082019050919050565b60006020820190508181036000830152615704816156c8565b9050919050565b600081905092915050565b60006157218261429b565b61572b818561570b565b935061573b8185602086016142b7565b80840191505092915050565b60006157538285615716565b915061575f8284615716565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006157c76026836142a6565b91506157d28261576b565b604082019050919050565b600060208201905081810360008301526157f6816157ba565b9050919050565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b60006158596031836142a6565b9150615864826157fd565b604082019050919050565b600060208201905081810360008301526158888161584c565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006158eb6032836142a6565b91506158f68261588f565b604082019050919050565b6000602082019050818103600083015261591a816158de565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061597d6026836142a6565b915061598882615921565b604082019050919050565b600060208201905081810360008301526159ac81615970565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615a0f6025836142a6565b9150615a1a826159b3565b604082019050919050565b60006020820190508181036000830152615a3e81615a02565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000615a6c82615a45565b9150615a7783615a45565b925082821015615a8a57615a89614bbe565b5b828203905092915050565b6000615aa082615a45565b9150615aab83615a45565b9250826fffffffffffffffffffffffffffffffff03821115615ad057615acf614bbe565b5b828201905092915050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000615b37602f836142a6565b9150615b4282615adb565b604082019050919050565b60006020820190508181036000830152615b6681615b2a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615b9482615b6d565b615b9e8185615b78565b9350615bae8185602086016142b7565b615bb7816142ea565b840191505092915050565b6000608082019050615bd76000830187614383565b615be46020830186614383565b615bf160408301856140d8565b8181036060830152615c038184615b89565b905095945050505050565b600081519050615c1d81614142565b92915050565b600060208284031215615c3957615c3861410c565b5b6000615c4784828501615c0e565b91505092915050565b6000615c5b826140ce565b9150615c66836140ce565b925082821015615c7957615c78614bbe565b5b828203905092915050565b6000615c8f826140ce565b9150615c9a836140ce565b925082615caa57615ca96154b0565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615d116021836142a6565b9150615d1c82615cb5565b604082019050919050565b60006020820190508181036000830152615d4081615d04565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000615d7d601d836142a6565b9150615d8882615d47565b602082019050919050565b60006020820190508181036000830152615dac81615d70565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000615e0f6022836142a6565b9150615e1a82615db3565b604082019050919050565b60006020820190508181036000830152615e3e81615e02565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000615e7b601e836142a6565b9150615e8682615e45565b602082019050919050565b60006020820190508181036000830152615eaa81615e6e565b9050919050565b600081905092915050565b50565b6000615ecc600083615eb1565b9150615ed782615ebc565b600082019050919050565b6000615eed82615ebf565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000615f2d6010836142a6565b9150615f3882615ef7565b602082019050919050565b60006020820190508181036000830152615f5c81615f20565b905091905056fea2646970667358221220f088a79fff2aa8cb1910065ad9989db66909b4dfe63daca38fde5f4b2d1b52ea64736f6c634300080a0033
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 ]
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.