Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 527 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer From | 24252785 | 50 days ago | IN | 0 ETH | 0.00013451 | ||||
| Set Approval For... | 24079330 | 74 days ago | IN | 0 ETH | 0.00009338 | ||||
| Set Approval For... | 23817336 | 111 days ago | IN | 0 ETH | 0.0000966 | ||||
| Set Approval For... | 23816363 | 111 days ago | IN | 0 ETH | 0.00009632 | ||||
| Set Approval For... | 23717946 | 125 days ago | IN | 0 ETH | 0.00003033 | ||||
| Set Approval For... | 22723676 | 264 days ago | IN | 0 ETH | 0.00006164 | ||||
| Set Approval For... | 21789069 | 394 days ago | IN | 0 ETH | 0.00006891 | ||||
| Set Approval For... | 21516482 | 432 days ago | IN | 0 ETH | 0.00051114 | ||||
| Set Approval For... | 21445633 | 442 days ago | IN | 0 ETH | 0.00093519 | ||||
| Set Approval For... | 21192901 | 477 days ago | IN | 0 ETH | 0.00069379 | ||||
| Set Approval For... | 19381235 | 731 days ago | IN | 0 ETH | 0.00274203 | ||||
| Set Approval For... | 18966554 | 789 days ago | IN | 0 ETH | 0.00067797 | ||||
| Set Approval For... | 18899274 | 798 days ago | IN | 0 ETH | 0.00098265 | ||||
| Set Approval For... | 17942761 | 932 days ago | IN | 0 ETH | 0.00173595 | ||||
| Set Approval For... | 17618993 | 978 days ago | IN | 0 ETH | 0.00059577 | ||||
| Safe Transfer Fr... | 17576455 | 984 days ago | IN | 0 ETH | 0.00067543 | ||||
| Safe Transfer Fr... | 17576455 | 984 days ago | IN | 0 ETH | 0.00100468 | ||||
| Set Approval For... | 17431376 | 1004 days ago | IN | 0 ETH | 0.00048916 | ||||
| Set Approval For... | 17324560 | 1019 days ago | IN | 0 ETH | 0.00206937 | ||||
| Set Approval For... | 17254608 | 1029 days ago | IN | 0 ETH | 0.00151525 | ||||
| Set Approval For... | 17254582 | 1029 days ago | IN | 0 ETH | 0.00165135 | ||||
| Safe Transfer Fr... | 17097182 | 1051 days ago | IN | 0 ETH | 0.00314607 | ||||
| Set Approval For... | 16949979 | 1072 days ago | IN | 0 ETH | 0.00105283 | ||||
| Set Approval For... | 16934415 | 1074 days ago | IN | 0 ETH | 0.00166911 | ||||
| Set Approval For... | 16932744 | 1074 days ago | IN | 0 ETH | 0.0011026 |
Latest 10 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 15234999 | 1318 days ago | 0.483 ETH | ||||
| - | 14597980 | 1421 days ago | 1.242 ETH | ||||
| - | 14491171 | 1438 days ago | 0.069 ETH | ||||
| - | 14446386 | 1445 days ago | 3.519 ETH | ||||
| - | 14369793 | 1457 days ago | 4.278 ETH | ||||
| - | 14313434 | 1466 days ago | 6.647 ETH | ||||
| - | 14293203 | 1469 days ago | 0.378 ETH | ||||
| - | 14272455 | 1472 days ago | 17.10969 ETH | ||||
| - | 14200689 | 1483 days ago | 1.518 ETH | ||||
| - | 14193311 | 1484 days ago | 16.577 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
truedegens
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-02-07
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
* @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;
}
}
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(paused(), "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)
// 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;
}
}
}
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
/**
* @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);
}
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
/**
* @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);
}
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
/**
* @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);
}
}
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// Creator: Chiru Labs
/**
* @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 0 (e.g. 0, 1, 2, 3..).
*
* Does not support burning tokens to address(0).
*
* Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
*/
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 internal currentIndex;
// 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) internal _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;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return currentIndex;
}
/**
* @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(totalSupply). If calling from a separate contract, be sure to test gas first.
* It may also degrade with extremely large collection sizes (e.g >> 10000), 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;
address currOwnershipAddr;
// Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
unchecked {
for (uint256 i; 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);
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');
unchecked {
for (uint256 curr = tokenId; curr >= 0; curr--) {
TokenOwnership memory 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) {
require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');
string memory baseURI = _baseURI();
return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return '';
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public 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 virtual override {
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public 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 tokenId < currentIndex;
}
function _safeMint(address to, uint256 quantity) internal {
_safeMint(to, quantity, '');
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
_mint(to, quantity, _data, true);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _mint(
address to,
uint256 quantity,
bytes memory _data,
bool safe
) internal {
uint256 startTokenId = currentIndex;
require(to != address(0), 'ERC721A: mint to the zero address');
require(quantity != 0, 'ERC721A: quantity must be greater than 0');
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
// updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
unchecked {
_addressData[to].balance += uint128(quantity);
_addressData[to].numberMinted += uint128(quantity);
_ownerships[startTokenId].addr = to;
_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);
uint256 updatedIndex = startTokenId;
for (uint256 i; i < quantity; i++) {
emit Transfer(address(0), to, updatedIndex);
if (safe) {
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);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
_ownerships[tokenId].addr = to;
_ownerships[tokenId].startTimestamp = 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].addr = prevOwnership.addr;
_ownerships[nextTokenId].startTimestamp = 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);
}
/**
* @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 {}
}
contract truedegens is
ERC721A,
Pausable,
Ownable
{
using SafeMath for uint256;
uint256 public constant MAX_DEGENS = 6969;
uint256 public constant PRICE = 0.069 ether;
string public baseTokenURI="You were told to trust the process";
constructor()
ERC721A(
"true degens",
"TRUST"
) {}
function mint_ONLY_if_you_TRUST_the_process(uint256 count)
public
payable {
uint256 currentTotal = totalSupply();
require(count > 0,
"Count must be greater than 0");
require(currentTotal.add(count) <= MAX_DEGENS,
"Requested amount exceeds what is available!");
require(currentTotal <= MAX_DEGENS,
"Not enough true degens available.");
require(msg.value >= PRICE.mul(count),
"Incorrect price.");
_safeMint(msg.sender, count);
}
function _baseURI()
internal
view
virtual
override
returns (string memory) {
return baseTokenURI;
}
function setBaseURI(string memory baseURI)
public
onlyOwner {
baseTokenURI = baseURI;
}
function pause()
public
onlyOwner {
_pause();
}
function unpause()
public
onlyOwner {
_unpause();
}
function withdrawAll()
public
payable
onlyOwner {
_widthdraw(owner(), address(this).balance);
}
function _widthdraw(address _address, uint256 _amount)
private {
(bool success, ) = _address.call{value: _amount}("");
require(success, "Recovery failed.");
}
}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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_DEGENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint_ONLY_if_you_TRUST_the_process","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
60e060405260226080818152906200248360a0398051620000299160089160209091019062000116565b503480156200003757600080fd5b50604080518082018252600b81526a7472756520646567656e7360a81b60208083019182528351808501909452600584526415149554d560da1b908401528151919291620000889160019162000116565b5080516200009e90600290602084019062000116565b50506007805460ff1916905550620000b633620000bc565b620001f9565b600780546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012490620001bc565b90600052602060002090601f01602090048101928262000148576000855562000193565b82601f106200016357805160ff191683800117855562000193565b8280016001018555821562000193579182015b828111156200019357825182559160200191906001019062000176565b50620001a1929150620001a5565b5090565b5b80821115620001a15760008155600101620001a6565b600181811c90821680620001d157607f821691505b60208210811415620001f357634e487b7160e01b600052602260045260246000fd5b50919050565b61227a80620002096000396000f3fe6080604052600436106101b75760003560e01c80636f5672fa116100ec57806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610487578063d547cfb7146104a7578063e985e9c5146104bc578063f2fde38b1461050557600080fd5b806395d89b4114610432578063a22cb46514610447578063b88d4fde1461046757600080fd5b80638456cb59116100c65780638456cb59146103d7578063853828b6146103ec5780638d859f3e146103f45780638da5cb5b1461040f57600080fd5b80636f5672fa1461038c57806370a08231146103a2578063715018a6146103c257600080fd5b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461031457806355f804b3146103345780635c975abb146103545780636352211e1461036c57600080fd5b80632f745c59146102bf5780633f4ba83a146102df57806342842e0e146102f457600080fd5b8063095ea7b311610195578063095ea7b31461024b57806314cce10a1461026d57806318160ddd1461028057806323b872dd1461029f57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611f98565b610525565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610592565b6040516101e891906120cb565b34801561021f57600080fd5b5061023361022e36600461201b565b610624565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611f6e565b6106b4565b005b61026b61027b36600461201b565b6107cc565b34801561028c57600080fd5b506000545b6040519081526020016101e8565b3480156102ab57600080fd5b5061026b6102ba366004611e7a565b610955565b3480156102cb57600080fd5b506102916102da366004611f6e565b610960565b3480156102eb57600080fd5b5061026b610acc565b34801561030057600080fd5b5061026b61030f366004611e7a565b610b36565b34801561032057600080fd5b5061029161032f36600461201b565b610b51565b34801561034057600080fd5b5061026b61034f366004611fd2565b610bb3565b34801561036057600080fd5b5060075460ff166101dc565b34801561037857600080fd5b5061023361038736600461201b565b610c26565b34801561039857600080fd5b50610291611b3981565b3480156103ae57600080fd5b506102916103bd366004611e2c565b610c38565b3480156103ce57600080fd5b5061026b610cd2565b3480156103e357600080fd5b5061026b610d3c565b61026b610da4565b34801561040057600080fd5b5061029166f523226980800081565b34801561041b57600080fd5b5060075461010090046001600160a01b0316610233565b34801561043e57600080fd5b50610206610e1f565b34801561045357600080fd5b5061026b610462366004611f32565b610e2e565b34801561047357600080fd5b5061026b610482366004611eb6565b610ef3565b34801561049357600080fd5b506102066104a236600461201b565b610f78565b3480156104b357600080fd5b50610206611054565b3480156104c857600080fd5b506101dc6104d7366004611e47565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561051157600080fd5b5061026b610520366004611e2c565b6110e2565b60006001600160e01b031982166380ac58cd60e01b148061055657506001600160e01b03198216635b5e139f60e01b145b8061057157506001600160e01b0319821663780e9d6360e01b145b8061058c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105a19061216c565b80601f01602080910402602001604051908101604052809291908181526020018280546105cd9061216c565b801561061a5780601f106105ef5761010080835404028352916020019161061a565b820191906000526020600020905b8154815290600101906020018083116105fd57829003601f168201915b5050505050905090565b6000610631826000541190565b6106985760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106bf82610c26565b9050806001600160a01b0316836001600160a01b0316141561072e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161068f565b336001600160a01b038216148061074a575061074a81336104d7565b6107bc5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161068f565b6107c78383836111b3565b505050565b6000548161081c5760405162461bcd60e51b815260206004820152601c60248201527f436f756e74206d7573742062652067726561746572207468616e203000000000604482015260640161068f565b611b39610829828461121c565b111561088b5760405162461bcd60e51b815260206004820152602b60248201527f52657175657374656420616d6f756e742065786365656473207768617420697360448201526a20617661696c61626c652160a81b606482015260840161068f565b611b398111156108e75760405162461bcd60e51b815260206004820152602160248201527f4e6f7420656e6f756768207472756520646567656e7320617661696c61626c656044820152601760f91b606482015260840161068f565b6108f866f523226980800083611228565b3410156109475760405162461bcd60e51b815260206004820152601060248201527f496e636f72726563742070726963652e00000000000000000000000000000000604482015260640161068f565b6109513383611234565b5050565b6107c783838361124e565b600061096b83610c38565b82106109c45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161068f565b600080549080805b83811015610a5d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a1f57805192505b876001600160a01b0316836001600160a01b03161415610a545786841415610a4d5750935061058c92505050565b6001909301925b506001016109cc565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e646578000000000000000000000000000000000000606482015260840161068f565b6007546001600160a01b03610100909104163314610b2c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068f565b610b34611550565b565b6107c783838360405180602001604052806000815250610ef3565b600080548210610baf5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161068f565b5090565b6007546001600160a01b03610100909104163314610c135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068f565b8051610951906008906020840190611d0a565b6000610c31826115ec565b5192915050565b60006001600160a01b038216610ca45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161068f565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6007546001600160a01b03610100909104163314610d325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068f565b610b3460006116c3565b6007546001600160a01b03610100909104163314610d9c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068f565b610b3461172a565b6007546001600160a01b03610100909104163314610e045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068f565b600754610b349061010090046001600160a01b0316476117b2565b6060600280546105a19061216c565b6001600160a01b038216331415610e875760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161068f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610efe84848461124e565b610f0a84848484611855565b610f725760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161068f565b50505050565b6060610f85826000541190565b610ff75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161068f565b60006110016119af565b9050805160001415611022576040518060200160405280600081525061104d565b8061102c846119be565b60405160200161103d929190612060565b6040516020818303038152906040525b9392505050565b600880546110619061216c565b80601f016020809104026020016040519081016040528092919081815260200182805461108d9061216c565b80156110da5780601f106110af576101008083540402835291602001916110da565b820191906000526020600020905b8154815290600101906020018083116110bd57829003601f168201915b505050505081565b6007546001600160a01b036101009091041633146111425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068f565b6001600160a01b0381166111a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068f565b6111b0816116c3565b50565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061104d82846120de565b600061104d828461210a565b610951828260405180602001604052806000815250611ad4565b6000611259826115ec565b80519091506000906001600160a01b0316336001600160a01b0316148061129057503361128584610624565b6001600160a01b0316145b806112a2575081516112a290336104d7565b9050806113175760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161068f565b846001600160a01b031682600001516001600160a01b03161461138b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161068f565b6001600160a01b0384166113ef5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161068f565b6113ff60008484600001516111b3565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166fffffffffffffffffffffffffffffffff928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611506576114b9816000541190565b15611506578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60075460ff166115a25760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015260640161068f565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b604080518082019091526000808252602082015261160b826000541190565b61166a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161068f565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116b9579392505050565b506000190161166c565b600780546001600160a01b0383811661010081810274ffffffffffffffffffffffffffffffffffffffff001985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60075460ff161561177d5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015260640161068f565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115cf3390565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146117ff576040519150601f19603f3d011682016040523d82523d6000602084013e611804565b606091505b50509050806107c75760405162461bcd60e51b815260206004820152601060248201527f5265636f76657279206661696c65642e00000000000000000000000000000000604482015260640161068f565b60006001600160a01b0384163b156119a357604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061189990339089908890889060040161208f565b602060405180830381600087803b1580156118b357600080fd5b505af19250505080156118e3575060408051601f3d908101601f191682019092526118e091810190611fb5565b60015b611989573d808015611911576040519150601f19603f3d011682016040523d82523d6000602084013e611916565b606091505b5080516119815760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161068f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119a7565b5060015b949350505050565b6060600880546105a19061216c565b6060816119e25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0c57806119f6816121a7565b9150611a059050600a836120f6565b91506119e6565b60008167ffffffffffffffff811115611a2757611a27612218565b6040519080825280601f01601f191660200182016040528015611a51576020820181803683370190505b5090505b84156119a757611a66600183612129565b9150611a73600a866121c2565b611a7e9060306120de565b60f81b818381518110611a9357611a93612202565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611acd600a866120f6565b9450611a55565b6107c783838360016000546001600160a01b038516611b3f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161068f565b83611b9d5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161068f565b6001600160a01b038516600081815260046020908152604080832080547001000000000000000000000000000000006fffffffffffffffffffffffffffffffff1982166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d015760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611cf557611c8d6000888488611855565b611cf55760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161068f565b60019182019101611c3a565b50600055611549565b828054611d169061216c565b90600052602060002090601f016020900481019282611d385760008555611d7e565b82601f10611d5157805160ff1916838001178555611d7e565b82800160010185558215611d7e579182015b82811115611d7e578251825591602001919060010190611d63565b50610baf9291505b80821115610baf5760008155600101611d86565b600067ffffffffffffffff80841115611db557611db5612218565b604051601f8501601f19908116603f01168101908282118183101715611ddd57611ddd612218565b81604052809350858152868686011115611df657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e2757600080fd5b919050565b600060208284031215611e3e57600080fd5b61104d82611e10565b60008060408385031215611e5a57600080fd5b611e6383611e10565b9150611e7160208401611e10565b90509250929050565b600080600060608486031215611e8f57600080fd5b611e9884611e10565b9250611ea660208501611e10565b9150604084013590509250925092565b60008060008060808587031215611ecc57600080fd5b611ed585611e10565b9350611ee360208601611e10565b925060408501359150606085013567ffffffffffffffff811115611f0657600080fd5b8501601f81018713611f1757600080fd5b611f2687823560208401611d9a565b91505092959194509250565b60008060408385031215611f4557600080fd5b611f4e83611e10565b915060208301358015158114611f6357600080fd5b809150509250929050565b60008060408385031215611f8157600080fd5b611f8a83611e10565b946020939093013593505050565b600060208284031215611faa57600080fd5b813561104d8161222e565b600060208284031215611fc757600080fd5b815161104d8161222e565b600060208284031215611fe457600080fd5b813567ffffffffffffffff811115611ffb57600080fd5b8201601f8101841361200c57600080fd5b6119a784823560208401611d9a565b60006020828403121561202d57600080fd5b5035919050565b6000815180845261204c816020860160208601612140565b601f01601f19169290920160200192915050565b60008351612072818460208801612140565b835190830190612086818360208801612140565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526120c16080830184612034565b9695505050505050565b60208152600061104d6020830184612034565b600082198211156120f1576120f16121d6565b500190565b600082612105576121056121ec565b500490565b6000816000190483118215151615612124576121246121d6565b500290565b60008282101561213b5761213b6121d6565b500390565b60005b8381101561215b578181015183820152602001612143565b83811115610f725750506000910152565b600181811c9082168061218057607f821691505b602082108114156121a157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121bb576121bb6121d6565b5060010190565b6000826121d1576121d16121ec565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111b057600080fdfea2646970667358221220b5fd6bcb1665ac10afa1c74b4c844ca053ea0b1c241706d4e57fabf48b88e66064736f6c63430008070033596f75207765726520746f6c6420746f207472757374207468652070726f63657373
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80636f5672fa116100ec57806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610487578063d547cfb7146104a7578063e985e9c5146104bc578063f2fde38b1461050557600080fd5b806395d89b4114610432578063a22cb46514610447578063b88d4fde1461046757600080fd5b80638456cb59116100c65780638456cb59146103d7578063853828b6146103ec5780638d859f3e146103f45780638da5cb5b1461040f57600080fd5b80636f5672fa1461038c57806370a08231146103a2578063715018a6146103c257600080fd5b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461031457806355f804b3146103345780635c975abb146103545780636352211e1461036c57600080fd5b80632f745c59146102bf5780633f4ba83a146102df57806342842e0e146102f457600080fd5b8063095ea7b311610195578063095ea7b31461024b57806314cce10a1461026d57806318160ddd1461028057806323b872dd1461029f57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611f98565b610525565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610592565b6040516101e891906120cb565b34801561021f57600080fd5b5061023361022e36600461201b565b610624565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611f6e565b6106b4565b005b61026b61027b36600461201b565b6107cc565b34801561028c57600080fd5b506000545b6040519081526020016101e8565b3480156102ab57600080fd5b5061026b6102ba366004611e7a565b610955565b3480156102cb57600080fd5b506102916102da366004611f6e565b610960565b3480156102eb57600080fd5b5061026b610acc565b34801561030057600080fd5b5061026b61030f366004611e7a565b610b36565b34801561032057600080fd5b5061029161032f36600461201b565b610b51565b34801561034057600080fd5b5061026b61034f366004611fd2565b610bb3565b34801561036057600080fd5b5060075460ff166101dc565b34801561037857600080fd5b5061023361038736600461201b565b610c26565b34801561039857600080fd5b50610291611b3981565b3480156103ae57600080fd5b506102916103bd366004611e2c565b610c38565b3480156103ce57600080fd5b5061026b610cd2565b3480156103e357600080fd5b5061026b610d3c565b61026b610da4565b34801561040057600080fd5b5061029166f523226980800081565b34801561041b57600080fd5b5060075461010090046001600160a01b0316610233565b34801561043e57600080fd5b50610206610e1f565b34801561045357600080fd5b5061026b610462366004611f32565b610e2e565b34801561047357600080fd5b5061026b610482366004611eb6565b610ef3565b34801561049357600080fd5b506102066104a236600461201b565b610f78565b3480156104b357600080fd5b50610206611054565b3480156104c857600080fd5b506101dc6104d7366004611e47565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561051157600080fd5b5061026b610520366004611e2c565b6110e2565b60006001600160e01b031982166380ac58cd60e01b148061055657506001600160e01b03198216635b5e139f60e01b145b8061057157506001600160e01b0319821663780e9d6360e01b145b8061058c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105a19061216c565b80601f01602080910402602001604051908101604052809291908181526020018280546105cd9061216c565b801561061a5780601f106105ef5761010080835404028352916020019161061a565b820191906000526020600020905b8154815290600101906020018083116105fd57829003601f168201915b5050505050905090565b6000610631826000541190565b6106985760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106bf82610c26565b9050806001600160a01b0316836001600160a01b0316141561072e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161068f565b336001600160a01b038216148061074a575061074a81336104d7565b6107bc5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161068f565b6107c78383836111b3565b505050565b6000548161081c5760405162461bcd60e51b815260206004820152601c60248201527f436f756e74206d7573742062652067726561746572207468616e203000000000604482015260640161068f565b611b39610829828461121c565b111561088b5760405162461bcd60e51b815260206004820152602b60248201527f52657175657374656420616d6f756e742065786365656473207768617420697360448201526a20617661696c61626c652160a81b606482015260840161068f565b611b398111156108e75760405162461bcd60e51b815260206004820152602160248201527f4e6f7420656e6f756768207472756520646567656e7320617661696c61626c656044820152601760f91b606482015260840161068f565b6108f866f523226980800083611228565b3410156109475760405162461bcd60e51b815260206004820152601060248201527f496e636f72726563742070726963652e00000000000000000000000000000000604482015260640161068f565b6109513383611234565b5050565b6107c783838361124e565b600061096b83610c38565b82106109c45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161068f565b600080549080805b83811015610a5d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a1f57805192505b876001600160a01b0316836001600160a01b03161415610a545786841415610a4d5750935061058c92505050565b6001909301925b506001016109cc565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e646578000000000000000000000000000000000000606482015260840161068f565b6007546001600160a01b03610100909104163314610b2c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068f565b610b34611550565b565b6107c783838360405180602001604052806000815250610ef3565b600080548210610baf5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161068f565b5090565b6007546001600160a01b03610100909104163314610c135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068f565b8051610951906008906020840190611d0a565b6000610c31826115ec565b5192915050565b60006001600160a01b038216610ca45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161068f565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6007546001600160a01b03610100909104163314610d325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068f565b610b3460006116c3565b6007546001600160a01b03610100909104163314610d9c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068f565b610b3461172a565b6007546001600160a01b03610100909104163314610e045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068f565b600754610b349061010090046001600160a01b0316476117b2565b6060600280546105a19061216c565b6001600160a01b038216331415610e875760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161068f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610efe84848461124e565b610f0a84848484611855565b610f725760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161068f565b50505050565b6060610f85826000541190565b610ff75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161068f565b60006110016119af565b9050805160001415611022576040518060200160405280600081525061104d565b8061102c846119be565b60405160200161103d929190612060565b6040516020818303038152906040525b9392505050565b600880546110619061216c565b80601f016020809104026020016040519081016040528092919081815260200182805461108d9061216c565b80156110da5780601f106110af576101008083540402835291602001916110da565b820191906000526020600020905b8154815290600101906020018083116110bd57829003601f168201915b505050505081565b6007546001600160a01b036101009091041633146111425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068f565b6001600160a01b0381166111a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068f565b6111b0816116c3565b50565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061104d82846120de565b600061104d828461210a565b610951828260405180602001604052806000815250611ad4565b6000611259826115ec565b80519091506000906001600160a01b0316336001600160a01b0316148061129057503361128584610624565b6001600160a01b0316145b806112a2575081516112a290336104d7565b9050806113175760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161068f565b846001600160a01b031682600001516001600160a01b03161461138b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161068f565b6001600160a01b0384166113ef5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161068f565b6113ff60008484600001516111b3565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166fffffffffffffffffffffffffffffffff928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611506576114b9816000541190565b15611506578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60075460ff166115a25760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015260640161068f565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b604080518082019091526000808252602082015261160b826000541190565b61166a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161068f565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116b9579392505050565b506000190161166c565b600780546001600160a01b0383811661010081810274ffffffffffffffffffffffffffffffffffffffff001985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60075460ff161561177d5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015260640161068f565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115cf3390565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146117ff576040519150601f19603f3d011682016040523d82523d6000602084013e611804565b606091505b50509050806107c75760405162461bcd60e51b815260206004820152601060248201527f5265636f76657279206661696c65642e00000000000000000000000000000000604482015260640161068f565b60006001600160a01b0384163b156119a357604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061189990339089908890889060040161208f565b602060405180830381600087803b1580156118b357600080fd5b505af19250505080156118e3575060408051601f3d908101601f191682019092526118e091810190611fb5565b60015b611989573d808015611911576040519150601f19603f3d011682016040523d82523d6000602084013e611916565b606091505b5080516119815760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161068f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119a7565b5060015b949350505050565b6060600880546105a19061216c565b6060816119e25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0c57806119f6816121a7565b9150611a059050600a836120f6565b91506119e6565b60008167ffffffffffffffff811115611a2757611a27612218565b6040519080825280601f01601f191660200182016040528015611a51576020820181803683370190505b5090505b84156119a757611a66600183612129565b9150611a73600a866121c2565b611a7e9060306120de565b60f81b818381518110611a9357611a93612202565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611acd600a866120f6565b9450611a55565b6107c783838360016000546001600160a01b038516611b3f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161068f565b83611b9d5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161068f565b6001600160a01b038516600081815260046020908152604080832080547001000000000000000000000000000000006fffffffffffffffffffffffffffffffff1982166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d015760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611cf557611c8d6000888488611855565b611cf55760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161068f565b60019182019101611c3a565b50600055611549565b828054611d169061216c565b90600052602060002090601f016020900481019282611d385760008555611d7e565b82601f10611d5157805160ff1916838001178555611d7e565b82800160010185558215611d7e579182015b82811115611d7e578251825591602001919060010190611d63565b50610baf9291505b80821115610baf5760008155600101611d86565b600067ffffffffffffffff80841115611db557611db5612218565b604051601f8501601f19908116603f01168101908282118183101715611ddd57611ddd612218565b81604052809350858152868686011115611df657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e2757600080fd5b919050565b600060208284031215611e3e57600080fd5b61104d82611e10565b60008060408385031215611e5a57600080fd5b611e6383611e10565b9150611e7160208401611e10565b90509250929050565b600080600060608486031215611e8f57600080fd5b611e9884611e10565b9250611ea660208501611e10565b9150604084013590509250925092565b60008060008060808587031215611ecc57600080fd5b611ed585611e10565b9350611ee360208601611e10565b925060408501359150606085013567ffffffffffffffff811115611f0657600080fd5b8501601f81018713611f1757600080fd5b611f2687823560208401611d9a565b91505092959194509250565b60008060408385031215611f4557600080fd5b611f4e83611e10565b915060208301358015158114611f6357600080fd5b809150509250929050565b60008060408385031215611f8157600080fd5b611f8a83611e10565b946020939093013593505050565b600060208284031215611faa57600080fd5b813561104d8161222e565b600060208284031215611fc757600080fd5b815161104d8161222e565b600060208284031215611fe457600080fd5b813567ffffffffffffffff811115611ffb57600080fd5b8201601f8101841361200c57600080fd5b6119a784823560208401611d9a565b60006020828403121561202d57600080fd5b5035919050565b6000815180845261204c816020860160208601612140565b601f01601f19169290920160200192915050565b60008351612072818460208801612140565b835190830190612086818360208801612140565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526120c16080830184612034565b9695505050505050565b60208152600061104d6020830184612034565b600082198211156120f1576120f16121d6565b500190565b600082612105576121056121ec565b500490565b6000816000190483118215151615612124576121246121d6565b500290565b60008282101561213b5761213b6121d6565b500390565b60005b8381101561215b578181015183820152602001612143565b83811115610f725750506000910152565b600181811c9082168061218057607f821691505b602082108114156121a157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121bb576121bb6121d6565b5060010190565b6000826121d1576121d16121ec565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111b057600080fdfea2646970667358221220b5fd6bcb1665ac10afa1c74b4c844ca053ea0b1c241706d4e57fabf48b88e66064736f6c63430008070033
Deployed Bytecode Sourcemap
48326:1513:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35184:372;;;;;;;;;;-1:-1:-1;35184:372:0;;;;;:::i;:::-;;:::i;:::-;;;5925:14:1;;5918:22;5900:41;;5888:2;5873:18;35184:372:0;;;;;;;;37070:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38632:214::-;;;;;;;;;;-1:-1:-1;38632:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5177:55:1;;;5159:74;;5147:2;5132:18;38632:214:0;5013:226:1;38153:413:0;;;;;;;;;;-1:-1:-1;38153:413:0;;;;;:::i;:::-;;:::i;:::-;;48666:497;;;;;;:::i;:::-;;:::i;33441:100::-;;;;;;;;;;-1:-1:-1;33494:7:0;33521:12;33441:100;;;16583:25:1;;;16571:2;16556:18;33441:100:0;16437:177:1;39508:170:0;;;;;;;;;;-1:-1:-1;39508:170:0;;;;;:::i;:::-;;:::i;34105:1007::-;;;;;;;;;;-1:-1:-1;34105:1007:0;;;;;:::i;:::-;;:::i;49473:65::-;;;;;;;;;;;;;:::i;39749:185::-;;;;;;;;;;-1:-1:-1;39749:185:0;;;;;:::i;:::-;;:::i;33618:187::-;;;;;;;;;;-1:-1:-1;33618:187:0;;;;;:::i;:::-;;:::i;49297:101::-;;;;;;;;;;-1:-1:-1;49297:101:0;;;;;:::i;:::-;;:::i;4360:86::-;;;;;;;;;;-1:-1:-1;4431:7:0;;;;4360:86;;36879:124;;;;;;;;;;-1:-1:-1;36879:124:0;;;;;:::i;:::-;;:::i;48428:41::-;;;;;;;;;;;;48465:4;48428:41;;35620:221;;;;;;;;;;-1:-1:-1;35620:221:0;;;;;:::i;:::-;;:::i;2500:103::-;;;;;;;;;;;;;:::i;49406:61::-;;;;;;;;;;;;;:::i;49544:112::-;;;:::i;48474:43::-;;;;;;;;;;;;48506:11;48474:43;;1849:87;;;;;;;;;;-1:-1:-1;1922:6:0;;;;;-1:-1:-1;;;;;1922:6:0;1849:87;;37239:104;;;;;;;;;;;;;:::i;38918:288::-;;;;;;;;;;-1:-1:-1;38918:288:0;;;;;:::i;:::-;;:::i;40005:355::-;;;;;;;;;;-1:-1:-1;40005:355:0;;;;;:::i;:::-;;:::i;37414:335::-;;;;;;;;;;-1:-1:-1;37414:335:0;;;;;:::i;:::-;;:::i;48522:63::-;;;;;;;;;;;;;:::i;39277:164::-;;;;;;;;;;-1:-1:-1;39277:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;39398:25:0;;;39374:4;39398:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39277:164;2758:201;;;;;;;;;;-1:-1:-1;2758:201:0;;;;;:::i;:::-;;:::i;35184:372::-;35286:4;-1:-1:-1;;;;;;35323:40:0;;-1:-1:-1;;;35323:40:0;;:105;;-1:-1:-1;;;;;;;35380:48:0;;-1:-1:-1;;;35380:48:0;35323:105;:172;;;-1:-1:-1;;;;;;;35445:50:0;;-1:-1:-1;;;35445:50:0;35323:172;:225;;;-1:-1:-1;;;;;;;;;;31652:40:0;;;35512:36;35303:245;35184:372;-1:-1:-1;;35184:372:0:o;37070:100::-;37124:13;37157:5;37150:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37070:100;:::o;38632:214::-;38700:7;38728:16;38736:7;40672:4;40706:12;-1:-1:-1;40696:22:0;40615:111;38728:16;38720:74;;;;-1:-1:-1;;;38720:74:0;;16225:2:1;38720:74:0;;;16207:21:1;16264:2;16244:18;;;16237:30;16303:34;16283:18;;;16276:62;-1:-1:-1;;;16354:18:1;;;16347:43;16407:19;;38720:74:0;;;;;;;;;-1:-1:-1;38814:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38814:24:0;;38632:214::o;38153:413::-;38226:13;38242:24;38258:7;38242:15;:24::i;:::-;38226:40;;38291:5;-1:-1:-1;;;;;38285:11:0;:2;-1:-1:-1;;;;;38285:11:0;;;38277:58;;;;-1:-1:-1;;;38277:58:0;;13058:2:1;38277:58:0;;;13040:21:1;13097:2;13077:18;;;13070:30;13136:34;13116:18;;;13109:62;-1:-1:-1;;;13187:18:1;;;13180:32;13229:19;;38277:58:0;12856:398:1;38277:58:0;739:10;-1:-1:-1;;;;;38370:21:0;;;;:62;;-1:-1:-1;38395:37:0;38412:5;739:10;39277:164;:::i;38395:37::-;38348:169;;;;-1:-1:-1;;;38348:169:0;;9448:2:1;38348:169:0;;;9430:21:1;9487:2;9467:18;;;9460:30;9526:34;9506:18;;;9499:62;9597:27;9577:18;;;9570:55;9642:19;;38348:169:0;9246:421:1;38348:169:0;38530:28;38539:2;38543:7;38552:5;38530:8;:28::i;:::-;38215:351;38153:413;;:::o;48666:497::-;48753:20;33521:12;48804:9;48796:57;;;;-1:-1:-1;;;48796:57:0;;15452:2:1;48796:57:0;;;15434:21:1;15491:2;15471:18;;;15464:30;15530;15510:18;;;15503:58;15578:18;;48796:57:0;15250:352:1;48796:57:0;48465:4;48868:23;:12;48885:5;48868:16;:23::i;:::-;:37;;48860:100;;;;-1:-1:-1;;;48860:100:0;;9874:2:1;48860:100:0;;;9856:21:1;9913:2;9893:18;;;9886:30;9952:34;9932:18;;;9925:62;-1:-1:-1;;;10003:18:1;;;9996:41;10054:19;;48860:100:0;9672:407:1;48860:100:0;48465:4;48975:12;:26;;48967:79;;;;-1:-1:-1;;;48967:79:0;;11466:2:1;48967:79:0;;;11448:21:1;11505:2;11485:18;;;11478:30;11544:34;11524:18;;;11517:62;-1:-1:-1;;;11595:18:1;;;11588:31;11636:19;;48967:79:0;11264:397:1;48967:79:0;49074:16;48506:11;49084:5;49074:9;:16::i;:::-;49061:9;:29;;49053:65;;;;-1:-1:-1;;;49053:65:0;;15107:2:1;49053:65:0;;;15089:21:1;15146:2;15126:18;;;15119:30;15185:18;15165;;;15158:46;15221:18;;49053:65:0;14905:340:1;49053:65:0;49129:28;49139:10;49151:5;49129:9;:28::i;:::-;48746:417;48666:497;:::o;39508:170::-;39642:28;39652:4;39658:2;39662:7;39642:9;:28::i;34105:1007::-;34194:7;34230:16;34240:5;34230:9;:16::i;:::-;34222:5;:24;34214:71;;;;-1:-1:-1;;;34214:71:0;;6378:2:1;34214:71:0;;;6360:21:1;6417:2;6397:18;;;6390:30;6456:34;6436:18;;;6429:62;-1:-1:-1;;;6507:18:1;;;6500:32;6549:19;;34214:71:0;6176:398:1;34214:71:0;34296:22;33521:12;;;34296:22;;34559:466;34579:14;34575:1;:18;34559:466;;;34619:31;34653:14;;;:11;:14;;;;;;;;;34619:48;;;;;;;;;-1:-1:-1;;;;;34619:48:0;;;;;-1:-1:-1;;;34619:48:0;;;;;;;;;;;;34690:28;34686:111;;34763:14;;;-1:-1:-1;34686:111:0;34840:5;-1:-1:-1;;;;;34819:26:0;:17;-1:-1:-1;;;;;34819:26:0;;34815:195;;;34889:5;34874:11;:20;34870:85;;;-1:-1:-1;34930:1:0;-1:-1:-1;34923:8:0;;-1:-1:-1;;;34923:8:0;34870:85;34977:13;;;;;34815:195;-1:-1:-1;34595:3:0;;34559:466;;;-1:-1:-1;35048:56:0;;-1:-1:-1;;;35048:56:0;;14692:2:1;35048:56:0;;;14674:21:1;14731:2;14711:18;;;14704:30;14770:34;14750:18;;;14743:62;14841:16;14821:18;;;14814:44;14875:19;;35048:56:0;14490:410:1;49473:65:0;1922:6;;-1:-1:-1;;;;;1922:6:0;;;;;739:10;2069:23;2061:68;;;;-1:-1:-1;;;2061:68:0;;11105:2:1;2061:68:0;;;11087:21:1;;;11124:18;;;11117:30;11183:34;11163:18;;;11156:62;11235:18;;2061:68:0;10903:356:1;2061:68:0;49522:10:::1;:8;:10::i;:::-;49473:65::o:0;39749:185::-;39887:39;39904:4;39910:2;39914:7;39887:39;;;;;;;;;;;;:16;:39::i;33618:187::-;33685:7;33521:12;;33713:5;:21;33705:69;;;;-1:-1:-1;;;33705:69:0;;8293:2:1;33705:69:0;;;8275:21:1;8332:2;8312:18;;;8305:30;8371:34;8351:18;;;8344:62;-1:-1:-1;;;8422:18:1;;;8415:33;8465:19;;33705:69:0;8091:399:1;33705:69:0;-1:-1:-1;33792:5:0;33618:187::o;49297:101::-;1922:6;;-1:-1:-1;;;;;1922:6:0;;;;;739:10;2069:23;2061:68;;;;-1:-1:-1;;;2061:68:0;;11105:2:1;2061:68:0;;;11087:21:1;;;11124:18;;;11117:30;11183:34;11163:18;;;11156:62;11235:18;;2061:68:0;10903:356:1;2061:68:0;49370:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;36879:124::-:0;36943:7;36970:20;36982:7;36970:11;:20::i;:::-;:25;;36879:124;-1:-1:-1;;36879:124:0:o;35620:221::-;35684:7;-1:-1:-1;;;;;35712:19:0;;35704:75;;;;-1:-1:-1;;;35704:75:0;;10286:2:1;35704:75:0;;;10268:21:1;10325:2;10305:18;;;10298:30;10364:34;10344:18;;;10337:62;-1:-1:-1;;;10415:18:1;;;10408:41;10466:19;;35704:75:0;10084:407:1;35704:75:0;-1:-1:-1;;;;;;35805:19:0;;;;;:12;:19;;;;;:27;;;;35620:221::o;2500:103::-;1922:6;;-1:-1:-1;;;;;1922:6:0;;;;;739:10;2069:23;2061:68;;;;-1:-1:-1;;;2061:68:0;;11105:2:1;2061:68:0;;;11087:21:1;;;11124:18;;;11117:30;11183:34;11163:18;;;11156:62;11235:18;;2061:68:0;10903:356:1;2061:68:0;2565:30:::1;2592:1;2565:18;:30::i;49406:61::-:0;1922:6;;-1:-1:-1;;;;;1922:6:0;;;;;739:10;2069:23;2061:68;;;;-1:-1:-1;;;2061:68:0;;11105:2:1;2061:68:0;;;11087:21:1;;;11124:18;;;11117:30;11183:34;11163:18;;;11156:62;11235:18;;2061:68:0;10903:356:1;2061:68:0;49453:8:::1;:6;:8::i;49544:112::-:0;1922:6;;-1:-1:-1;;;;;1922:6:0;;;;;739:10;2069:23;2061:68;;;;-1:-1:-1;;;2061:68:0;;11105:2:1;2061:68:0;;;11087:21:1;;;11124:18;;;11117:30;11183:34;11163:18;;;11156:62;11235:18;;2061:68:0;10903:356:1;2061:68:0;1922:6;;49608:42:::1;::::0;1922:6;;;-1:-1:-1;;;;;1922:6:0;49628:21:::1;49608:10;:42::i;37239:104::-:0;37295:13;37328:7;37321:14;;;;;:::i;38918:288::-;-1:-1:-1;;;;;39013:24:0;;739:10;39013:24;;39005:63;;;;-1:-1:-1;;;39005:63:0;;12284:2:1;39005:63:0;;;12266:21:1;12323:2;12303:18;;;12296:30;12362:28;12342:18;;;12335:56;12408:18;;39005:63:0;12082:350:1;39005:63:0;739:10;39081:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39081:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39081:53:0;;;;;;;;;;39150:48;;5900:41:1;;;39081:42:0;;739:10;39150:48;;5873:18:1;39150:48:0;;;;;;;38918:288;;:::o;40005:355::-;40164:28;40174:4;40180:2;40184:7;40164:9;:28::i;:::-;40225:48;40248:4;40254:2;40258:7;40267:5;40225:22;:48::i;:::-;40203:149;;;;-1:-1:-1;;;40203:149:0;;13461:2:1;40203:149:0;;;13443:21:1;13500:2;13480:18;;;13473:30;13539:34;13519:18;;;13512:62;-1:-1:-1;;;13590:18:1;;;13583:49;13649:19;;40203:149:0;13259:415:1;40203:149:0;40005:355;;;;:::o;37414:335::-;37487:13;37521:16;37529:7;40672:4;40706:12;-1:-1:-1;40696:22:0;40615:111;37521:16;37513:76;;;;-1:-1:-1;;;37513:76:0;;11868:2:1;37513:76:0;;;11850:21:1;11907:2;11887:18;;;11880:30;11946:34;11926:18;;;11919:62;12017:17;11997:18;;;11990:45;12052:19;;37513:76:0;11666:411:1;37513:76:0;37602:21;37626:10;:8;:10::i;:::-;37602:34;;37660:7;37654:21;37679:1;37654:26;;:87;;;;;;;;;;;;;;;;;37707:7;37716:18;:7;:16;:18::i;:::-;37690:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37654:87;37647:94;37414:335;-1:-1:-1;;;37414:335:0:o;48522:63::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2758:201::-;1922:6;;-1:-1:-1;;;;;1922:6:0;;;;;739:10;2069:23;2061:68;;;;-1:-1:-1;;;2061:68:0;;11105:2:1;2061:68:0;;;11087:21:1;;;11124:18;;;11117:30;11183:34;11163:18;;;11156:62;11235:18;;2061:68:0;10903:356:1;2061:68:0;-1:-1:-1;;;;;2847:22:0;::::1;2839:73;;;::::0;-1:-1:-1;;;2839:73:0;;7130:2:1;2839:73:0::1;::::0;::::1;7112:21:1::0;7169:2;7149:18;;;7142:30;7208:34;7188:18;;;7181:62;-1:-1:-1;;;7259:18:1;;;7252:36;7305:19;;2839:73:0::1;6928:402:1::0;2839:73:0::1;2923:28;2942:8;2923:18;:28::i;:::-;2758:201:::0;:::o;45535:196::-;45650:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;45650:29:0;-1:-1:-1;;;;;45650:29:0;;;;;;;;;45695:28;;45650:24;;45695:28;;;;;;;45535:196;;;:::o;8317:98::-;8375:7;8402:5;8406:1;8402;:5;:::i;9055:98::-;9113:7;9140:5;9144:1;9140;:5;:::i;40734:104::-;40803:27;40813:2;40817:8;40803:27;;;;;;;;;;;;:9;:27::i;43415:2002::-;43530:35;43568:20;43580:7;43568:11;:20::i;:::-;43643:18;;43530:58;;-1:-1:-1;43601:22:0;;-1:-1:-1;;;;;43627:34:0;739:10;-1:-1:-1;;;;;43627:34:0;;:87;;;-1:-1:-1;739:10:0;43678:20;43690:7;43678:11;:20::i;:::-;-1:-1:-1;;;;;43678:36:0;;43627:87;:154;;;-1:-1:-1;43748:18:0;;43731:50;;739:10;39277:164;:::i;43731:50::-;43601:181;;43803:17;43795:80;;;;-1:-1:-1;;;43795:80:0;;12639:2:1;43795:80:0;;;12621:21:1;12678:2;12658:18;;;12651:30;12717:34;12697:18;;;12690:62;12788:20;12768:18;;;12761:48;12826:19;;43795:80:0;12437:414:1;43795:80:0;43918:4;-1:-1:-1;;;;;43896:26:0;:13;:18;;;-1:-1:-1;;;;;43896:26:0;;43888:77;;;;-1:-1:-1;;;43888:77:0;;10698:2:1;43888:77:0;;;10680:21:1;10737:2;10717:18;;;10710:30;10776:34;10756:18;;;10749:62;-1:-1:-1;;;10827:18:1;;;10820:36;10873:19;;43888:77:0;10496:402:1;43888:77:0;-1:-1:-1;;;;;43984:16:0;;43976:66;;;;-1:-1:-1;;;43976:66:0;;8697:2:1;43976:66:0;;;8679:21:1;8736:2;8716:18;;;8709:30;8775:34;8755:18;;;8748:62;-1:-1:-1;;;8826:18:1;;;8819:35;8871:19;;43976:66:0;8495:401:1;43976:66:0;44163:49;44180:1;44184:7;44193:13;:18;;;44163:8;:49::i;:::-;-1:-1:-1;;;;;44508:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;44508:31:0;;;;;;;-1:-1:-1;;44508:31:0;;;;;;;44554:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;44554:29:0;;;;;;;;;;;;;44600:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;44645:61:0;;;;-1:-1:-1;;;44690:15:0;44645:61;;;;;;44980:11;;;45010:24;;;;;:29;44980:11;;45010:29;45006:295;;45078:20;45086:11;40672:4;40706:12;-1:-1:-1;40696:22:0;40615:111;45078:20;45074:212;;;45155:18;;;45123:24;;;:11;:24;;;;;;;;:50;;45238:28;;;;45196:70;;-1:-1:-1;;;45196:70:0;-1:-1:-1;;;;;;45196:70:0;;;-1:-1:-1;;;;;45123:50:0;;;45196:70;;;;;;;45074:212;44483:829;45348:7;45344:2;-1:-1:-1;;;;;45329:27:0;45338:4;-1:-1:-1;;;;;45329:27:0;;;;;;;;;;;45367:42;43519:1898;;43415:2002;;;:::o;5419:120::-;4431:7;;;;4955:41;;;;-1:-1:-1;;;4955:41:0;;6781:2:1;4955:41:0;;;6763:21:1;6820:2;6800:18;;;6793:30;6859:22;6839:18;;;6832:50;6899:18;;4955:41:0;6579:344:1;4955:41:0;5478:7:::1;:15:::0;;-1:-1:-1;;5478:15:0::1;::::0;;5509:22:::1;739:10:::0;5518:12:::1;5509:22;::::0;-1:-1:-1;;;;;5177:55:1;;;5159:74;;5147:2;5132:18;5509:22:0::1;;;;;;;5419:120::o:0;36280:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;36383:16:0;36391:7;40672:4;40706:12;-1:-1:-1;40696:22:0;40615:111;36383:16;36375:71;;;;-1:-1:-1;;;36375:71:0;;7882:2:1;36375:71:0;;;7864:21:1;7921:2;7901:18;;;7894:30;7960:34;7940:18;;;7933:62;-1:-1:-1;;;8011:18:1;;;8004:40;8061:19;;36375:71:0;7680:406:1;36375:71:0;36504:7;36484:245;36551:31;36585:17;;;:11;:17;;;;;;;;;36551:51;;;;;;;;;-1:-1:-1;;;;;36551:51:0;;;;;-1:-1:-1;;;36551:51:0;;;;;;;;;;;;36625:28;36621:93;;36685:9;36280:537;-1:-1:-1;;;36280:537:0:o;36621:93::-;-1:-1:-1;;;36524:6:0;36484:245;;3119:191;3212:6;;;-1:-1:-1;;;;;3229:17:0;;;3212:6;3229:17;;;-1:-1:-1;;3229:17:0;;;;;;3262:40;;3212:6;;;;;;;;3262:40;;3193:16;;3262:40;3182:128;3119:191;:::o;5160:118::-;4431:7;;;;4685:9;4677:38;;;;-1:-1:-1;;;4677:38:0;;9103:2:1;4677:38:0;;;9085:21:1;9142:2;9122:18;;;9115:30;9181:18;9161;;;9154:46;9217:18;;4677:38:0;8901:340:1;4677:38:0;5220:7:::1;:14:::0;;-1:-1:-1;;5220:14:0::1;5230:4;5220:14;::::0;;5250:20:::1;5257:12;739:10:::0;;659:98;49662:174;49736:12;49754:8;-1:-1:-1;;;;;49754:13:0;49775:7;49754:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49735:52;;;49802:7;49794:36;;;;-1:-1:-1;;;49794:36:0;;7537:2:1;49794:36:0;;;7519:21:1;7576:2;7556:18;;;7549:30;7615:18;7595;;;7588:46;7651:18;;49794:36:0;7335:340:1;46296:804:0;46451:4;-1:-1:-1;;;;;46472:13:0;;21727:20;21775:8;46468:625;;46508:72;;-1:-1:-1;;;46508:72:0;;-1:-1:-1;;;;;46508:36:0;;;;;:72;;739:10;;46559:4;;46565:7;;46574:5;;46508:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46508:72:0;;;;;;;;-1:-1:-1;;46508:72:0;;;;;;;;;;;;:::i;:::-;;;46504:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46754:13:0;;46750:273;;46797:61;;-1:-1:-1;;;46797:61:0;;13461:2:1;46797:61:0;;;13443:21:1;13500:2;13480:18;;;13473:30;13539:34;13519:18;;;13512:62;-1:-1:-1;;;13590:18:1;;;13583:49;13649:19;;46797:61:0;13259:415:1;46750:273:0;46973:6;46967:13;46958:6;46954:2;46950:15;46943:38;46504:534;-1:-1:-1;;;;;;46631:55:0;-1:-1:-1;;;46631:55:0;;-1:-1:-1;46624:62:0;;46468:625;-1:-1:-1;47077:4:0;46468:625;46296:804;;;;;;:::o;49169:122::-;49244:13;49273:12;49266:19;;;;;:::i;29017:723::-;29073:13;29294:10;29290:53;;-1:-1:-1;;29321:10:0;;;;;;;;;;;;-1:-1:-1;;;29321:10:0;;;;;29017:723::o;29290:53::-;29368:5;29353:12;29409:78;29416:9;;29409:78;;29442:8;;;;:::i;:::-;;-1:-1:-1;29465:10:0;;-1:-1:-1;29473:2:0;29465:10;;:::i;:::-;;;29409:78;;;29497:19;29529:6;29519:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29519:17:0;;29497:39;;29547:154;29554:10;;29547:154;;29581:11;29591:1;29581:11;;:::i;:::-;;-1:-1:-1;29650:10:0;29658:2;29650:5;:10;:::i;:::-;29637:24;;:2;:24;:::i;:::-;29624:39;;29607:6;29614;29607:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;29678:11:0;29687:2;29678:11;;:::i;:::-;;;29547:154;;41201:163;41324:32;41330:2;41334:8;41344:5;41351:4;41762:20;41785:12;-1:-1:-1;;;;;41816:16:0;;41808:62;;;;-1:-1:-1;;;41808:62:0;;13881:2:1;41808:62:0;;;13863:21:1;13920:2;13900:18;;;13893:30;13959:34;13939:18;;;13932:62;-1:-1:-1;;;14010:18:1;;;14003:31;14051:19;;41808:62:0;13679:397:1;41808:62:0;41889:13;41881:66;;;;-1:-1:-1;;;41881:66:0;;14283:2:1;41881:66:0;;;14265:21:1;14322:2;14302:18;;;14295:30;14361:34;14341:18;;;14334:62;-1:-1:-1;;;14412:18:1;;;14405:38;14460:19;;41881:66:0;14081:404:1;41881:66:0;-1:-1:-1;;;;;42299:16:0;;;;;;:12;:16;;;;;;;;:45;;42359:50;-1:-1:-1;;42299:45:0;;;;;;;;;;;;;42359:50;;;;;;;;;;;;;;42426:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;42476:66:0;;;;-1:-1:-1;;;42526:15:0;42476:66;;;;;;;42426:25;;42611:415;42631:8;42627:1;:12;42611:415;;;42670:38;;42695:12;;-1:-1:-1;;;;;42670:38:0;;;42687:1;;42670:38;;42687:1;;42670:38;42731:4;42727:249;;;42794:59;42825:1;42829:2;42833:12;42847:5;42794:22;:59::i;:::-;42760:196;;;;-1:-1:-1;;;42760:196:0;;13461:2:1;42760:196:0;;;13443:21:1;13500:2;13480:18;;;13473:30;13539:34;13519:18;;;13512:62;-1:-1:-1;;;13590:18:1;;;13583:49;13649:19;;42760:196:0;13259:415:1;42760:196:0;42996:14;;;;;42641:3;42611:415;;;-1:-1:-1;43042:12:0;:27;43093:60;40005:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:93;;836:1;833;826:12;747:93;650:196;;;:::o;851:186::-;910:6;963:2;951:9;942:7;938:23;934:32;931:52;;;979:1;976;969:12;931:52;1002:29;1021:9;1002:29;:::i;1042:260::-;1110:6;1118;1171:2;1159:9;1150:7;1146:23;1142:32;1139:52;;;1187:1;1184;1177:12;1139:52;1210:29;1229:9;1210:29;:::i;:::-;1200:39;;1258:38;1292:2;1281:9;1277:18;1258:38;:::i;:::-;1248:48;;1042:260;;;;;:::o;1307:328::-;1384:6;1392;1400;1453:2;1441:9;1432:7;1428:23;1424:32;1421:52;;;1469:1;1466;1459:12;1421:52;1492:29;1511:9;1492:29;:::i;:::-;1482:39;;1540:38;1574:2;1563:9;1559:18;1540:38;:::i;:::-;1530:48;;1625:2;1614:9;1610:18;1597:32;1587:42;;1307:328;;;;;:::o;1640:666::-;1735:6;1743;1751;1759;1812:3;1800:9;1791:7;1787:23;1783:33;1780:53;;;1829:1;1826;1819:12;1780:53;1852:29;1871:9;1852:29;:::i;:::-;1842:39;;1900:38;1934:2;1923:9;1919:18;1900:38;:::i;:::-;1890:48;;1985:2;1974:9;1970:18;1957:32;1947:42;;2040:2;2029:9;2025:18;2012:32;2067:18;2059:6;2056:30;2053:50;;;2099:1;2096;2089:12;2053:50;2122:22;;2175:4;2167:13;;2163:27;-1:-1:-1;2153:55:1;;2204:1;2201;2194:12;2153:55;2227:73;2292:7;2287:2;2274:16;2269:2;2265;2261:11;2227:73;:::i;:::-;2217:83;;;1640:666;;;;;;;:::o;2311:347::-;2376:6;2384;2437:2;2425:9;2416:7;2412:23;2408:32;2405:52;;;2453:1;2450;2443:12;2405:52;2476:29;2495:9;2476:29;:::i;:::-;2466:39;;2555:2;2544:9;2540:18;2527:32;2602:5;2595:13;2588:21;2581:5;2578:32;2568:60;;2624:1;2621;2614:12;2568:60;2647:5;2637:15;;;2311:347;;;;;:::o;2663:254::-;2731:6;2739;2792:2;2780:9;2771:7;2767:23;2763:32;2760:52;;;2808:1;2805;2798:12;2760:52;2831:29;2850:9;2831:29;:::i;:::-;2821:39;2907:2;2892:18;;;;2879:32;;-1:-1:-1;;;2663:254:1:o;2922:245::-;2980:6;3033:2;3021:9;3012:7;3008:23;3004:32;3001:52;;;3049:1;3046;3039:12;3001:52;3088:9;3075:23;3107:30;3131:5;3107:30;:::i;3172:249::-;3241:6;3294:2;3282:9;3273:7;3269:23;3265:32;3262:52;;;3310:1;3307;3300:12;3262:52;3342:9;3336:16;3361:30;3385:5;3361:30;:::i;3426:450::-;3495:6;3548:2;3536:9;3527:7;3523:23;3519:32;3516:52;;;3564:1;3561;3554:12;3516:52;3604:9;3591:23;3637:18;3629:6;3626:30;3623:50;;;3669:1;3666;3659:12;3623:50;3692:22;;3745:4;3737:13;;3733:27;-1:-1:-1;3723:55:1;;3774:1;3771;3764:12;3723:55;3797:73;3862:7;3857:2;3844:16;3839:2;3835;3831:11;3797:73;:::i;3881:180::-;3940:6;3993:2;3981:9;3972:7;3968:23;3964:32;3961:52;;;4009:1;4006;3999:12;3961:52;-1:-1:-1;4032:23:1;;3881:180;-1:-1:-1;3881:180:1:o;4066:257::-;4107:3;4145:5;4139:12;4172:6;4167:3;4160:19;4188:63;4244:6;4237:4;4232:3;4228:14;4221:4;4214:5;4210:16;4188:63;:::i;:::-;4305:2;4284:15;-1:-1:-1;;4280:29:1;4271:39;;;;4312:4;4267:50;;4066:257;-1:-1:-1;;4066:257:1:o;4328:470::-;4507:3;4545:6;4539:13;4561:53;4607:6;4602:3;4595:4;4587:6;4583:17;4561:53;:::i;:::-;4677:13;;4636:16;;;;4699:57;4677:13;4636:16;4733:4;4721:17;;4699:57;:::i;:::-;4772:20;;4328:470;-1:-1:-1;;;;4328:470:1:o;5244:511::-;5438:4;-1:-1:-1;;;;;5548:2:1;5540:6;5536:15;5525:9;5518:34;5600:2;5592:6;5588:15;5583:2;5572:9;5568:18;5561:43;;5640:6;5635:2;5624:9;5620:18;5613:34;5683:3;5678:2;5667:9;5663:18;5656:31;5704:45;5744:3;5733:9;5729:19;5721:6;5704:45;:::i;:::-;5696:53;5244:511;-1:-1:-1;;;;;;5244:511:1:o;5952:219::-;6101:2;6090:9;6083:21;6064:4;6121:44;6161:2;6150:9;6146:18;6138:6;6121:44;:::i;16619:128::-;16659:3;16690:1;16686:6;16683:1;16680:13;16677:39;;;16696:18;;:::i;:::-;-1:-1:-1;16732:9:1;;16619:128::o;16752:120::-;16792:1;16818;16808:35;;16823:18;;:::i;:::-;-1:-1:-1;16857:9:1;;16752:120::o;16877:168::-;16917:7;16983:1;16979;16975:6;16971:14;16968:1;16965:21;16960:1;16953:9;16946:17;16942:45;16939:71;;;16990:18;;:::i;:::-;-1:-1:-1;17030:9:1;;16877:168::o;17050:125::-;17090:4;17118:1;17115;17112:8;17109:34;;;17123:18;;:::i;:::-;-1:-1:-1;17160:9:1;;17050:125::o;17180:258::-;17252:1;17262:113;17276:6;17273:1;17270:13;17262:113;;;17352:11;;;17346:18;17333:11;;;17326:39;17298:2;17291:10;17262:113;;;17393:6;17390:1;17387:13;17384:48;;;-1:-1:-1;;17428:1:1;17410:16;;17403:27;17180:258::o;17443:380::-;17522:1;17518:12;;;;17565;;;17586:61;;17640:4;17632:6;17628:17;17618:27;;17586:61;17693:2;17685:6;17682:14;17662:18;17659:38;17656:161;;;17739:10;17734:3;17730:20;17727:1;17720:31;17774:4;17771:1;17764:15;17802:4;17799:1;17792:15;17656:161;;17443:380;;;:::o;17828:135::-;17867:3;-1:-1:-1;;17888:17:1;;17885:43;;;17908:18;;:::i;:::-;-1:-1:-1;17955:1:1;17944:13;;17828:135::o;17968:112::-;18000:1;18026;18016:35;;18031:18;;:::i;:::-;-1:-1:-1;18065:9:1;;17968:112::o;18085:127::-;18146:10;18141:3;18137:20;18134:1;18127:31;18177:4;18174:1;18167:15;18201:4;18198:1;18191:15;18217:127;18278:10;18273:3;18269:20;18266:1;18259:31;18309:4;18306:1;18299:15;18333:4;18330:1;18323:15;18349:127;18410:10;18405:3;18401:20;18398:1;18391:31;18441:4;18438:1;18431:15;18465:4;18462:1;18455:15;18481:127;18542:10;18537:3;18533:20;18530:1;18523:31;18573:4;18570:1;18563:15;18597:4;18594:1;18587:15;18613:131;-1:-1:-1;;;;;;18687:32:1;;18677:43;;18667:71;;18734:1;18731;18724:12
Swarm Source
ipfs://b5fd6bcb1665ac10afa1c74b4c844ca053ea0b1c241706d4e57fabf48b88e660
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.